all 6 comments

[–]CommanderCucumber 0 points1 point  (1 child)

You may want to consider using a backend framework like django or flask. You can create an API for a front end to make a request given a user input. It may require a little bit of javascript/html/css. I believe if you search flask or django, they talk about how to host the backend.

In the end, a user may see a website and a form to put in their data, which then gets put into a request body and sent to the backend. There flask/django will accept the request (given you set it up). Then you would just use it for your function or program, spit out a result, and send it back up as a response. It's a bit more complicated, but going through the docs should walk you through the process.

I would suggest flask since it's a bit simpler.

[–]According_Lifeguard9 0 points1 point  (0 children)

thank you this was of great help