Suggest some simple roadmap for python backend
Posted by dehatimemer@reddit | Python | View on Reddit | 8 comments
I don't know where to start and how for backend role in python. I am stucked in watching youtube and then thinking is this right path i should follow or I have to move another things to learn first. Suggest some things
Python-ModTeam@reddit
Hi there, from the /r/Python mods.
We have removed this post as it is not suited to the /r/Python subreddit proper, however it should be very appropriate for our sister subreddit /r/LearnPython or for the r/Python discord: https://discord.gg/python.
The reason for the removal is that /r/Python is dedicated to discussion of Python news, projects, uses and debates. It is not designed to act as Q&A or FAQ board. The regular community is not a fan of "how do I..." questions, so you will not get the best responses over here.
On /r/LearnPython the community and the r/Python discord are actively expecting questions and are looking to help. You can expect far more understanding, encouraging and insightful responses over there. No matter what level of question you have, if you are looking for help with Python, you should get good answers. Make sure to check out the rules for both places.
Warm regards, and best of luck with your Pythoneering!
riklaunim@reddit
And what do you want to use Python for? What are your goals?
covmatty1@reddit
Build what's in the FastAPI docs, exactly as it is there.
Then build something that does the same concept, but in an idea you're personally interested in.
You'll learn better by having an interest, but get the foundations generically first.
Official documentation will see you right, at the early stage you don't need to look further.
KegOfAppleJuice@reddit
I would learn by doing. Search for tutorials on a simple API with FastAPI. Then start thinking of features you might like, such as user authentication, etc. The topics will keep coming as you think of new additions
brat1@reddit
Did you mistook reddit for an AI prompt?
danted002@reddit
🤣🤣🤣
utihnuli_jaganjac@reddit
Google python roadmap
speyerlander@reddit
Basics:
HTTP protocol -> REST structure -> CRUD -> Framework specifics -> Databases + SQL (PgSQL in my opinion) -> ORM (SQLAlchemy) -> (back to basics) Linux TCP/IP stack -> Reverse Proxying -> Authentication
Mid level:
Caching (Redis in my opinion) -> Backend architecture -> Replication and high availability with an emphasis on race conditions -> project structure -> Version control and collaboration -> Advanced authentication, security and incident response -> loggingÂ