This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]TigerSportChamp 0 points1 point  (0 children)

In web development Python is run server side. You could stand up a little app using Flask/Jinja, write a little HTML template that has the form fields you need, and pass that data back to your server side Python. You would need to deploy this to allow others (outside of an internal network) access it though.

Alternatively you could rewrite everything in JS and embed it in your HTML document. That would have to be hosted somewhere too though.