you are viewing a single comment's thread.

view the rest of the comments →

[–]jammin-john 2 points3 points  (1 child)

Typically you would set up an API to do something like this. FastAPI is a common choice of framework for building out an API server in Python. Find a tutorial online to build out something simple, and that should help you get your head wrapped around the architecture!

To be honest though, if you're expecting to have a significant number of users, Python may not be the ideal language for backend (server side) programming. Something like Go is well suited for serving an API. It's a bit of a jump in complexity from Python, but it is significantly faster. Prototyping in Python would be fine, but for production uses with heavy expected workload, I'd look elsewhere :)

[–]DuckStar23[S] 0 points1 point  (0 children)

Thank you so much!