├── LICENCE.md ├── README.md ├── advanced ├── django │ └── my-app │ │ ├── app.py │ │ └── templates │ │ └── index.html └── flask │ ├── README.md │ ├── app.py │ ├── requirements.txt │ └── templates │ └── index.html ├── basics ├── README.md ├── conditionals.py ├── hello.py ├── loops.py ├── variables.py └── weekend.py └── intermediate ├── api_check.py ├── dictionaries.py ├── functions.py ├── jokes.py ├── lists.py ├── packages.py ├── s3_utils.py ├── system_utils.py ├── terra_deploy.py ├── test_file_for_upload.txt └── thumbnail.png /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/README.md -------------------------------------------------------------------------------- /advanced/django/my-app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/advanced/django/my-app/app.py -------------------------------------------------------------------------------- /advanced/django/my-app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/advanced/django/my-app/templates/index.html -------------------------------------------------------------------------------- /advanced/flask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/advanced/flask/README.md -------------------------------------------------------------------------------- /advanced/flask/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/advanced/flask/app.py -------------------------------------------------------------------------------- /advanced/flask/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/advanced/flask/requirements.txt -------------------------------------------------------------------------------- /advanced/flask/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/advanced/flask/templates/index.html -------------------------------------------------------------------------------- /basics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/basics/README.md -------------------------------------------------------------------------------- /basics/conditionals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/basics/conditionals.py -------------------------------------------------------------------------------- /basics/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/basics/hello.py -------------------------------------------------------------------------------- /basics/loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/basics/loops.py -------------------------------------------------------------------------------- /basics/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/basics/variables.py -------------------------------------------------------------------------------- /basics/weekend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/basics/weekend.py -------------------------------------------------------------------------------- /intermediate/api_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/intermediate/api_check.py -------------------------------------------------------------------------------- /intermediate/dictionaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/intermediate/dictionaries.py -------------------------------------------------------------------------------- /intermediate/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/intermediate/functions.py -------------------------------------------------------------------------------- /intermediate/jokes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/intermediate/jokes.py -------------------------------------------------------------------------------- /intermediate/lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/intermediate/lists.py -------------------------------------------------------------------------------- /intermediate/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/intermediate/packages.py -------------------------------------------------------------------------------- /intermediate/s3_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/intermediate/s3_utils.py -------------------------------------------------------------------------------- /intermediate/system_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/intermediate/system_utils.py -------------------------------------------------------------------------------- /intermediate/terra_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/intermediate/terra_deploy.py -------------------------------------------------------------------------------- /intermediate/test_file_for_upload.txt: -------------------------------------------------------------------------------- 1 | This is a test file -------------------------------------------------------------------------------- /intermediate/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-masterclass/HEAD/intermediate/thumbnail.png --------------------------------------------------------------------------------