├── Module 01
└── LearnPythonProgrammingSecondEdition_Code
│ ├── Chapter01
│ └── ch1
│ │ ├── example
│ │ ├── core.py
│ │ ├── run.py
│ │ └── util
│ │ │ ├── db.py
│ │ │ ├── math.py
│ │ │ ├── network.py
│ │ │ └── __init__.py
│ │ ├── files_only
│ │ ├── core.py
│ │ ├── db.py
│ │ ├── math.py
│ │ ├── run.py
│ │ └── network.py
│ │ ├── factorial.py
│ │ └── scopes1.py
│ ├── Chapter04
│ └── ch4
│ │ ├── lib
│ │ ├── __init__.py
│ │ └── funcdef.py
│ │ ├── func_from.py
│ │ ├── key.points.argument.passing.py
│ │ ├── arguments.keyword.py
│ │ ├── arguments.positional.py
│ │ ├── func_import.py
│ │ ├── arguments.defaults.mutable.no.trap.py
│ │ ├── filter.lambda.py
│ │ ├── key.points.mutable.py
│ │ ├── key.points.assignment.py
│ │ ├── matrix.multiplication.nofunc.py
│ │ ├── vat.function.py
│ │ ├── recursive.factorial.py
│ │ ├── arguments.variable.keyword.py
│ │ ├── return.none.py
│ │ ├── arguments.variable.positional.unpacking.py
│ │ ├── filter.regular.py
│ │ ├── key.points.mutable.assignment.py
│ │ ├── arguments.default.py
│ │ ├── return.single.value.py
│ │ ├── scoping.level.1.py
│ │ ├── arguments.all.py
│ │ ├── return.single.value.2.py
│ │ ├── arguments.defaults.mutable.py
│ │ └── additional.unpacking.py
│ ├── Chapter08
│ └── ch8
│ │ ├── tests
│ │ └── __init__.py
│ │ ├── __init__.py
│ │ ├── data.py
│ │ └── exceptions
│ │ └── json.example.py
│ ├── Chapter10
│ └── ch10
│ │ ├── ms
│ │ ├── __init__.py
│ │ ├── algo
│ │ │ └── __init__.py
│ │ └── tests
│ │ │ └── __init__.py
│ │ ├── hostres
│ │ ├── __init__.py
│ │ ├── tests
│ │ │ └── __init__.py
│ │ └── README.md
│ │ ├── sudoku
│ │ ├── __init__.py
│ │ ├── algo
│ │ │ └── __init__.py
│ │ ├── tests
│ │ │ └── __init__.py
│ │ └── puzzles
│ │ │ └── resources.txt
│ │ └── aio
│ │ └── pics
│ │ ├── 53a51667.jpg
│ │ └── 81846f84.jpg
│ ├── Chapter14
│ └── ch14
│ │ ├── regex
│ │ ├── entries
│ │ │ ├── __init__.py
│ │ │ ├── migrations
│ │ │ │ └── __init__.py
│ │ │ ├── templates
│ │ │ │ └── entries
│ │ │ │ │ └── footer.html
│ │ │ └── forms.py
│ │ ├── regex
│ │ │ └── __init__.py
│ │ └── db.sqlite3
│ │ └── flask
│ │ └── templates
│ │ └── main.html
│ ├── Chapter07
│ └── ch7
│ │ ├── files
│ │ ├── compression
│ │ │ ├── content1.txt
│ │ │ ├── content2.txt
│ │ │ └── subfolder
│ │ │ │ ├── content3.txt
│ │ │ │ └── content4.txt
│ │ ├── open_with.py
│ │ ├── print_file.py
│ │ ├── read_write.py
│ │ ├── write_not_exists.py
│ │ ├── read_write_bin.py
│ │ ├── listing.py
│ │ └── existence.py
│ │ └── io_examples
│ │ └── reqs_post.py
│ ├── README.txt.txt
│ ├── Chapter11
│ └── ch11
│ │ ├── traceback_simple.py
│ │ ├── assertions.py
│ │ └── custom.py
│ ├── Chapter03
│ └── ch3
│ │ ├── conditional.1.py
│ │ ├── permutations.py
│ │ ├── simple.for.3.py
│ │ ├── simple.for.4.py
│ │ ├── conditional.2.py
│ │ ├── binary.2.py
│ │ ├── simple.for.py
│ │ ├── multiple.sequences.zip.py
│ │ ├── infinite.py
│ │ ├── multiple.sequences.enumerate.py
│ │ ├── simple.for.2.py
│ │ ├── multiple.sequences.py
│ │ ├── primes.else.py
│ │ ├── multiple.sequences.while.py
│ │ ├── multiple.sequences.explicit.py
│ │ └── range.py
│ ├── requirements
│ ├── requirements.data.science.in
│ └── requirements.in
│ ├── Chapter05
│ └── ch5
│ │ ├── scopes.for.py
│ │ ├── scopes.noglobal.py
│ │ ├── gen.yield.from.py
│ │ ├── squares.comprehension.py
│ │ ├── functions.py
│ │ ├── gen.filter.py
│ │ ├── gen.yield.for.py
│ │ ├── sum.example.py
│ │ ├── pairs.list.comprehension.py
│ │ ├── squares.py
│ │ ├── dictionary.comprehensions.duplicates.py
│ │ ├── dictionary.comprehensions.positions.py
│ │ ├── gen.map.py
│ │ ├── sum.example.2.py
│ │ ├── pairs.for.loop.py
│ │ ├── set.comprehensions.py
│ │ ├── gen.send.preparation.py
│ │ ├── maxims.py
│ │ ├── dictionary.comprehensions.py
│ │ └── alias.py
│ ├── Chapter12
│ └── ch12
│ │ └── simple_server
│ │ ├── serve.sh
│ │ └── img
│ │ ├── owl-book.png
│ │ ├── owl-books.png
│ │ ├── owl-ebook.jpg
│ │ ├── owl-rose.jpeg
│ │ └── owl-alcohol.png
│ ├── .DS_Store
│ ├── Software_Hardware_List.pdf
│ └── Chapter02
│ └── ch2
│ └── README.md
├── Module 03
└── DjangoDesignPatternsandBestPracticesSecondEdition_Code
│ ├── src
│ ├── posts
│ │ ├── __init__.py
│ │ ├── migrations
│ │ │ └── __init__.py
│ │ ├── tests.py
│ │ ├── views.py
│ │ ├── apps.py
│ │ └── admin.py
│ ├── formschapter
│ │ ├── __init__.py
│ │ ├── migrations
│ │ │ └── __init__.py
│ │ └── admin.py
│ ├── profiles
│ │ ├── __init__.py
│ │ ├── migrations
│ │ │ └── __init__.py
│ │ ├── forms.py
│ │ ├── tests.py
│ │ ├── apps.py
│ │ └── urls.py
│ ├── sightings
│ │ ├── __init__.py
│ │ ├── migrations
│ │ │ └── __init__.py
│ │ ├── tests.py
│ │ ├── apps.py
│ │ ├── urls.py
│ │ └── views.py
│ ├── superbook
│ │ ├── __init__.py
│ │ └── settings
│ │ │ └── __init__.py
│ ├── viewschapter
│ │ ├── __init__.py
│ │ ├── migrations
│ │ │ └── __init__.py
│ │ ├── templates
│ │ │ ├── about.html
│ │ │ ├── blog_home.html
│ │ │ └── article.html
│ │ ├── models.py
│ │ ├── tests.py
│ │ ├── admin.py
│ │ └── apps.py
│ ├── templates
│ │ ├── includes
│ │ │ └── _brandname.html
│ │ └── registration
│ │ │ └── password_reset_email.html
│ ├── static
│ │ └── site
│ │ │ ├── css
│ │ │ └── main.css
│ │ │ ├── ico
│ │ │ └── favicon.ico
│ │ │ └── img
│ │ │ ├── banner.jpg
│ │ │ └── default_profile.png
│ └── extras
│ │ └── coroutine.py
│ ├── runtime.txt
│ ├── README.txt
│ ├── requirements.txt
│ ├── Procfile
│ ├── requirements
│ ├── development.txt
│ └── base.txt
│ └── Software hardware list.pdf
└── Module 02
└── DjangoRESTfulWebServices_Code
├── Chapter01
└── hillar_django_restful_01
│ └── restful01
│ ├── restful01
│ ├── __init__.py
│ └── __pycache__
│ │ ├── __init__.cpython-36.pyc
│ │ └── settings.cpython-36.pyc
│ └── toys
│ ├── migrations
│ └── __init__.py
│ ├── __init__.py
│ ├── models.py
│ ├── tests.py
│ ├── admin.py
│ └── views.py
├── Chapter06
└── hillar_django_restful_06_01
│ └── restful01
│ ├── drones
│ ├── __init__.py
│ ├── migrations
│ │ └── __init__.py
│ ├── tests.py
│ ├── __pycache__
│ │ ├── admin.cpython-36.pyc
│ │ ├── apps.cpython-36.pyc
│ │ ├── urls.cpython-36.pyc
│ │ ├── views.cpython-36.pyc
│ │ ├── models.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ └── serializers.cpython-36.pyc
│ └── admin.py
│ ├── restful01
│ ├── __init__.py
│ └── __pycache__
│ │ ├── urls.cpython-36.pyc
│ │ ├── wsgi.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ └── settings.cpython-36.pyc
│ ├── toys
│ ├── migrations
│ │ └── __init__.py
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── apps.cpython-36.pyc
│ │ ├── urls.cpython-36.pyc
│ │ ├── admin.cpython-36.pyc
│ │ ├── models.cpython-36.pyc
│ │ ├── views.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ └── serializers.cpython-36.pyc
│ ├── tests.py
│ └── admin.py
│ └── db.sqlite3
├── Chapter07
├── hillar_django_restful_07_01
│ └── restful01
│ │ ├── drones
│ │ ├── __init__.py
│ │ ├── migrations
│ │ │ └── __init__.py
│ │ ├── tests.py
│ │ ├── __pycache__
│ │ │ ├── admin.cpython-36.pyc
│ │ │ ├── apps.cpython-36.pyc
│ │ │ ├── urls.cpython-36.pyc
│ │ │ ├── views.cpython-36.pyc
│ │ │ ├── models.cpython-36.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ └── serializers.cpython-36.pyc
│ │ └── admin.py
│ │ ├── restful01
│ │ ├── __init__.py
│ │ └── __pycache__
│ │ │ ├── urls.cpython-36.pyc
│ │ │ ├── wsgi.cpython-36.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ └── settings.cpython-36.pyc
│ │ ├── toys
│ │ ├── migrations
│ │ │ └── __init__.py
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── apps.cpython-36.pyc
│ │ │ ├── urls.cpython-36.pyc
│ │ │ ├── admin.cpython-36.pyc
│ │ │ ├── models.cpython-36.pyc
│ │ │ ├── views.cpython-36.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ └── serializers.cpython-36.pyc
│ │ ├── tests.py
│ │ └── admin.py
│ │ └── db.sqlite3
├── hillar_django_restful_07_02
│ └── restful01
│ │ ├── drones
│ │ ├── __init__.py
│ │ ├── migrations
│ │ │ └── __init__.py
│ │ ├── tests.py
│ │ ├── __pycache__
│ │ │ ├── admin.cpython-36.pyc
│ │ │ ├── apps.cpython-36.pyc
│ │ │ ├── urls.cpython-36.pyc
│ │ │ ├── views.cpython-36.pyc
│ │ │ ├── models.cpython-36.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ └── serializers.cpython-36.pyc
│ │ └── admin.py
│ │ ├── restful01
│ │ ├── __init__.py
│ │ └── __pycache__
│ │ │ ├── urls.cpython-36.pyc
│ │ │ ├── wsgi.cpython-36.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ └── settings.cpython-36.pyc
│ │ ├── toys
│ │ ├── migrations
│ │ │ └── __init__.py
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── apps.cpython-36.pyc
│ │ │ ├── urls.cpython-36.pyc
│ │ │ ├── admin.cpython-36.pyc
│ │ │ ├── models.cpython-36.pyc
│ │ │ ├── views.cpython-36.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ └── serializers.cpython-36.pyc
│ │ ├── tests.py
│ │ └── admin.py
│ │ └── db.sqlite3
└── hillar_django_restful_07_03
│ └── restful01
│ ├── drones
│ ├── __init__.py
│ ├── migrations
│ │ └── __init__.py
│ ├── tests.py
│ ├── __pycache__
│ │ ├── admin.cpython-36.pyc
│ │ ├── apps.cpython-36.pyc
│ │ ├── urls.cpython-36.pyc
│ │ ├── views.cpython-36.pyc
│ │ ├── models.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ └── serializers.cpython-36.pyc
│ └── admin.py
│ ├── restful01
│ ├── __init__.py
│ └── __pycache__
│ │ ├── urls.cpython-36.pyc
│ │ ├── wsgi.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ └── settings.cpython-36.pyc
│ ├── toys
│ ├── migrations
│ │ └── __init__.py
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── apps.cpython-36.pyc
│ │ ├── urls.cpython-36.pyc
│ │ ├── admin.cpython-36.pyc
│ │ ├── models.cpython-36.pyc
│ │ ├── views.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ └── serializers.cpython-36.pyc
│ ├── tests.py
│ └── admin.py
│ └── db.sqlite3
├── Chapter08
├── hillar_django_restful_08_01
│ ├── restful01
│ │ ├── drones
│ │ │ ├── __init__.py
│ │ │ ├── migrations
│ │ │ │ └── __init__.py
│ │ │ ├── tests.py
│ │ │ ├── __pycache__
│ │ │ │ ├── admin.cpython-36.pyc
│ │ │ │ ├── apps.cpython-36.pyc
│ │ │ │ ├── urls.cpython-36.pyc
│ │ │ │ ├── views.cpython-36.pyc
│ │ │ │ ├── models.cpython-36.pyc
│ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ └── serializers.cpython-36.pyc
│ │ │ └── admin.py
│ │ ├── restful01
│ │ │ ├── __init__.py
│ │ │ └── __pycache__
│ │ │ │ ├── urls.cpython-36.pyc
│ │ │ │ ├── wsgi.cpython-36.pyc
│ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ └── settings.cpython-36.pyc
│ │ ├── toys
│ │ │ ├── migrations
│ │ │ │ └── __init__.py
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── apps.cpython-36.pyc
│ │ │ │ ├── urls.cpython-36.pyc
│ │ │ │ ├── admin.cpython-36.pyc
│ │ │ │ ├── models.cpython-36.pyc
│ │ │ │ ├── views.cpython-36.pyc
│ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ └── serializers.cpython-36.pyc
│ │ │ ├── tests.py
│ │ │ └── admin.py
│ │ └── db.sqlite3
│ └── scripts
│ │ └── create_user.py
└── hillar_django_restful_08_02
│ └── restful01
│ ├── drones
│ ├── __init__.py
│ ├── migrations
│ │ └── __init__.py
│ ├── tests.py
│ ├── __pycache__
│ │ ├── admin.cpython-36.pyc
│ │ ├── apps.cpython-36.pyc
│ │ ├── urls.cpython-36.pyc
│ │ ├── views.cpython-36.pyc
│ │ ├── models.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ └── serializers.cpython-36.pyc
│ └── admin.py
│ ├── restful01
│ ├── __init__.py
│ └── __pycache__
│ │ ├── urls.cpython-36.pyc
│ │ ├── wsgi.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ └── settings.cpython-36.pyc
│ ├── toys
│ ├── migrations
│ │ └── __init__.py
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── apps.cpython-36.pyc
│ │ ├── urls.cpython-36.pyc
│ │ ├── admin.cpython-36.pyc
│ │ ├── models.cpython-36.pyc
│ │ ├── views.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ └── serializers.cpython-36.pyc
│ ├── tests.py
│ └── admin.py
│ └── db.sqlite3
├── Chapter09
├── hillar_django_restful_09_01
│ └── restful01
│ │ ├── drones
│ │ ├── __init__.py
│ │ ├── migrations
│ │ │ └── __init__.py
│ │ ├── tests.py
│ │ ├── __pycache__
│ │ │ ├── admin.cpython-36.pyc
│ │ │ ├── apps.cpython-36.pyc
│ │ │ ├── urls.cpython-36.pyc
│ │ │ ├── views.cpython-36.pyc
│ │ │ ├── models.cpython-36.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ └── serializers.cpython-36.pyc
│ │ └── admin.py
│ │ ├── restful01
│ │ ├── __init__.py
│ │ └── __pycache__
│ │ │ ├── urls.cpython-36.pyc
│ │ │ ├── wsgi.cpython-36.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ └── settings.cpython-36.pyc
│ │ ├── toys
│ │ ├── migrations
│ │ │ └── __init__.py
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── apps.cpython-36.pyc
│ │ │ ├── urls.cpython-36.pyc
│ │ │ ├── admin.cpython-36.pyc
│ │ │ ├── models.cpython-36.pyc
│ │ │ ├── views.cpython-36.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ └── serializers.cpython-36.pyc
│ │ ├── tests.py
│ │ └── admin.py
│ │ └── db.sqlite3
└── hillar_django_restful_09_02
│ └── restful01
│ ├── drones
│ ├── __init__.py
│ ├── migrations
│ │ └── __init__.py
│ ├── tests.py
│ ├── __pycache__
│ │ ├── admin.cpython-36.pyc
│ │ ├── apps.cpython-36.pyc
│ │ ├── urls.cpython-36.pyc
│ │ ├── views.cpython-36.pyc
│ │ ├── models.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ └── serializers.cpython-36.pyc
│ ├── admin.py
│ └── v2
│ │ └── __pycache__
│ │ └── urls.cpython-36.pyc
│ ├── restful01
│ ├── __init__.py
│ └── __pycache__
│ │ ├── urls.cpython-36.pyc
│ │ ├── wsgi.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ └── settings.cpython-36.pyc
│ ├── toys
│ ├── migrations
│ │ └── __init__.py
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── apps.cpython-36.pyc
│ │ ├── urls.cpython-36.pyc
│ │ ├── admin.cpython-36.pyc
│ │ ├── models.cpython-36.pyc
│ │ ├── views.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ └── serializers.cpython-36.pyc
│ ├── tests.py
│ └── admin.py
│ └── db.sqlite3
├── Chapter10
├── hillar_django_restful_10_01
│ └── restful01
│ │ ├── drones
│ │ ├── __init__.py
│ │ ├── migrations
│ │ │ └── __init__.py
│ │ ├── __pycache__
│ │ │ ├── admin.cpython-36.pyc
│ │ │ ├── apps.cpython-36.pyc
│ │ │ ├── urls.cpython-36.pyc
│ │ │ ├── views.cpython-36.pyc
│ │ │ ├── models.cpython-36.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ ├── serializers.cpython-36.pyc
│ │ │ └── tests.cpython-36-PYTEST.pyc
│ │ ├── admin.py
│ │ └── v2
│ │ │ └── __pycache__
│ │ │ └── urls.cpython-36.pyc
│ │ ├── restful01
│ │ ├── __init__.py
│ │ └── __pycache__
│ │ │ ├── urls.cpython-36.pyc
│ │ │ ├── wsgi.cpython-36.pyc
│ │ │ └── __init__.cpython-36.pyc
│ │ ├── .cache
│ │ └── v
│ │ │ └── cache
│ │ │ └── lastfailed
│ │ ├── toys
│ │ ├── migrations
│ │ │ └── __init__.py
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── apps.cpython-36.pyc
│ │ │ ├── urls.cpython-36.pyc
│ │ │ ├── admin.cpython-36.pyc
│ │ │ ├── models.cpython-36.pyc
│ │ │ ├── views.cpython-36.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ ├── serializers.cpython-36.pyc
│ │ │ └── tests.cpython-36-PYTEST.pyc
│ │ ├── tests.py
│ │ └── admin.py
│ │ ├── pytest.ini
│ │ └── db.sqlite3
└── hillar_django_restful_10_02
│ └── restful01
│ ├── drones
│ ├── __init__.py
│ ├── migrations
│ │ └── __init__.py
│ ├── __pycache__
│ │ ├── admin.cpython-36.pyc
│ │ ├── apps.cpython-36.pyc
│ │ ├── urls.cpython-36.pyc
│ │ ├── views.cpython-36.pyc
│ │ ├── models.cpython-36.pyc
│ │ └── __init__.cpython-36.pyc
│ ├── admin.py
│ └── v2
│ │ └── __pycache__
│ │ └── urls.cpython-36.pyc
│ ├── restful01
│ ├── __init__.py
│ └── __pycache__
│ │ ├── urls.cpython-36.pyc
│ │ └── wsgi.cpython-36.pyc
│ ├── toys
│ ├── migrations
│ │ └── __init__.py
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── apps.cpython-36.pyc
│ │ ├── urls.cpython-36.pyc
│ │ ├── admin.cpython-36.pyc
│ │ ├── models.cpython-36.pyc
│ │ ├── views.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ ├── serializers.cpython-36.pyc
│ │ └── tests.cpython-36-PYTEST.pyc
│ ├── tests.py
│ └── admin.py
│ ├── pytest.ini
│ ├── .cache
│ └── v
│ │ └── cache
│ │ └── lastfailed
│ └── db.sqlite3
├── Chapter02
└── hillar_django_restful_02_01
│ └── restful01
│ ├── restful01
│ ├── __init__.py
│ └── __pycache__
│ │ ├── urls.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ └── settings.cpython-36.pyc
│ ├── toys
│ ├── migrations
│ │ └── __init__.py
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── apps.cpython-36.pyc
│ │ ├── admin.cpython-36.pyc
│ │ ├── models.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ └── serializers.cpython-36.pyc
│ ├── tests.py
│ ├── admin.py
│ └── views.py
│ └── db.sqlite3
├── Chapter03
└── hillar_django_restful_03_01
│ └── restful01
│ ├── restful01
│ ├── __init__.py
│ └── __pycache__
│ │ ├── urls.cpython-36.pyc
│ │ ├── wsgi.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ └── settings.cpython-36.pyc
│ ├── toys
│ ├── migrations
│ │ └── __init__.py
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── apps.cpython-36.pyc
│ │ ├── urls.cpython-36.pyc
│ │ ├── admin.cpython-36.pyc
│ │ ├── models.cpython-36.pyc
│ │ ├── views.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ └── serializers.cpython-36.pyc
│ ├── tests.py
│ └── admin.py
│ └── db.sqlite3
├── Chapter04
├── hillar_django_restful_04_01
│ └── restful01
│ │ ├── restful01
│ │ ├── __init__.py
│ │ └── __pycache__
│ │ │ ├── urls.cpython-36.pyc
│ │ │ ├── wsgi.cpython-36.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ └── settings.cpython-36.pyc
│ │ ├── toys
│ │ ├── migrations
│ │ │ └── __init__.py
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── apps.cpython-36.pyc
│ │ │ ├── urls.cpython-36.pyc
│ │ │ ├── admin.cpython-36.pyc
│ │ │ ├── models.cpython-36.pyc
│ │ │ ├── views.cpython-36.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ └── serializers.cpython-36.pyc
│ │ ├── tests.py
│ │ └── admin.py
│ │ └── db.sqlite3
└── hillar_django_restful_04_02
│ └── restful01
│ ├── restful01
│ ├── __init__.py
│ └── __pycache__
│ │ ├── urls.cpython-36.pyc
│ │ ├── wsgi.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ └── settings.cpython-36.pyc
│ ├── toys
│ ├── migrations
│ │ └── __init__.py
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── apps.cpython-36.pyc
│ │ ├── urls.cpython-36.pyc
│ │ ├── admin.cpython-36.pyc
│ │ ├── models.cpython-36.pyc
│ │ ├── views.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ └── serializers.cpython-36.pyc
│ ├── tests.py
│ └── admin.py
│ └── db.sqlite3
├── Chapter05
└── hillar_django_restful_05_01
│ └── restful01
│ ├── restful01
│ ├── __init__.py
│ └── __pycache__
│ │ ├── urls.cpython-36.pyc
│ │ ├── wsgi.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ └── settings.cpython-36.pyc
│ ├── toys
│ ├── migrations
│ │ └── __init__.py
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── apps.cpython-36.pyc
│ │ ├── urls.cpython-36.pyc
│ │ ├── admin.cpython-36.pyc
│ │ ├── models.cpython-36.pyc
│ │ ├── views.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ └── serializers.cpython-36.pyc
│ ├── tests.py
│ └── admin.py
│ └── db.sqlite3
├── Software and Hardware list.pdf
└── README.txt
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter01/ch1/example/core.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter01/ch1/example/run.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter01/ch1/example/util/db.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter01/ch1/files_only/core.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter01/ch1/files_only/db.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter01/ch1/files_only/math.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter01/ch1/files_only/run.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/lib/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter08/ch8/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter10/ch10/ms/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter01/ch1/example/util/math.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter01/ch1/example/util/network.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter01/ch1/files_only/network.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter10/ch10/hostres/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter10/ch10/ms/algo/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter10/ch10/ms/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter10/ch10/sudoku/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/posts/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter01/ch1/example/util/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter10/ch10/hostres/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter10/ch10/sudoku/algo/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter10/ch10/sudoku/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter14/ch14/regex/entries/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter14/ch14/regex/regex/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/runtime.txt:
--------------------------------------------------------------------------------
1 | python-3.6.2
2 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/formschapter/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/profiles/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/sightings/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/superbook/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/viewschapter/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/posts/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter14/ch14/regex/entries/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/profiles/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/sightings/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/superbook/settings/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter01/hillar_django_restful_01/restful01/restful01/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/drones/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/drones/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/drones/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/drones/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/drones/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/drones/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/drones/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/drones/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/drones/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/drones/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/README.txt:
--------------------------------------------------------------------------------
1 | Chapter 1 does not contain codes.
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/formschapter/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/profiles/forms.py:
--------------------------------------------------------------------------------
1 | # Nothing here
2 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/viewschapter/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter01/hillar_django_restful_01/restful01/toys/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/restful01/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/restful01/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/restful01/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/restful01/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/restful01/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/restful01/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/restful01/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/restful01/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/restful01/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/restful01/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/restful01/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/restful01/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/restful01/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/restful01/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/restful01/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter07/ch7/files/compression/content1.txt:
--------------------------------------------------------------------------------
1 | This is content1.txt
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter07/ch7/files/compression/content2.txt:
--------------------------------------------------------------------------------
1 | This is content2.txt
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/toys/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/toys/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/toys/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/toys/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/toys/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/drones/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/toys/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/drones/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/toys/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/drones/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/toys/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/drones/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/toys/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/drones/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/toys/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/drones/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/toys/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/drones/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/toys/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/drones/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/toys/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/.cache/v/cache/lastfailed:
--------------------------------------------------------------------------------
1 | {}
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/drones/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/toys/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/drones/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/toys/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/requirements.txt:
--------------------------------------------------------------------------------
1 | -r requirements/production.txt
2 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/templates/includes/_brandname.html:
--------------------------------------------------------------------------------
1 | SuperBook
2 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/viewschapter/templates/about.html:
--------------------------------------------------------------------------------
1 |
About Us
2 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/viewschapter/templates/blog_home.html:
--------------------------------------------------------------------------------
1 | Blog Home
2 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter01/ch1/factorial.py:
--------------------------------------------------------------------------------
1 | >>> from math import factorial
2 | >>> factorial(5)
3 | 120
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter07/ch7/files/compression/subfolder/content3.txt:
--------------------------------------------------------------------------------
1 | This is subfolder/content3.txt
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter07/ch7/files/compression/subfolder/content4.txt:
--------------------------------------------------------------------------------
1 | This is subfolder/content4.txt
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/Procfile:
--------------------------------------------------------------------------------
1 | web: gunicorn src.superbook.wsgi --log-file - --pythonpath "./src"
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter08/ch8/__init__.py:
--------------------------------------------------------------------------------
1 | # This is here to enable you to run tests within the `test` folder.
2 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/README.txt.txt:
--------------------------------------------------------------------------------
1 | Learn Python Programming - Second Edition
2 |
3 | All chapters have code files.
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter11/ch11/traceback_simple.py:
--------------------------------------------------------------------------------
1 | d = {'some': 'key'}
2 | key = 'some-other'
3 | print(d[key])
4 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter03/ch3/conditional.1.py:
--------------------------------------------------------------------------------
1 | late = True
2 | if late:
3 | print('I need to call my manager!')
4 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter03/ch3/permutations.py:
--------------------------------------------------------------------------------
1 | from itertools import permutations
2 | print(list(permutations('ABC')))
3 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/posts/tests.py:
--------------------------------------------------------------------------------
1 | from django.test import TestCase
2 |
3 | # Create your tests here.
4 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/posts/views.py:
--------------------------------------------------------------------------------
1 | from django.shortcuts import render
2 |
3 | # Create your views here.
4 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/profiles/tests.py:
--------------------------------------------------------------------------------
1 | from django.test import TestCase
2 |
3 | # Create your tests here.
4 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/viewschapter/templates/article.html:
--------------------------------------------------------------------------------
1 | Article
2 | Slug: {{ slug }}
3 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/sightings/tests.py:
--------------------------------------------------------------------------------
1 | from django.test import TestCase
2 |
3 | # Create your tests here.
4 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/viewschapter/models.py:
--------------------------------------------------------------------------------
1 | from django.db import models
2 |
3 | # Create your models here.
4 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/viewschapter/tests.py:
--------------------------------------------------------------------------------
1 | from django.test import TestCase
2 |
3 | # Create your tests here.
4 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/func_from.py:
--------------------------------------------------------------------------------
1 | from lib.funcdef import square, cube
2 |
3 | print(square(10))
4 | print(cube(10))
5 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/requirements/requirements.data.science.in:
--------------------------------------------------------------------------------
1 | arrow
2 | faker
3 | jupyter
4 | matplotlib
5 | numpy
6 | pandas
7 | xlwt
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/formschapter/admin.py:
--------------------------------------------------------------------------------
1 | from django.contrib import admin
2 |
3 | # Register your models here.
4 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/viewschapter/admin.py:
--------------------------------------------------------------------------------
1 | from django.contrib import admin
2 |
3 | # Register your models here.
4 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/key.points.argument.passing.py:
--------------------------------------------------------------------------------
1 | x = 3
2 | def func(y):
3 | print(y)
4 |
5 | func(x) # prints: 3
6 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/lib/funcdef.py:
--------------------------------------------------------------------------------
1 | def square(n):
2 | return n ** 2
3 |
4 |
5 | def cube(n):
6 | return n ** 3
7 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter05/ch5/scopes.for.py:
--------------------------------------------------------------------------------
1 | s = 0
2 | for A in range(5):
3 | s += A
4 | print(A) # prints: 4
5 | print(globals())
6 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter10/ch10/sudoku/puzzles/resources.txt:
--------------------------------------------------------------------------------
1 | The puzzles in this folder come from http://magictour.free.fr/sudoku.htm
2 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter12/ch12/simple_server/serve.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | # start a simple HTTP Server
4 | python -m http.server 8000
5 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/requirements/development.txt:
--------------------------------------------------------------------------------
1 | -r base.txt
2 |
3 | # Extra stuff required for local dev
4 | pudb==2014.1
5 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/arguments.keyword.py:
--------------------------------------------------------------------------------
1 | def func(a, b, c):
2 | print(a, b, c)
3 |
4 | func(a=1, c=2, b=3) # prints: 1 3 2
5 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/arguments.positional.py:
--------------------------------------------------------------------------------
1 | def func(a, b, c):
2 | print(a, b, c)
3 |
4 | func(1, 2, 3) # prints: 1 2 3
5 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/func_import.py:
--------------------------------------------------------------------------------
1 | import lib.funcdef
2 |
3 |
4 | print(lib.funcdef.square(10))
5 | print(lib.funcdef.cube(10))
6 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter05/ch5/scopes.noglobal.py:
--------------------------------------------------------------------------------
1 | ex1 = [A for A in range(5)]
2 | print(A) # breaks: NameError: name 'A' is not defined
3 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter07/ch7/files/open_with.py:
--------------------------------------------------------------------------------
1 |
2 | with open('fear.txt') as fh:
3 | for line in fh:
4 | print(line.strip())
5 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter03/ch3/simple.for.3.py:
--------------------------------------------------------------------------------
1 | surnames = ['Rivest', 'Shamir', 'Adleman']
2 | for surname in surnames:
3 | print(surname)
4 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/posts/apps.py:
--------------------------------------------------------------------------------
1 | from django.apps import AppConfig
2 |
3 |
4 | class PostsConfig(AppConfig):
5 | name = 'posts'
6 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter07/ch7/files/print_file.py:
--------------------------------------------------------------------------------
1 |
2 | with open('print_example.txt', 'w') as fw:
3 | print('Hey I am printing into a file!!!', file=fw)
4 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter14/ch14/regex/entries/templates/entries/footer.html:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/sightings/apps.py:
--------------------------------------------------------------------------------
1 | from django.apps import AppConfig
2 |
3 |
4 | class SightingsConfig(AppConfig):
5 | name = 'sightings'
6 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/static/site/css/main.css:
--------------------------------------------------------------------------------
1 | .mainform
2 | {
3 | margin-top: 10px;
4 | }
5 | #maincontent
6 | {
7 | min-height: 600px;
8 | }
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/pytest.ini:
--------------------------------------------------------------------------------
1 | [pytest]
2 | DJANGO_SETTINGS_MODULE = restful01.settings
3 | python_files = tests.py test_*.py *_tests.py
4 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/pytest.ini:
--------------------------------------------------------------------------------
1 | [pytest]
2 | DJANGO_SETTINGS_MODULE = restful01.settings
3 | python_files = tests.py test_*.py *_tests.py
4 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/viewschapter/apps.py:
--------------------------------------------------------------------------------
1 | from django.apps import AppConfig
2 |
3 |
4 | class ViewschapterConfig(AppConfig):
5 | name = 'viewschapter'
6 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter03/ch3/simple.for.4.py:
--------------------------------------------------------------------------------
1 | surnames = ['Rivest', 'Shamir', 'Adleman']
2 | for position, surname in enumerate(surnames):
3 | print(position, surname)
4 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/arguments.defaults.mutable.no.trap.py:
--------------------------------------------------------------------------------
1 | def func(a=None):
2 | if a is None:
3 | a = []
4 | # do whatever you want with `a` ...
5 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter08/ch8/data.py:
--------------------------------------------------------------------------------
1 | def get_clean_data(source):
2 |
3 | data = load_data(source)
4 | cleaned_data = clean_data(data)
5 |
6 | return cleaned_data
7 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 01/LearnPythonProgrammingSecondEdition_Code/.DS_Store
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter03/ch3/conditional.2.py:
--------------------------------------------------------------------------------
1 | late = False
2 | if late:
3 | print('I need to call my manager!') #1
4 | else:
5 | print('no need to call my manager...') #2
6 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/filter.lambda.py:
--------------------------------------------------------------------------------
1 | def get_multiples_of_five(n):
2 | return list(filter(lambda k: not k % 5, range(n)))
3 |
4 |
5 | print(get_multiples_of_five(50))
6 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/key.points.mutable.py:
--------------------------------------------------------------------------------
1 | x = [1, 2, 3]
2 | def func(x):
3 | x[1] = 42 # this affects the caller!
4 |
5 | func(x)
6 | print(x) # prints: [1, 42, 3]
7 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter03/ch3/binary.2.py:
--------------------------------------------------------------------------------
1 | n = 39
2 | remainders = []
3 | while n > 0:
4 | n, remainder = divmod(n, 2)
5 | remainders.insert(0, remainder)
6 |
7 | print(remainders)
8 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter03/ch3/simple.for.py:
--------------------------------------------------------------------------------
1 | for number in [0, 1, 2, 3, 4]:
2 | print(number)
3 |
4 |
5 | # equivalent using range
6 | for number in range(5):
7 | print(number)
8 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/key.points.assignment.py:
--------------------------------------------------------------------------------
1 | x = 3
2 | def func(x):
3 | x = 7 # defining a local x, not changing the global one
4 |
5 | func(x)
6 | print(x) # prints: 3
7 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter05/ch5/gen.yield.from.py:
--------------------------------------------------------------------------------
1 | def print_squares(start, end):
2 | yield from (n ** 2 for n in range(start, end))
3 |
4 | for n in print_squares(2, 5):
5 | print(n)
6 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter05/ch5/squares.comprehension.py:
--------------------------------------------------------------------------------
1 | # This is not a valid Python module - Don't run it.
2 |
3 | >>> [n ** 2 for n in range(10)]
4 | [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
5 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter05/ch5/functions.py:
--------------------------------------------------------------------------------
1 |
2 | def gcd(a, b):
3 | """Calculate the Greatest Common Divisor of (a, b). """
4 | while b != 0:
5 | a, b = b, a % b
6 | return a
7 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter05/ch5/gen.filter.py:
--------------------------------------------------------------------------------
1 | cubes = [x**3 for x in range(10)]
2 |
3 | odd_cubes1 = filter(lambda cube: cube % 2, cubes)
4 | odd_cubes2 = (cube for cube in cubes if cube % 2)
5 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter05/ch5/gen.yield.for.py:
--------------------------------------------------------------------------------
1 | def print_squares(start, end):
2 | for n in range(start, end):
3 | yield n ** 2
4 |
5 | for n in print_squares(2, 5):
6 | print(n)
7 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter05/ch5/sum.example.py:
--------------------------------------------------------------------------------
1 | s1 = sum([n**2 for n in range(10**6)])
2 | s2 = sum((n**2 for n in range(10**6)))
3 | s3 = sum(n**2 for n in range(10**6))
4 |
5 | print(s1==s2==s3)
6 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter05/ch5/pairs.list.comprehension.py:
--------------------------------------------------------------------------------
1 |
2 | items = 'ABCD'
3 | pairs = [(items[a], items[b])
4 | for a in range(len(items)) for b in range(a, len(items))]
5 |
6 | print(pairs)
7 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter05/ch5/squares.py:
--------------------------------------------------------------------------------
1 | def square1(n):
2 | return n ** 2 # squaring through the power operator
3 |
4 | def square2(n):
5 | return n * n # squaring through multiplication
6 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter03/ch3/multiple.sequences.zip.py:
--------------------------------------------------------------------------------
1 | people = ['Conrad', 'Deepak', 'Heinrich', 'Tom']
2 | ages = [29, 30, 34, 36]
3 | for person, age in zip(people, ages):
4 | print(person, age)
5 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Software and Hardware list.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Software and Hardware list.pdf
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/matrix.multiplication.nofunc.py:
--------------------------------------------------------------------------------
1 | a = [[1, 2], [3, 4]]
2 | b = [[5, 1], [2, 1]]
3 |
4 | c = [[sum(i * j for i, j in zip(r, c)) for c in zip(*b)]
5 | for r in a]
6 | print(c)
7 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter05/ch5/dictionary.comprehensions.duplicates.py:
--------------------------------------------------------------------------------
1 | word = 'Hello'
2 |
3 | swaps = {c: c.swapcase() for c in word}
4 |
5 | print(swaps) # prints: {'H': 'h', 'e': 'E', 'l': 'L', 'o': 'O'}
6 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter05/ch5/dictionary.comprehensions.positions.py:
--------------------------------------------------------------------------------
1 | word = 'Hello'
2 |
3 | positions = {c: k for k, c in enumerate(word)}
4 |
5 | print(positions) # prints: {'H': 0, 'e': 1, 'l': 3, 'o': 4}
6 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter10/ch10/hostres/README.md:
--------------------------------------------------------------------------------
1 | # Hostname Resolution
2 |
3 | In order to run the tests just make sure you are in this folder
4 | and then run:
5 |
6 | ```
7 | $ pytest -vv -x tests
8 | ```
9 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter05/ch5/gen.map.py:
--------------------------------------------------------------------------------
1 | def adder(*n):
2 | return sum(n)
3 |
4 | s1 = sum(map(lambda *n: adder(*n), range(100), range(1, 101)))
5 | s2 = sum(adder(*n) for n in zip(range(100), range(1, 101)))
6 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter05/ch5/sum.example.2.py:
--------------------------------------------------------------------------------
1 | s = sum([n**2 for n in range(10**8)]) # this is killed
2 | s = sum(n**2 for n in range(10**8)) # this succeeds
3 |
4 | print(s) # prints: 333333328333333350000000
5 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Software_Hardware_List.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 01/LearnPythonProgrammingSecondEdition_Code/Software_Hardware_List.pdf
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/requirements/base.txt:
--------------------------------------------------------------------------------
1 | Django==2.0
2 | django-environ>=0.3.0
3 | django-braces>=1.4.0
4 | django-crispy-forms>=1.4.0
5 | django-admin-bootstrapped>=1.6.9
6 | django-debug-toolbar>=1.2.1
7 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/vat.function.py:
--------------------------------------------------------------------------------
1 | def calculate_price_with_vat(price, vat):
2 | return price * (100 + vat) / 100
3 |
4 |
5 | if __name__ == "__main__":
6 | print(calculate_price_with_vat(100, 20))
7 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/.cache/v/cache/lastfailed:
--------------------------------------------------------------------------------
1 | {
2 | "drones/tests.py::APITestCase": true,
3 | "drones/tests.py::DroneCategoryTests": true,
4 | "drones/tests.py::PilotTests": true
5 | }
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter03/ch3/infinite.py:
--------------------------------------------------------------------------------
1 | from itertools import count
2 |
3 | for n in count(5, 3):
4 | if n > 20:
5 | break
6 | print(n, end=', ') # instead of newline, comma and space
7 |
8 | print()
9 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter11/ch11/assertions.py:
--------------------------------------------------------------------------------
1 | mylist = [1, 2, 3] # this ideally comes from some place
2 |
3 | assert 4 == len(mylist) # this will break
4 |
5 | for position in range(4):
6 | print(mylist[position])
7 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter14/ch14/regex/db.sqlite3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter14/ch14/regex/db.sqlite3
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/requirements/requirements.in:
--------------------------------------------------------------------------------
1 | aiohttp
2 | beautifulsoup4
3 | cryptography
4 | django
5 | falcon
6 | flask
7 | gunicorn
8 | marshmallow
9 | pdbpp
10 | pyjwt
11 | pytest
12 | requests
13 | SQLAlchemy
14 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/scripts/create_user.py:
--------------------------------------------------------------------------------
1 | from django.contrib.auth.models import User
2 |
3 | user = User.objects.create_user('user01', 'user01@example.com','user01password')
4 | user.save()
5 |
6 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter07/ch7/files/read_write.py:
--------------------------------------------------------------------------------
1 |
2 | with open('fear.txt') as f:
3 | lines = [line.rstrip() for line in f]
4 |
5 |
6 | with open('fear_copy.txt', 'w') as fw: # w - write
7 | fw.write('\n'.join(lines))
8 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/posts/admin.py:
--------------------------------------------------------------------------------
1 | from django.contrib import admin
2 | from . import models
3 |
4 | admin.site.register(models.Post)
5 | admin.site.register(models.Comment)
6 | admin.site.register(models.Like)
7 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter10/ch10/aio/pics/53a51667.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter10/ch10/aio/pics/53a51667.jpg
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter10/ch10/aio/pics/81846f84.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter10/ch10/aio/pics/81846f84.jpg
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/recursive.factorial.py:
--------------------------------------------------------------------------------
1 | def factorial(n):
2 | if n in (0, 1): # base case
3 | return 1
4 | return factorial(n - 1) * n # recursive case
5 |
6 |
7 | print([factorial(n) for n in range(10)])
8 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter05/ch5/pairs.for.loop.py:
--------------------------------------------------------------------------------
1 |
2 | items = 'ABCD'
3 | pairs = []
4 |
5 | for a in range(len(items)):
6 | for b in range(a, len(items)):
7 | pairs.append((items[a], items[b]))
8 |
9 | print(pairs)
10 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter01/hillar_django_restful_01/restful01/toys/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/toys/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/toys/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/toys/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/toys/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/toys/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/toys/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/toys/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/toys/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/toys/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/toys/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/toys/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/toys/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/toys/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/toys/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/toys/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter03/ch3/multiple.sequences.enumerate.py:
--------------------------------------------------------------------------------
1 | people = ['Conrad', 'Deepak', 'Heinrich', 'Tom']
2 | ages = [29, 30, 34, 36]
3 | for position, person in enumerate(people):
4 | age = ages[position]
5 | print(person, age)
6 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter03/ch3/simple.for.2.py:
--------------------------------------------------------------------------------
1 | surnames = ['Rivest', 'Shamir', 'Adleman']
2 | for position in range(len(surnames)):
3 | print(position, surnames[position])
4 | # print(surnames[position][0], end='') # try swapping prints
5 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/arguments.variable.keyword.py:
--------------------------------------------------------------------------------
1 | def func(**kwargs):
2 | print(kwargs)
3 |
4 | # All calls equivalent. They print: {'a': 1, 'b': 42}
5 | func(a=1, b=42)
6 | func(**{'a': 1, 'b': 42})
7 | func(**dict(a=1, b=42))
8 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/return.none.py:
--------------------------------------------------------------------------------
1 | def func():
2 | pass
3 |
4 | func() # the return of this call won't be collected. It's lost.
5 | a = func() # the return of this one instead is collected into `a`
6 | print(a) # prints: None
7 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter05/ch5/set.comprehensions.py:
--------------------------------------------------------------------------------
1 | word = 'Hello'
2 |
3 | letters1 = set(c for c in word)
4 | letters2 = {c for c in word}
5 | print(letters1) # prints: {'H', 'o', 'e', 'l'}
6 | print(letters1 == letters2) # prints: True
7 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter14/ch14/flask/templates/main.html:
--------------------------------------------------------------------------------
1 |
2 | Hello from Flask
3 |
4 | {% if name %}
5 | Hello {{ name }}!
6 | {% else %}
7 | Hello shy person!
8 | {% endif %}
9 |
10 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/Software hardware list.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/Software hardware list.pdf
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/sightings/urls.py:
--------------------------------------------------------------------------------
1 | from django.urls import path
2 | from . import views
3 |
4 | urlpatterns = [
5 | path('details//', views.SightingDetails.as_view(),
6 | name='sighting_details'),
7 | ]
8 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/sightings/views.py:
--------------------------------------------------------------------------------
1 | from django.shortcuts import render
2 | from django.views.generic import DetailView
3 | from .models import Sighting
4 |
5 |
6 | class SightingDetails(DetailView):
7 | model = Sighting
8 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter07/ch7/files/write_not_exists.py:
--------------------------------------------------------------------------------
1 |
2 | with open('write_x.txt', 'x') as fw:
3 | fw.write('Writing line 1') # this succeeds
4 |
5 |
6 | with open('write_x.txt', 'x') as fw:
7 | fw.write('Writing line 2') # this fails
8 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/arguments.variable.positional.unpacking.py:
--------------------------------------------------------------------------------
1 | def func(*args):
2 | print(args)
3 |
4 | values = (1, 3, -7, 9)
5 | func(values) # equivalent to: func((1, 3, -7, 9))
6 | func(*values) # equivalent to: func(1, 3, -7, 9)
7 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter07/ch7/files/read_write_bin.py:
--------------------------------------------------------------------------------
1 |
2 | with open('example.bin', 'wb') as fw:
3 | fw.write(b'This is binary data...')
4 |
5 |
6 | with open('example.bin', 'rb') as f:
7 | print(f.read()) # prints: b'This is binary data...'
8 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter12/ch12/simple_server/img/owl-book.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter12/ch12/simple_server/img/owl-book.png
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter12/ch12/simple_server/img/owl-books.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter12/ch12/simple_server/img/owl-books.png
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter12/ch12/simple_server/img/owl-ebook.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter12/ch12/simple_server/img/owl-ebook.jpg
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter12/ch12/simple_server/img/owl-rose.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter12/ch12/simple_server/img/owl-rose.jpeg
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/static/site/ico/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/static/site/ico/favicon.ico
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/static/site/img/banner.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/static/site/img/banner.jpg
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/templates/registration/password_reset_email.html:
--------------------------------------------------------------------------------
1 | Someone asked for password reset for email {{ email }}. Follow the link below:
2 | {{ protocol}}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %}
3 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter03/ch3/multiple.sequences.py:
--------------------------------------------------------------------------------
1 | people = ['Conrad', 'Deepak', 'Heinrich', 'Tom']
2 | ages = [29, 30, 34, 36]
3 | for position in range(len(people)):
4 | person = people[position]
5 | age = ages[position]
6 | print(person, age)
7 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter08/ch8/exceptions/json.example.py:
--------------------------------------------------------------------------------
1 | import json
2 |
3 | json_data = '{}' # try: json_data = 2, and json_data = '{{'
4 |
5 | try:
6 | data = json.loads(json_data)
7 | except (ValueError, TypeError) as e:
8 | print(type(e), e)
9 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter12/ch12/simple_server/img/owl-alcohol.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter12/ch12/simple_server/img/owl-alcohol.png
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/db.sqlite3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/db.sqlite3
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/db.sqlite3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/db.sqlite3
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/db.sqlite3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/db.sqlite3
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/db.sqlite3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/db.sqlite3
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/db.sqlite3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/db.sqlite3
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/db.sqlite3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/db.sqlite3
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/db.sqlite3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/db.sqlite3
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/db.sqlite3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/db.sqlite3
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/db.sqlite3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/db.sqlite3
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/db.sqlite3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/db.sqlite3
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/db.sqlite3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/db.sqlite3
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/db.sqlite3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/db.sqlite3
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/db.sqlite3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/db.sqlite3
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/db.sqlite3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/db.sqlite3
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/db.sqlite3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/db.sqlite3
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter01/ch1/scopes1.py:
--------------------------------------------------------------------------------
1 | # Local versus Global
2 |
3 | # we define a function, called local
4 | def local():
5 | m = 7
6 | print(m)
7 |
8 | m = 5
9 | print(m)
10 |
11 | # we call, or `execute` the function local
12 | local()
13 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/filter.regular.py:
--------------------------------------------------------------------------------
1 | def is_multiple_of_five(n):
2 | return not n % 5
3 |
4 |
5 | def get_multiples_of_five(n):
6 | return list(filter(is_multiple_of_five, range(n)))
7 |
8 |
9 | print(get_multiples_of_five(50))
10 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter07/ch7/files/listing.py:
--------------------------------------------------------------------------------
1 | import os
2 |
3 |
4 | with os.scandir('.') as it:
5 | for entry in it:
6 | print(
7 | entry.name, entry.path,
8 | 'File' if entry.is_file() else 'Folder'
9 | )
10 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/key.points.mutable.assignment.py:
--------------------------------------------------------------------------------
1 | x = [1, 2, 3]
2 | def func(x):
3 | x[1] = 42 # this changes the caller!
4 | x = 'something else' # this points x to a new string object
5 |
6 | func(x)
7 | print(x) # still prints: [1, 42, 3]
8 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter14/ch14/regex/entries/forms.py:
--------------------------------------------------------------------------------
1 | from django.forms import ModelForm
2 |
3 | from .models import Entry
4 |
5 |
6 | class EntryForm(ModelForm):
7 | class Meta:
8 | model = Entry
9 | fields = ['pattern', 'test_string']
10 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/static/site/img/default_profile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/static/site/img/default_profile.png
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter03/ch3/primes.else.py:
--------------------------------------------------------------------------------
1 | primes = []
2 | upto = 100
3 | for n in range(2, upto + 1):
4 | for divisor in range(2, n):
5 | if n % divisor == 0:
6 | break
7 | else:
8 | primes.append(n)
9 |
10 | print(primes)
11 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/arguments.default.py:
--------------------------------------------------------------------------------
1 | def func(a, b=4, c=88):
2 | print(a, b, c)
3 |
4 | func(1) # prints: 1 4 88
5 | func(b=5, a=7, c=9) # prints: 7 5 9
6 | func(42, c=9) # prints: 42 4 9
7 | func(42, 43, 44) # prints: 42, 43, 44
8 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/return.single.value.py:
--------------------------------------------------------------------------------
1 | def factorial(n):
2 | if n in (0, 1):
3 | return 1
4 | result = n
5 | for k in range(2, n):
6 | result *= k
7 | return result
8 |
9 | f5 = factorial(5) # f5 = 120
10 | print(f5)
11 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/profiles/apps.py:
--------------------------------------------------------------------------------
1 | from django.apps import AppConfig
2 |
3 |
4 | class ProfilesConfig(AppConfig):
5 | name = 'profiles'
6 | verbose_name = 'User Profiles'
7 |
8 | def ready(self):
9 | from . import signals
10 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter02/ch2/README.md:
--------------------------------------------------------------------------------
1 | Chapter 2 data files
2 | ====================
3 |
4 | The files in this folder are not supposed to work if run.
5 | They serve as source for the book chapters, and to provide a
6 | quick copy/paste tool for whoever would need their content.
7 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/scoping.level.1.py:
--------------------------------------------------------------------------------
1 | def my_function():
2 | test = 1 # this is defined in the local scope of the function
3 | print('my_function:', test)
4 |
5 |
6 | test = 0 # this is defined in the global scope
7 | my_function()
8 | print('global:', test)
9 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter05/ch5/gen.send.preparation.py:
--------------------------------------------------------------------------------
1 | def counter(start=0):
2 | n = start
3 | while True:
4 | yield n
5 | n += 1
6 |
7 | c = counter()
8 | print(next(c)) # prints: 0
9 | print(next(c)) # prints: 1
10 | print(next(c)) # prints: 2
11 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter07/ch7/io_examples/reqs_post.py:
--------------------------------------------------------------------------------
1 | import requests
2 |
3 |
4 | url = 'https://httpbin.org/post'
5 | data = dict(title='Learn Python Programming')
6 |
7 |
8 | resp = requests.post(url, data=data)
9 | print('Response for POST')
10 | print(resp.json())
11 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/extras/coroutine.py:
--------------------------------------------------------------------------------
1 | import asyncio
2 |
3 |
4 | async def sleeper_coroutine():
5 | await asyncio.sleep(5)
6 |
7 |
8 | if __name__ == '__main__':
9 | loop = asyncio.get_event_loop()
10 | loop.run_until_complete(sleeper_coroutine())
11 |
--------------------------------------------------------------------------------
/Module 03/DjangoDesignPatternsandBestPracticesSecondEdition_Code/src/profiles/urls.py:
--------------------------------------------------------------------------------
1 | from django.urls import path
2 | from . import views
3 |
4 | urlpatterns = [
5 | path('me/', views.ShowProfile.as_view(), name='show_me'),
6 | path('/', views.ShowProfile.as_view(),
7 | name='show_user'),
8 | ]
9 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter03/ch3/multiple.sequences.while.py:
--------------------------------------------------------------------------------
1 | people = ['Conrad', 'Deepak', 'Heinrich', 'Tom']
2 | ages = [29, 30, 34, 36]
3 | position = 0
4 | while position < len(people):
5 | person = people[position]
6 | age = ages[position]
7 | print(person, age)
8 | position += 1
9 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter05/ch5/maxims.py:
--------------------------------------------------------------------------------
1 | # This is not a valid Python module - Don't run it.
2 |
3 | >>> _ = list
4 | >>> a = [5, 9, 2, 4, 7]
5 | >>> b = [3, 7, 1, 9, 2]
6 | >>> c = [6, 8, 0, 5, 3]
7 | >>> maxs = map(lambda n: max(*n), zip(a, b, c))
8 | >>> _(maxs)
9 | [6, 9, 2, 9, 7]
10 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter07/ch7/files/existence.py:
--------------------------------------------------------------------------------
1 | import os
2 |
3 |
4 | filename = 'fear.txt'
5 | path = os.path.dirname(os.path.abspath(filename))
6 |
7 |
8 | print(os.path.isfile(filename)) # True
9 | print(os.path.isdir(path)) # True
10 | print(path) # /Users/fab/srv/lpp/ch7/files
11 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter01/hillar_django_restful_01/restful01/toys/models.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.db import models
7 |
8 | # Create your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter01/hillar_django_restful_01/restful01/toys/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/README.txt:
--------------------------------------------------------------------------------
1 | Any computer or device capable of running Python 3.6.3 or greater in Linux, macOS, or Windows.
2 |
3 | Any computer or device capable of running a modern web browser compatible with
4 | HTML 5 and CSS 3 to work with the Browsable API feature
5 | included in Django REST framework.
6 |
7 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/arguments.all.py:
--------------------------------------------------------------------------------
1 | def func(a, b, c=7, *args, **kwargs):
2 | print('a, b, c:', a, b, c)
3 | print('args:', args)
4 | print('kwargs:', kwargs)
5 |
6 | func(1, 2, 3, *(5, 7, 9), **{'A': 'a', 'B': 'b'})
7 | func(1, 2, 3, 5, 7, 9, A='a', B='b') # same as previous one
8 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/return.single.value.2.py:
--------------------------------------------------------------------------------
1 | from functools import reduce
2 | from operator import mul
3 |
4 |
5 | def factorial(n):
6 | return reduce(mul, range(1, n + 1), 1)
7 |
8 |
9 | f5 = factorial(5) # f5 = 120
10 | print(f5)
11 | print([factorial(k) for k in range(10)])
12 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter11/ch11/custom.py:
--------------------------------------------------------------------------------
1 | def debug(*msg, print_separator=True):
2 | print(*msg)
3 | if print_separator:
4 | print('-' * 40)
5 |
6 |
7 | debug('Data is ...')
8 | debug('Different', 'Strings', 'Are not a problem')
9 | debug('After while loop', print_separator=False)
10 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter01/hillar_django_restful_01/restful01/toys/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter01/hillar_django_restful_01/restful01/toys/views.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.shortcuts import render
7 |
8 | # Create your views here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/toys/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/toys/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/toys/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/toys/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/toys/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/toys/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/toys/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/toys/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/toys/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/toys/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/toys/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/toys/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/toys/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/toys/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/toys/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/toys/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/toys/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/toys/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/toys/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/toys/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/toys/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/toys/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/toys/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/drones/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/toys/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/toys/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/toys/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/toys/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/toys/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/drones/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/toys/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/toys/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/toys/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/toys/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/toys/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/drones/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/toys/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/toys/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/toys/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/toys/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/toys/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/drones/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/toys/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/toys/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/toys/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/toys/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/toys/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/drones/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/toys/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/toys/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/toys/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/toys/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/toys/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/drones/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/toys/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/toys/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/toys/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/toys/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/toys/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/drones/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/toys/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/toys/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/toys/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/toys/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/toys/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/drones/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/toys/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/toys/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/toys/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/toys/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/toys/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/toys/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/toys/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/toys/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/toys/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/toys/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/toys/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/toys/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/toys/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/toys/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/toys/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter03/ch3/multiple.sequences.explicit.py:
--------------------------------------------------------------------------------
1 | people = ['Conrad', 'Deepak', 'Heinrich', 'Tom']
2 | ages = [29, 30, 34, 36]
3 | nationalities = ['Poland', 'India', 'South Africa', 'England']
4 | for person, age, nationality in zip(people, ages, nationalities):
5 | print(person, age, nationality)
6 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter03/ch3/range.py:
--------------------------------------------------------------------------------
1 | >>> list(range(10)) # one value: from 0 to value (excluded)
2 | [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
3 | >>> list(range(3, 8)) # two values: from start to stop (excluded)
4 | [3, 4, 5, 6, 7]
5 | >>> list(range(-10, 10, 4)) # three values: step is added
6 | [-10, -6, -2, 2, 6]
7 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/arguments.defaults.mutable.py:
--------------------------------------------------------------------------------
1 | def func(a=[], b={}):
2 | print(a)
3 | print(b)
4 | print('#' * 12)
5 | a.append(len(a)) # this will affect a's default value
6 | b[len(a)] = len(a) # and this will affect b's one
7 |
8 | func()
9 | func()
10 | func()
11 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter05/ch5/dictionary.comprehensions.py:
--------------------------------------------------------------------------------
1 | from string import ascii_lowercase
2 |
3 |
4 | lettermap = dict((c, k) for k, c in enumerate(ascii_lowercase, 1))
5 | # lettermap = {c: k for k, c in enumerate(ascii_lowercase, 1)}
6 |
7 |
8 | from pprint import pprint
9 | pprint(lettermap)
10 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/toys/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/toys/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/toys/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/toys/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/toys/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/toys/views.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.shortcuts import render
7 |
8 | # Create your views here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/toys/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/toys/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/toys/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/toys/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/toys/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/toys/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/toys/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/toys/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/toys/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/toys/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/toys/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/toys/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/toys/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/toys/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/toys/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/toys/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/toys/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/toys/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/toys/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/toys/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/toys/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/toys/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/toys/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/toys/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/toys/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/toys/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/toys/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/toys/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/drones/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/drones/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/drones/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/drones/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/drones/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/drones/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/drones/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/drones/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/drones/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/toys/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/toys/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/toys/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/toys/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/toys/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/toys/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/toys/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/drones/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/drones/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/drones/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/drones/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/drones/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/drones/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/drones/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/drones/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/drones/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/toys/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/toys/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/toys/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/toys/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/toys/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/toys/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/toys/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/drones/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/drones/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/drones/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/drones/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/drones/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/drones/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/drones/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/drones/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/drones/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/toys/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/toys/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/toys/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/toys/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/toys/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/toys/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/toys/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/drones/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/drones/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/drones/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/drones/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/drones/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/drones/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/drones/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/drones/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/drones/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/toys/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/toys/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/toys/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/toys/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/toys/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/toys/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/toys/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/drones/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/drones/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/drones/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/drones/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/drones/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/drones/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/drones/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/drones/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/drones/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/toys/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/toys/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/toys/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/toys/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/toys/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/toys/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/toys/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/drones/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/drones/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/drones/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/drones/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/drones/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/drones/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/drones/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/drones/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/drones/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/toys/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/toys/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/toys/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/toys/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/toys/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/toys/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/toys/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/drones/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/drones/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/drones/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/drones/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/drones/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/drones/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/drones/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/drones/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/drones/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/toys/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/toys/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/toys/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/toys/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/toys/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/toys/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/toys/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/drones/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/drones/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/drones/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/drones/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/drones/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/drones/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/drones/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/drones/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/drones/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/toys/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/toys/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/toys/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/toys/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/toys/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/toys/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/toys/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/drones/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/drones/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/drones/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/drones/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/drones/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/drones/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/drones/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/drones/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/drones/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/toys/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/toys/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/toys/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/toys/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/toys/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/toys/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/toys/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/drones/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/drones/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/drones/__pycache__/apps.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/drones/__pycache__/apps.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/drones/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/drones/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/drones/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/drones/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/drones/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/toys/__pycache__/admin.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/toys/__pycache__/admin.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/toys/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/toys/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/toys/__pycache__/views.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/toys/__pycache__/views.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/toys/admin.py:
--------------------------------------------------------------------------------
1 | """
2 | Book: Django RESTful Web Services
3 | Author: Gaston C. Hillar - Twitter.com/gastonhillar
4 | Publisher: Packt Publishing Ltd. - http://www.packtpub.com
5 | """
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter04/ch4/additional.unpacking.py:
--------------------------------------------------------------------------------
1 | def additional(*args, **kwargs):
2 | print(args)
3 | print(kwargs)
4 |
5 | args1 = (1, 2, 3)
6 | args2 = [4, 5]
7 | kwargs1 = dict(option1=10, option2=20)
8 | kwargs2 = {'option3': 30}
9 |
10 | additional(*args1, *args2, **kwargs1, **kwargs2)
11 |
--------------------------------------------------------------------------------
/Module 01/LearnPythonProgrammingSecondEdition_Code/Chapter05/ch5/alias.py:
--------------------------------------------------------------------------------
1 | # this code won't run
2 |
3 | >>> range(7)
4 | range(0, 7)
5 | >>> list(range(7)) # put all elements in a list to view them
6 | [0, 1, 2, 3, 4, 5, 6]
7 | >>> _ = list # create an "alias" to list
8 | >>> _(range(7)) # same as list(range(7))
9 | [0, 1, 2, 3, 4, 5, 6]
10 |
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/restful01/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/restful01/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/toys/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/toys/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/restful01/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/restful01/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/restful01/__pycache__/wsgi.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/restful01/__pycache__/wsgi.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/toys/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/toys/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/restful01/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/restful01/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/restful01/__pycache__/wsgi.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/restful01/__pycache__/wsgi.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/toys/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/toys/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/restful01/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/restful01/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/restful01/__pycache__/wsgi.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/restful01/__pycache__/wsgi.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/toys/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/toys/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/restful01/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/restful01/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/restful01/__pycache__/wsgi.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/restful01/__pycache__/wsgi.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/toys/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/toys/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/drones/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/drones/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/restful01/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/restful01/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/restful01/__pycache__/wsgi.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/restful01/__pycache__/wsgi.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/toys/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/toys/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/drones/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/drones/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/restful01/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/restful01/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/restful01/__pycache__/wsgi.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/restful01/__pycache__/wsgi.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/toys/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/toys/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/drones/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/drones/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/restful01/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/restful01/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/restful01/__pycache__/wsgi.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/restful01/__pycache__/wsgi.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/toys/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/toys/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/drones/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/drones/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/restful01/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/restful01/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/restful01/__pycache__/wsgi.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/restful01/__pycache__/wsgi.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/toys/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/toys/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/drones/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/drones/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/restful01/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/restful01/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/restful01/__pycache__/wsgi.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/restful01/__pycache__/wsgi.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/toys/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/toys/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/drones/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/drones/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/restful01/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/restful01/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/restful01/__pycache__/wsgi.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/restful01/__pycache__/wsgi.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/toys/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/toys/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/drones/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/drones/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/restful01/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/restful01/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/restful01/__pycache__/wsgi.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/restful01/__pycache__/wsgi.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/toys/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/toys/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/drones/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/drones/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/drones/v2/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/drones/v2/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/restful01/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/restful01/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/restful01/__pycache__/wsgi.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/restful01/__pycache__/wsgi.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/toys/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/toys/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/drones/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/drones/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/drones/v2/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/drones/v2/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/restful01/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/restful01/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/restful01/__pycache__/wsgi.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/restful01/__pycache__/wsgi.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/toys/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/toys/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/drones/__pycache__/models.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/drones/__pycache__/models.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/drones/v2/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/drones/v2/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/restful01/__pycache__/urls.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/restful01/__pycache__/urls.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/restful01/__pycache__/wsgi.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/restful01/__pycache__/wsgi.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/toys/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/toys/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter01/hillar_django_restful_01/restful01/restful01/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter01/hillar_django_restful_01/restful01/restful01/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter01/hillar_django_restful_01/restful01/restful01/__pycache__/settings.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter01/hillar_django_restful_01/restful01/restful01/__pycache__/settings.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/toys/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/toys/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/toys/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/toys/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/toys/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/toys/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/toys/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/toys/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/toys/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/toys/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/drones/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/drones/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/toys/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/toys/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/drones/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/drones/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/toys/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/toys/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/drones/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/drones/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/toys/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/toys/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/drones/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/drones/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/toys/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/toys/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/drones/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/drones/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/toys/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/toys/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/drones/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/drones/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/toys/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/toys/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/drones/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/drones/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/toys/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/toys/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/drones/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/drones/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/toys/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/toys/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/drones/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/drones/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/toys/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/toys/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/toys/__pycache__/tests.cpython-36-PYTEST.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/toys/__pycache__/tests.cpython-36-PYTEST.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/drones/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/drones/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/toys/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/toys/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/toys/__pycache__/tests.cpython-36-PYTEST.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_02/restful01/toys/__pycache__/tests.cpython-36-PYTEST.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/restful01/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/restful01/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/restful01/__pycache__/settings.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter02/hillar_django_restful_02_01/restful01/restful01/__pycache__/settings.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/restful01/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/restful01/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/restful01/__pycache__/settings.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter03/hillar_django_restful_03_01/restful01/restful01/__pycache__/settings.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/restful01/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/restful01/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/restful01/__pycache__/settings.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_01/restful01/restful01/__pycache__/settings.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/restful01/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/restful01/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/restful01/__pycache__/settings.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter04/hillar_django_restful_04_02/restful01/restful01/__pycache__/settings.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/restful01/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/restful01/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/restful01/__pycache__/settings.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter05/hillar_django_restful_05_01/restful01/restful01/__pycache__/settings.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/drones/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/drones/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/restful01/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/restful01/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/restful01/__pycache__/settings.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter06/hillar_django_restful_06_01/restful01/restful01/__pycache__/settings.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/drones/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/drones/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/restful01/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/restful01/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/restful01/__pycache__/settings.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_01/restful01/restful01/__pycache__/settings.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/drones/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/drones/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/restful01/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/restful01/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/restful01/__pycache__/settings.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_02/restful01/restful01/__pycache__/settings.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/drones/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/drones/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/restful01/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/restful01/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/restful01/__pycache__/settings.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter07/hillar_django_restful_07_03/restful01/restful01/__pycache__/settings.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/drones/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/drones/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/restful01/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/restful01/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/restful01/__pycache__/settings.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_01/restful01/restful01/__pycache__/settings.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/drones/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/drones/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/restful01/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/restful01/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/restful01/__pycache__/settings.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter08/hillar_django_restful_08_02/restful01/restful01/__pycache__/settings.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/drones/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/drones/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/restful01/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/restful01/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/restful01/__pycache__/settings.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_01/restful01/restful01/__pycache__/settings.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/drones/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/drones/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/restful01/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/restful01/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/restful01/__pycache__/settings.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter09/hillar_django_restful_09_02/restful01/restful01/__pycache__/settings.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/drones/__pycache__/serializers.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/drones/__pycache__/serializers.cpython-36.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/drones/__pycache__/tests.cpython-36-PYTEST.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/drones/__pycache__/tests.cpython-36-PYTEST.pyc
--------------------------------------------------------------------------------
/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/restful01/__pycache__/__init__.cpython-36.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learning-Path-Learn-Web-Development-with-Python/HEAD/Module 02/DjangoRESTfulWebServices_Code/Chapter10/hillar_django_restful_10_01/restful01/restful01/__pycache__/__init__.cpython-36.pyc
--------------------------------------------------------------------------------