├── .gitignore ├── LICENSE ├── README.md ├── illustratedpy3.pdf ├── labs ├── __init__.py ├── annotate3rd_test.py ├── annotate_test.py ├── async_ctx_test.py ├── async_gen_test.py ├── async_iter_test.py ├── async_test.py ├── enum_test.py ├── exception_test.py ├── format_test.py ├── fstring_test.py ├── gen_unpack_test.py ├── keyword_test.py ├── mul_test.py ├── num_test.py ├── other_test.py ├── path_test.py ├── print_test.py ├── py3code.py ├── requirements.txt ├── stat_test.py ├── super_test.py ├── unicode_test.py ├── unifile_test.py ├── unpack_test.py └── venv_test.py ├── readme_resources └── illustrated-python-3.png └── transcripts ├── ch01-welcome ├── 1.txt ├── 2.txt ├── 3.txt └── 4.txt ├── ch02-venvs ├── 1.txt ├── 2.txt ├── 3.txt ├── 4.txt ├── 5.txt └── 6.txt ├── ch03-strings ├── 1.txt ├── 2.txt ├── 3.txt ├── 4.txt ├── 5.txt ├── 6.txt ├── 7.txt ├── 8.txt └── 9.txt ├── ch04-numbers ├── 1.txt ├── 2.txt ├── 3.txt ├── 4.txt ├── 5.txt ├── 6.txt └── 7.txt ├── ch05-classes ├── 1.txt ├── 2.txt ├── 3.txt ├── 4.txt └── 5.txt ├── ch06-functions ├── 1.txt └── 2.txt ├── ch07-type-annotations ├── 1.txt ├── 10.txt ├── 11.txt ├── 12.txt ├── 13.txt ├── 14.txt ├── 15.txt ├── 2.txt ├── 3.txt ├── 4.txt ├── 5.txt ├── 6.txt ├── 7.txt ├── 8.txt └── 9.txt ├── ch08-standard-lib ├── 1.txt ├── 2.txt ├── 3.txt ├── 4.txt ├── 5.txt └── 6.txt ├── ch09-asyncio ├── 1.txt ├── 10.txt ├── 11.txt ├── 12.txt ├── 13.txt ├── 14.txt ├── 15.txt ├── 16.txt ├── 17.txt ├── 18.txt ├── 19.txt ├── 2.txt ├── 3.txt ├── 4.txt ├── 5.txt ├── 6.txt ├── 7.txt ├── 8.txt └── 9.txt ├── ch10-lang ├── 1.txt ├── 10.txt ├── 2.txt ├── 3.txt ├── 4.txt ├── 5.txt ├── 6.txt ├── 7.txt ├── 8.txt └── 9.txt ├── ch11-conclusion └── 1.txt └── course.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/README.md -------------------------------------------------------------------------------- /illustratedpy3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/illustratedpy3.pdf -------------------------------------------------------------------------------- /labs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labs/annotate3rd_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/annotate3rd_test.py -------------------------------------------------------------------------------- /labs/annotate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/annotate_test.py -------------------------------------------------------------------------------- /labs/async_ctx_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/async_ctx_test.py -------------------------------------------------------------------------------- /labs/async_gen_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/async_gen_test.py -------------------------------------------------------------------------------- /labs/async_iter_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/async_iter_test.py -------------------------------------------------------------------------------- /labs/async_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/async_test.py -------------------------------------------------------------------------------- /labs/enum_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/enum_test.py -------------------------------------------------------------------------------- /labs/exception_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/exception_test.py -------------------------------------------------------------------------------- /labs/format_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/format_test.py -------------------------------------------------------------------------------- /labs/fstring_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/fstring_test.py -------------------------------------------------------------------------------- /labs/gen_unpack_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/gen_unpack_test.py -------------------------------------------------------------------------------- /labs/keyword_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/keyword_test.py -------------------------------------------------------------------------------- /labs/mul_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/mul_test.py -------------------------------------------------------------------------------- /labs/num_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/num_test.py -------------------------------------------------------------------------------- /labs/other_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/other_test.py -------------------------------------------------------------------------------- /labs/path_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/path_test.py -------------------------------------------------------------------------------- /labs/print_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/print_test.py -------------------------------------------------------------------------------- /labs/py3code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/py3code.py -------------------------------------------------------------------------------- /labs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/requirements.txt -------------------------------------------------------------------------------- /labs/stat_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/stat_test.py -------------------------------------------------------------------------------- /labs/super_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/super_test.py -------------------------------------------------------------------------------- /labs/unicode_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/unicode_test.py -------------------------------------------------------------------------------- /labs/unifile_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/unifile_test.py -------------------------------------------------------------------------------- /labs/unpack_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/unpack_test.py -------------------------------------------------------------------------------- /labs/venv_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/labs/venv_test.py -------------------------------------------------------------------------------- /readme_resources/illustrated-python-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/readme_resources/illustrated-python-3.png -------------------------------------------------------------------------------- /transcripts/ch01-welcome/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch01-welcome/1.txt -------------------------------------------------------------------------------- /transcripts/ch01-welcome/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch01-welcome/2.txt -------------------------------------------------------------------------------- /transcripts/ch01-welcome/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch01-welcome/3.txt -------------------------------------------------------------------------------- /transcripts/ch01-welcome/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch01-welcome/4.txt -------------------------------------------------------------------------------- /transcripts/ch02-venvs/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch02-venvs/1.txt -------------------------------------------------------------------------------- /transcripts/ch02-venvs/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch02-venvs/2.txt -------------------------------------------------------------------------------- /transcripts/ch02-venvs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch02-venvs/3.txt -------------------------------------------------------------------------------- /transcripts/ch02-venvs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch02-venvs/4.txt -------------------------------------------------------------------------------- /transcripts/ch02-venvs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch02-venvs/5.txt -------------------------------------------------------------------------------- /transcripts/ch02-venvs/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch02-venvs/6.txt -------------------------------------------------------------------------------- /transcripts/ch03-strings/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch03-strings/1.txt -------------------------------------------------------------------------------- /transcripts/ch03-strings/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch03-strings/2.txt -------------------------------------------------------------------------------- /transcripts/ch03-strings/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch03-strings/3.txt -------------------------------------------------------------------------------- /transcripts/ch03-strings/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch03-strings/4.txt -------------------------------------------------------------------------------- /transcripts/ch03-strings/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch03-strings/5.txt -------------------------------------------------------------------------------- /transcripts/ch03-strings/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch03-strings/6.txt -------------------------------------------------------------------------------- /transcripts/ch03-strings/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch03-strings/7.txt -------------------------------------------------------------------------------- /transcripts/ch03-strings/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch03-strings/8.txt -------------------------------------------------------------------------------- /transcripts/ch03-strings/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch03-strings/9.txt -------------------------------------------------------------------------------- /transcripts/ch04-numbers/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch04-numbers/1.txt -------------------------------------------------------------------------------- /transcripts/ch04-numbers/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch04-numbers/2.txt -------------------------------------------------------------------------------- /transcripts/ch04-numbers/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch04-numbers/3.txt -------------------------------------------------------------------------------- /transcripts/ch04-numbers/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch04-numbers/4.txt -------------------------------------------------------------------------------- /transcripts/ch04-numbers/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch04-numbers/5.txt -------------------------------------------------------------------------------- /transcripts/ch04-numbers/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch04-numbers/6.txt -------------------------------------------------------------------------------- /transcripts/ch04-numbers/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch04-numbers/7.txt -------------------------------------------------------------------------------- /transcripts/ch05-classes/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch05-classes/1.txt -------------------------------------------------------------------------------- /transcripts/ch05-classes/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch05-classes/2.txt -------------------------------------------------------------------------------- /transcripts/ch05-classes/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch05-classes/3.txt -------------------------------------------------------------------------------- /transcripts/ch05-classes/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch05-classes/4.txt -------------------------------------------------------------------------------- /transcripts/ch05-classes/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch05-classes/5.txt -------------------------------------------------------------------------------- /transcripts/ch06-functions/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch06-functions/1.txt -------------------------------------------------------------------------------- /transcripts/ch06-functions/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch06-functions/2.txt -------------------------------------------------------------------------------- /transcripts/ch07-type-annotations/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch07-type-annotations/1.txt -------------------------------------------------------------------------------- /transcripts/ch07-type-annotations/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch07-type-annotations/10.txt -------------------------------------------------------------------------------- /transcripts/ch07-type-annotations/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch07-type-annotations/11.txt -------------------------------------------------------------------------------- /transcripts/ch07-type-annotations/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch07-type-annotations/12.txt -------------------------------------------------------------------------------- /transcripts/ch07-type-annotations/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch07-type-annotations/13.txt -------------------------------------------------------------------------------- /transcripts/ch07-type-annotations/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch07-type-annotations/14.txt -------------------------------------------------------------------------------- /transcripts/ch07-type-annotations/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch07-type-annotations/15.txt -------------------------------------------------------------------------------- /transcripts/ch07-type-annotations/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch07-type-annotations/2.txt -------------------------------------------------------------------------------- /transcripts/ch07-type-annotations/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch07-type-annotations/3.txt -------------------------------------------------------------------------------- /transcripts/ch07-type-annotations/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch07-type-annotations/4.txt -------------------------------------------------------------------------------- /transcripts/ch07-type-annotations/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch07-type-annotations/5.txt -------------------------------------------------------------------------------- /transcripts/ch07-type-annotations/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch07-type-annotations/6.txt -------------------------------------------------------------------------------- /transcripts/ch07-type-annotations/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch07-type-annotations/7.txt -------------------------------------------------------------------------------- /transcripts/ch07-type-annotations/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch07-type-annotations/8.txt -------------------------------------------------------------------------------- /transcripts/ch07-type-annotations/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch07-type-annotations/9.txt -------------------------------------------------------------------------------- /transcripts/ch08-standard-lib/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch08-standard-lib/1.txt -------------------------------------------------------------------------------- /transcripts/ch08-standard-lib/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch08-standard-lib/2.txt -------------------------------------------------------------------------------- /transcripts/ch08-standard-lib/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch08-standard-lib/3.txt -------------------------------------------------------------------------------- /transcripts/ch08-standard-lib/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch08-standard-lib/4.txt -------------------------------------------------------------------------------- /transcripts/ch08-standard-lib/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch08-standard-lib/5.txt -------------------------------------------------------------------------------- /transcripts/ch08-standard-lib/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch08-standard-lib/6.txt -------------------------------------------------------------------------------- /transcripts/ch09-asyncio/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch09-asyncio/1.txt -------------------------------------------------------------------------------- /transcripts/ch09-asyncio/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch09-asyncio/10.txt -------------------------------------------------------------------------------- /transcripts/ch09-asyncio/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch09-asyncio/11.txt -------------------------------------------------------------------------------- /transcripts/ch09-asyncio/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch09-asyncio/12.txt -------------------------------------------------------------------------------- /transcripts/ch09-asyncio/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch09-asyncio/13.txt -------------------------------------------------------------------------------- /transcripts/ch09-asyncio/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch09-asyncio/14.txt -------------------------------------------------------------------------------- /transcripts/ch09-asyncio/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch09-asyncio/15.txt -------------------------------------------------------------------------------- /transcripts/ch09-asyncio/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch09-asyncio/16.txt -------------------------------------------------------------------------------- /transcripts/ch09-asyncio/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch09-asyncio/17.txt -------------------------------------------------------------------------------- /transcripts/ch09-asyncio/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch09-asyncio/18.txt -------------------------------------------------------------------------------- /transcripts/ch09-asyncio/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch09-asyncio/19.txt -------------------------------------------------------------------------------- /transcripts/ch09-asyncio/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch09-asyncio/2.txt -------------------------------------------------------------------------------- /transcripts/ch09-asyncio/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch09-asyncio/3.txt -------------------------------------------------------------------------------- /transcripts/ch09-asyncio/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch09-asyncio/4.txt -------------------------------------------------------------------------------- /transcripts/ch09-asyncio/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch09-asyncio/5.txt -------------------------------------------------------------------------------- /transcripts/ch09-asyncio/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch09-asyncio/6.txt -------------------------------------------------------------------------------- /transcripts/ch09-asyncio/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch09-asyncio/7.txt -------------------------------------------------------------------------------- /transcripts/ch09-asyncio/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch09-asyncio/8.txt -------------------------------------------------------------------------------- /transcripts/ch09-asyncio/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch09-asyncio/9.txt -------------------------------------------------------------------------------- /transcripts/ch10-lang/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch10-lang/1.txt -------------------------------------------------------------------------------- /transcripts/ch10-lang/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch10-lang/10.txt -------------------------------------------------------------------------------- /transcripts/ch10-lang/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch10-lang/2.txt -------------------------------------------------------------------------------- /transcripts/ch10-lang/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch10-lang/3.txt -------------------------------------------------------------------------------- /transcripts/ch10-lang/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch10-lang/4.txt -------------------------------------------------------------------------------- /transcripts/ch10-lang/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch10-lang/5.txt -------------------------------------------------------------------------------- /transcripts/ch10-lang/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch10-lang/6.txt -------------------------------------------------------------------------------- /transcripts/ch10-lang/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch10-lang/7.txt -------------------------------------------------------------------------------- /transcripts/ch10-lang/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch10-lang/8.txt -------------------------------------------------------------------------------- /transcripts/ch10-lang/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch10-lang/9.txt -------------------------------------------------------------------------------- /transcripts/ch11-conclusion/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/ch11-conclusion/1.txt -------------------------------------------------------------------------------- /transcripts/course.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/illustrated-python-3-course/HEAD/transcripts/course.json --------------------------------------------------------------------------------