├── Chapter01 ├── datastructures_01.py ├── datastructures_02.py ├── datastructures_03.py ├── datastructures_04.py ├── datastructures_05.py ├── datastructures_06.py ├── datastructures_07.py └── datastructures_08.py ├── Chapter02 ├── text_01.py ├── text_02.py ├── text_03.py ├── text_04.py ├── text_05.py ├── text_06.py ├── text_07.py └── text_08.py ├── Chapter03 ├── terminal_01.py ├── terminal_02.py ├── terminal_03.py ├── terminal_04.py ├── terminal_05.py ├── terminal_06.py ├── terminal_07.py ├── terminal_08.py ├── terminal_09.py └── terminal_10.py ├── Chapter04 ├── _build │ └── pdf │ │ ├── PySTLCookbook.pdf │ │ ├── PySTLCookbook.rtc │ │ └── PySTLCookbook.stylelog ├── conf.py ├── filesdirs_01.py ├── filesdirs_02.py ├── filesdirs_03.py ├── filesdirs_04.py ├── filesdirs_05.py ├── filesdirs_06.py ├── filesdirs_07.py ├── filesdirs_08.py └── filesdirs_09.py ├── Chapter05 ├── datetimes_01.py ├── datetimes_02.py ├── datetimes_03.py ├── datetimes_04.py ├── datetimes_05.py ├── datetimes_06.py ├── datetimes_07.py ├── datetimes_08.py ├── datetimes_09.py └── datetimes_10.py ├── Chapter06 ├── _build │ └── doctrees │ │ └── io.doctree ├── io_01.py ├── io_02.py ├── io_03.py ├── io_04.py ├── io_05.py ├── io_06.py ├── io_07.py ├── io_08.py ├── io_09.py └── io_10.py ├── Chapter07 ├── algorithms_01.py ├── algorithms_02.py ├── algorithms_03.py ├── algorithms_04.py ├── algorithms_05.py ├── algorithms_06.py ├── algorithms_07.py ├── algorithms_08.py ├── algorithms_09.py ├── algorithms_10.py ├── algorithms_11.py ├── algorithms_12.py └── algorithms_13.py ├── Chapter08 ├── crypto_01.py ├── crypto_02.py ├── crypto_03.py ├── crypto_04.py └── wrapt-1.10.11.tar.gz ├── Chapter09 ├── concurrency_01.py ├── concurrency_02.py ├── concurrency_03.py ├── concurrency_04.py ├── concurrency_05.py └── concurrency_06.py ├── Chapter10 ├── networking_01.py ├── networking_02.py ├── networking_03.py ├── networking_04.py ├── networking_05.py └── networking_06.py ├── Chapter11 ├── web_01.py ├── web_02.py ├── web_03.py ├── web_04.py ├── web_05.py ├── web_06.py ├── web_07.py ├── web_08.py ├── web_09.py ├── web_10.py └── web_11.py ├── Chapter12 ├── multimedia_01.py ├── multimedia_02.py ├── multimedia_03.py └── multimedia_04.py ├── Chapter13 ├── gui_01.py ├── gui_02.py ├── gui_03.py ├── gui_04.py └── gui_05.py ├── Chapter14 ├── devtools_01.py ├── devtools_02.py ├── devtools_03.py ├── devtools_04.py ├── devtools_05.py ├── devtools_06.py ├── devtools_07.py ├── devtools_08.py ├── devtools_09.py └── test_devtools_02.py ├── LICENSE ├── README.md └── extract_code.py /Chapter01/datastructures_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter01/datastructures_01.py -------------------------------------------------------------------------------- /Chapter01/datastructures_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter01/datastructures_02.py -------------------------------------------------------------------------------- /Chapter01/datastructures_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter01/datastructures_03.py -------------------------------------------------------------------------------- /Chapter01/datastructures_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter01/datastructures_04.py -------------------------------------------------------------------------------- /Chapter01/datastructures_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter01/datastructures_05.py -------------------------------------------------------------------------------- /Chapter01/datastructures_06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter01/datastructures_06.py -------------------------------------------------------------------------------- /Chapter01/datastructures_07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter01/datastructures_07.py -------------------------------------------------------------------------------- /Chapter01/datastructures_08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter01/datastructures_08.py -------------------------------------------------------------------------------- /Chapter02/text_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter02/text_01.py -------------------------------------------------------------------------------- /Chapter02/text_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter02/text_02.py -------------------------------------------------------------------------------- /Chapter02/text_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter02/text_03.py -------------------------------------------------------------------------------- /Chapter02/text_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter02/text_04.py -------------------------------------------------------------------------------- /Chapter02/text_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter02/text_05.py -------------------------------------------------------------------------------- /Chapter02/text_06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter02/text_06.py -------------------------------------------------------------------------------- /Chapter02/text_07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter02/text_07.py -------------------------------------------------------------------------------- /Chapter02/text_08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter02/text_08.py -------------------------------------------------------------------------------- /Chapter03/terminal_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter03/terminal_01.py -------------------------------------------------------------------------------- /Chapter03/terminal_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter03/terminal_02.py -------------------------------------------------------------------------------- /Chapter03/terminal_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter03/terminal_03.py -------------------------------------------------------------------------------- /Chapter03/terminal_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter03/terminal_04.py -------------------------------------------------------------------------------- /Chapter03/terminal_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter03/terminal_05.py -------------------------------------------------------------------------------- /Chapter03/terminal_06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter03/terminal_06.py -------------------------------------------------------------------------------- /Chapter03/terminal_07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter03/terminal_07.py -------------------------------------------------------------------------------- /Chapter03/terminal_08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter03/terminal_08.py -------------------------------------------------------------------------------- /Chapter03/terminal_09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter03/terminal_09.py -------------------------------------------------------------------------------- /Chapter03/terminal_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter03/terminal_10.py -------------------------------------------------------------------------------- /Chapter04/_build/pdf/PySTLCookbook.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/_build/pdf/PySTLCookbook.rtc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/_build/pdf/PySTLCookbook.stylelog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/filesdirs_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter04/filesdirs_01.py -------------------------------------------------------------------------------- /Chapter04/filesdirs_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter04/filesdirs_02.py -------------------------------------------------------------------------------- /Chapter04/filesdirs_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter04/filesdirs_03.py -------------------------------------------------------------------------------- /Chapter04/filesdirs_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter04/filesdirs_04.py -------------------------------------------------------------------------------- /Chapter04/filesdirs_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter04/filesdirs_05.py -------------------------------------------------------------------------------- /Chapter04/filesdirs_06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter04/filesdirs_06.py -------------------------------------------------------------------------------- /Chapter04/filesdirs_07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter04/filesdirs_07.py -------------------------------------------------------------------------------- /Chapter04/filesdirs_08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter04/filesdirs_08.py -------------------------------------------------------------------------------- /Chapter04/filesdirs_09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter04/filesdirs_09.py -------------------------------------------------------------------------------- /Chapter05/datetimes_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter05/datetimes_01.py -------------------------------------------------------------------------------- /Chapter05/datetimes_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter05/datetimes_02.py -------------------------------------------------------------------------------- /Chapter05/datetimes_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter05/datetimes_03.py -------------------------------------------------------------------------------- /Chapter05/datetimes_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter05/datetimes_04.py -------------------------------------------------------------------------------- /Chapter05/datetimes_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter05/datetimes_05.py -------------------------------------------------------------------------------- /Chapter05/datetimes_06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter05/datetimes_06.py -------------------------------------------------------------------------------- /Chapter05/datetimes_07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter05/datetimes_07.py -------------------------------------------------------------------------------- /Chapter05/datetimes_08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter05/datetimes_08.py -------------------------------------------------------------------------------- /Chapter05/datetimes_09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter05/datetimes_09.py -------------------------------------------------------------------------------- /Chapter05/datetimes_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter05/datetimes_10.py -------------------------------------------------------------------------------- /Chapter06/_build/doctrees/io.doctree: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/io_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter06/io_01.py -------------------------------------------------------------------------------- /Chapter06/io_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter06/io_02.py -------------------------------------------------------------------------------- /Chapter06/io_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter06/io_03.py -------------------------------------------------------------------------------- /Chapter06/io_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter06/io_04.py -------------------------------------------------------------------------------- /Chapter06/io_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter06/io_05.py -------------------------------------------------------------------------------- /Chapter06/io_06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter06/io_06.py -------------------------------------------------------------------------------- /Chapter06/io_07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter06/io_07.py -------------------------------------------------------------------------------- /Chapter06/io_08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter06/io_08.py -------------------------------------------------------------------------------- /Chapter06/io_09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter06/io_09.py -------------------------------------------------------------------------------- /Chapter06/io_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter06/io_10.py -------------------------------------------------------------------------------- /Chapter07/algorithms_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter07/algorithms_01.py -------------------------------------------------------------------------------- /Chapter07/algorithms_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter07/algorithms_02.py -------------------------------------------------------------------------------- /Chapter07/algorithms_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter07/algorithms_03.py -------------------------------------------------------------------------------- /Chapter07/algorithms_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter07/algorithms_04.py -------------------------------------------------------------------------------- /Chapter07/algorithms_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter07/algorithms_05.py -------------------------------------------------------------------------------- /Chapter07/algorithms_06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter07/algorithms_06.py -------------------------------------------------------------------------------- /Chapter07/algorithms_07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter07/algorithms_07.py -------------------------------------------------------------------------------- /Chapter07/algorithms_08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter07/algorithms_08.py -------------------------------------------------------------------------------- /Chapter07/algorithms_09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter07/algorithms_09.py -------------------------------------------------------------------------------- /Chapter07/algorithms_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter07/algorithms_10.py -------------------------------------------------------------------------------- /Chapter07/algorithms_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter07/algorithms_11.py -------------------------------------------------------------------------------- /Chapter07/algorithms_12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter07/algorithms_12.py -------------------------------------------------------------------------------- /Chapter07/algorithms_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter07/algorithms_13.py -------------------------------------------------------------------------------- /Chapter08/crypto_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter08/crypto_01.py -------------------------------------------------------------------------------- /Chapter08/crypto_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter08/crypto_02.py -------------------------------------------------------------------------------- /Chapter08/crypto_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter08/crypto_03.py -------------------------------------------------------------------------------- /Chapter08/crypto_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter08/crypto_04.py -------------------------------------------------------------------------------- /Chapter08/wrapt-1.10.11.tar.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/concurrency_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter09/concurrency_01.py -------------------------------------------------------------------------------- /Chapter09/concurrency_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter09/concurrency_02.py -------------------------------------------------------------------------------- /Chapter09/concurrency_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter09/concurrency_03.py -------------------------------------------------------------------------------- /Chapter09/concurrency_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter09/concurrency_04.py -------------------------------------------------------------------------------- /Chapter09/concurrency_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter09/concurrency_05.py -------------------------------------------------------------------------------- /Chapter09/concurrency_06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter09/concurrency_06.py -------------------------------------------------------------------------------- /Chapter10/networking_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter10/networking_01.py -------------------------------------------------------------------------------- /Chapter10/networking_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter10/networking_02.py -------------------------------------------------------------------------------- /Chapter10/networking_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter10/networking_03.py -------------------------------------------------------------------------------- /Chapter10/networking_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter10/networking_04.py -------------------------------------------------------------------------------- /Chapter10/networking_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter10/networking_05.py -------------------------------------------------------------------------------- /Chapter10/networking_06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter10/networking_06.py -------------------------------------------------------------------------------- /Chapter11/web_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter11/web_01.py -------------------------------------------------------------------------------- /Chapter11/web_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter11/web_02.py -------------------------------------------------------------------------------- /Chapter11/web_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter11/web_03.py -------------------------------------------------------------------------------- /Chapter11/web_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter11/web_04.py -------------------------------------------------------------------------------- /Chapter11/web_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter11/web_05.py -------------------------------------------------------------------------------- /Chapter11/web_06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter11/web_06.py -------------------------------------------------------------------------------- /Chapter11/web_07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter11/web_07.py -------------------------------------------------------------------------------- /Chapter11/web_08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter11/web_08.py -------------------------------------------------------------------------------- /Chapter11/web_09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter11/web_09.py -------------------------------------------------------------------------------- /Chapter11/web_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter11/web_10.py -------------------------------------------------------------------------------- /Chapter11/web_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter11/web_11.py -------------------------------------------------------------------------------- /Chapter12/multimedia_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter12/multimedia_01.py -------------------------------------------------------------------------------- /Chapter12/multimedia_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter12/multimedia_02.py -------------------------------------------------------------------------------- /Chapter12/multimedia_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter12/multimedia_03.py -------------------------------------------------------------------------------- /Chapter12/multimedia_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter12/multimedia_04.py -------------------------------------------------------------------------------- /Chapter13/gui_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter13/gui_01.py -------------------------------------------------------------------------------- /Chapter13/gui_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter13/gui_02.py -------------------------------------------------------------------------------- /Chapter13/gui_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter13/gui_03.py -------------------------------------------------------------------------------- /Chapter13/gui_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter13/gui_04.py -------------------------------------------------------------------------------- /Chapter13/gui_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter13/gui_05.py -------------------------------------------------------------------------------- /Chapter14/devtools_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter14/devtools_01.py -------------------------------------------------------------------------------- /Chapter14/devtools_02.py: -------------------------------------------------------------------------------- 1 | def divide(x, y): 2 | return x / y 3 | -------------------------------------------------------------------------------- /Chapter14/devtools_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter14/devtools_03.py -------------------------------------------------------------------------------- /Chapter14/devtools_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter14/devtools_04.py -------------------------------------------------------------------------------- /Chapter14/devtools_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter14/devtools_05.py -------------------------------------------------------------------------------- /Chapter14/devtools_06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter14/devtools_06.py -------------------------------------------------------------------------------- /Chapter14/devtools_07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter14/devtools_07.py -------------------------------------------------------------------------------- /Chapter14/devtools_08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter14/devtools_08.py -------------------------------------------------------------------------------- /Chapter14/devtools_09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter14/devtools_09.py -------------------------------------------------------------------------------- /Chapter14/test_devtools_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/Chapter14/test_devtools_02.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/README.md -------------------------------------------------------------------------------- /extract_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Standard-Library-Cookbook/HEAD/extract_code.py --------------------------------------------------------------------------------