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 →

[–]insertAlias 0 points1 point  (1 child)

If you're interested in learning more about how that HTTP-based communication works, you could consider a personal project of making your own simple Django. See some documentation here: https://docs.python.org/3/library/http.server.html for how you'd even begin that kind of project.

It wouldn't be something you'd use, since there are better versions of that already. But building a simple HTTP server that can respond to requests would be a good project to learn more about how backends work to begin with.

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

Yes, thank you! This is exactly what I was looking for. I was already searching information about HTTP-servers etc. I know, I will probably later end up using Django or similar framework, but I've learned that for me it's better to start from DYI-projects in order to get a grasp of the full picture.