wlamason·قبل 5 سنوات·discussI'm not a python developer by trade, but here are some of the resources I have found helpful. The links below are in the order I would read them if I was starting again.Hitchhiker's Guide to Python - https://docs.python-guide.org/* Setting up virtual environments* Structuring projects* Code style (PEP8)* Popular libraries for various use cases (i.e. Django/Flask for web applications)setup.py (for humans) - https://github.com/navdeep-G/setup.py* Instructs on how to write a setup.py file for distributing python packages* Contains links to other resources to learn more about setup.pyPython 3 in One Picture - http://coodict.github.io/python3-in-one-pic/* I sometimes forget syntax when switching between different languages :)A Guide to Python's Magic Methods - https://rszalski.github.io/magicmethods/* The special methods typically used with object oriented python that start and end with two underscores "__"Awesome Python - https://github.com/vinta/awesome-python* In their own words "A curated list of awesome Python frameworks, libraries, software and resources."* Whenever I start on a new language or skill, I always check if there is an "awesome" list availableHope you find these as useful as I have!
Hitchhiker's Guide to Python - https://docs.python-guide.org/
* Setting up virtual environments
* Structuring projects
* Code style (PEP8)
* Popular libraries for various use cases (i.e. Django/Flask for web applications)
setup.py (for humans) - https://github.com/navdeep-G/setup.py
* Instructs on how to write a setup.py file for distributing python packages
* Contains links to other resources to learn more about setup.py
Python 3 in One Picture - http://coodict.github.io/python3-in-one-pic/
* I sometimes forget syntax when switching between different languages :)
A Guide to Python's Magic Methods - https://rszalski.github.io/magicmethods/
* The special methods typically used with object oriented python that start and end with two underscores "__"
Awesome Python - https://github.com/vinta/awesome-python
* In their own words "A curated list of awesome Python frameworks, libraries, software and resources."
* Whenever I start on a new language or skill, I always check if there is an "awesome" list available
Hope you find these as useful as I have!