├── .gitignore ├── README.md ├── golang └── essentials.md └── topics ├── algorithms.md ├── deployment_platforms.md ├── essentials.md ├── frameworks ├── django.md ├── fastapi.md └── flask.md ├── general.md └── testing.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Pycharm environment 2 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyslackers/learning-resources/HEAD/README.md -------------------------------------------------------------------------------- /golang/essentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyslackers/learning-resources/HEAD/golang/essentials.md -------------------------------------------------------------------------------- /topics/algorithms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyslackers/learning-resources/HEAD/topics/algorithms.md -------------------------------------------------------------------------------- /topics/deployment_platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyslackers/learning-resources/HEAD/topics/deployment_platforms.md -------------------------------------------------------------------------------- /topics/essentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyslackers/learning-resources/HEAD/topics/essentials.md -------------------------------------------------------------------------------- /topics/frameworks/django.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyslackers/learning-resources/HEAD/topics/frameworks/django.md -------------------------------------------------------------------------------- /topics/frameworks/fastapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyslackers/learning-resources/HEAD/topics/frameworks/fastapi.md -------------------------------------------------------------------------------- /topics/frameworks/flask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyslackers/learning-resources/HEAD/topics/frameworks/flask.md -------------------------------------------------------------------------------- /topics/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyslackers/learning-resources/HEAD/topics/general.md -------------------------------------------------------------------------------- /topics/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyslackers/learning-resources/HEAD/topics/testing.md --------------------------------------------------------------------------------