├── .gitignore ├── Chapter_01 ├── National Weather Service Text Product Display.html ├── examples.txt ├── examples_network.txt └── some_file.txt ├── Chapter_02 ├── ch02_r09.txt └── examples.txt ├── Chapter_03 ├── __init__.py ├── ch03_r01.py ├── ch03_r02.py ├── ch03_r03.py ├── ch03_r04.py ├── ch03_r05.py ├── ch03_r06.py ├── ch03_r07.py ├── ch03_r08.py ├── ch03_r09.py ├── ch03_r10.py ├── ch03_r11.py └── examples.txt ├── Chapter_04 ├── __init__.py ├── ch04_r01.py ├── ch04_r02.py ├── ch04_r03.py ├── ch04_r04.py ├── ch04_r05.py ├── ch04_r06.py ├── ch04_r07.py ├── ch04_r08.py ├── ch04_r09.py └── examples.txt ├── Chapter_05 ├── ch05_r01.py ├── ch05_r02.py ├── ch05_r03.py ├── ch05_r04.py ├── ch05_r07.py └── examples.txt ├── Chapter_06 ├── __init__.py ├── ch06_r01.py ├── ch06_r02.py ├── ch06_r04.py ├── ch06_r05_dice.py ├── ch06_r05_roulette.py ├── ch06_r05_zonk.py ├── ch06_r06.py ├── examples.txt └── test_ch06_r04.py ├── Chapter_07 ├── __init__.py ├── ch07_r01.py ├── ch07_r02.py ├── ch07_r03.py ├── ch07_r04.py ├── ch07_r05.py ├── ch07_r06.py ├── ch07_r07.py ├── ch07_r09.py ├── ch07_r10.py ├── ch07_r11.py ├── ch07_r11a.py ├── ch07_r11b.py ├── ch07_r12.py └── examples.txt ├── Chapter_08 ├── __init__.py ├── ch08_r01.py ├── ch08_r02.py ├── ch08_r02_timing.py ├── ch08_r03.py ├── ch08_r04.py ├── ch08_r05.py ├── ch08_r06.py ├── ch08_r06_bug.py ├── ch08_r07.py ├── ch08_r08.py └── examples.txt ├── Chapter_09 ├── __init__.py ├── ch09_r01.py ├── ch09_r02.py ├── ch09_r03.py ├── ch09_r04.py ├── ch09_r05.py ├── ch09_r06.py ├── ch09_r07.py ├── ch09_r08.py ├── ch09_r09.py ├── ch09_r10.py └── examples.txt ├── Chapter_10 ├── __init__.py ├── ch10_a.py ├── ch10_b.py ├── ch10_r02.py ├── ch10_r03.py ├── ch10_r04.py ├── ch10_r05.py ├── ch10_r06.py ├── ch10_r07.py ├── ch10_r08.py ├── ch10_r09.py └── examples.txt ├── Chapter_11 ├── __init__.py ├── ch11_r01.py ├── ch11_r03.py ├── ch11_r08.py ├── ch11_r09.py ├── examples.txt ├── test_ch11_r04.py ├── test_ch11_r04_more.py ├── test_ch11_r06.py ├── test_ch11_r08.py ├── test_ch11_r08_ut.py ├── test_ch11_r09.py ├── test_ch11_r09_ut.py └── test_ch11_r10.py ├── Chapter_12 ├── __init__.py ├── card_model.py ├── ch12_r01.py ├── ch12_r02.py ├── ch12_r03.py ├── ch12_r04_client.py ├── ch12_r04_server.py ├── ch12_r05_client.py ├── ch12_r05_server.py ├── ch12_r06_client.py ├── ch12_r06_requests.py ├── ch12_r06_server.py ├── ch12_r06_user.py ├── ch12_wsgi.py ├── examples.txt ├── test_ch12_all_integration.py ├── test_ch12_r01.py ├── test_ch12_r02.py ├── test_ch12_r03.py ├── test_ch12_r04_client.py ├── test_ch12_r04_server.py ├── test_ch12_r05_client.py ├── test_ch12_r05_server.py ├── test_ch12_r06_client.py ├── test_ch12_r06_requests.py ├── test_ch12_r06_server.py └── test_ch12_wsgi.py ├── Chapter_13 ├── __init__.py ├── ch13_r01.py ├── ch13_r02.py ├── ch13_r03.py ├── ch13_r04.py ├── ch13_r05.py ├── ch13_r05a.py ├── ch13_r06.py ├── confirm_destination.py ├── examples.txt ├── settings.py ├── test_ch13_r01.py ├── test_ch13_r01_ut.py ├── test_ch13_r02.py ├── test_ch13_r03.py ├── test_ch13_r04.py ├── test_ch13_r05.py ├── test_ch13_r05_ut.py └── test_ch13_r06.py ├── Chapter_14 ├── __init__.py ├── ch14_r01.py ├── ch14_r02.py ├── ch14_r03.py ├── ch14_r04.py ├── ch14_r05.py ├── ch14_r06.py ├── examples.txt ├── test_ch14_r01.py ├── test_ch14_r02.py ├── test_ch14_r03.py ├── test_ch14_r04.py ├── test_ch14_r04_ut.py ├── test_ch14_r05.py └── test_ch14_r06.py ├── Chapter_15 ├── __init__.py ├── ch15_r01.py ├── ch15_r02.py ├── ch15_r03.py ├── ch15_r04.py ├── ch15_r05.py ├── ch15_r06.py ├── ch15_r07.py ├── ch15_r08.py ├── collect_biased.py ├── collector.py ├── collector_expected_values.py └── examples.txt ├── README.rst ├── anscome_json.py ├── cert.conf ├── data ├── Volvo Ocean Race.html ├── anscombe.json ├── ch07_r13.csv ├── ch07_r13.csv.bz2 ├── ch10_file1.yaml ├── ch10_file2.yaml ├── ch10_r10.log ├── ch12_r05_test.yaml ├── ch13_r05_test.yaml ├── co2_mm_mlo.txt ├── craps.csv ├── ex2_r12.csv ├── extra_detail.log ├── extract_20170704010203.json ├── fuel.csv ├── fuel.ods ├── fuel2.csv ├── game_0.yaml ├── game_1.yaml ├── output.csv ├── output.csv.old ├── quotient.csv ├── quotient.csv.old ├── race_result.json ├── race_result.xml ├── sample.csv ├── sample.log ├── some_file.txt ├── ssl.cert ├── ssl.key ├── sum.yaml ├── summary.dat ├── summary_log.csv ├── swagger.json ├── waypoints.csv ├── wc.csv ├── wc1.csv ├── write.log ├── x.yaml ├── x12.yaml ├── x13.yaml ├── y.yaml ├── y12.yaml └── y13.yaml ├── hint_game.py ├── html └── Chapter_04 │ └── ch04_r05.py.html ├── renamer.py ├── requirements.in ├── requirements.txt ├── route.csv ├── setup.sh ├── size.py ├── temp ├── anscombe_raw.csv ├── sample.csv └── some_file.txt └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter_01/National Weather Service Text Product Display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_01/National Weather Service Text Product Display.html -------------------------------------------------------------------------------- /Chapter_01/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_01/examples.txt -------------------------------------------------------------------------------- /Chapter_01/examples_network.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_01/examples_network.txt -------------------------------------------------------------------------------- /Chapter_01/some_file.txt: -------------------------------------------------------------------------------- 1 | You drew 🀀 2 | -------------------------------------------------------------------------------- /Chapter_02/ch02_r09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_02/ch02_r09.txt -------------------------------------------------------------------------------- /Chapter_02/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_02/examples.txt -------------------------------------------------------------------------------- /Chapter_03/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter_03/ch03_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_03/ch03_r01.py -------------------------------------------------------------------------------- /Chapter_03/ch03_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_03/ch03_r02.py -------------------------------------------------------------------------------- /Chapter_03/ch03_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_03/ch03_r03.py -------------------------------------------------------------------------------- /Chapter_03/ch03_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_03/ch03_r04.py -------------------------------------------------------------------------------- /Chapter_03/ch03_r05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_03/ch03_r05.py -------------------------------------------------------------------------------- /Chapter_03/ch03_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_03/ch03_r06.py -------------------------------------------------------------------------------- /Chapter_03/ch03_r07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_03/ch03_r07.py -------------------------------------------------------------------------------- /Chapter_03/ch03_r08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_03/ch03_r08.py -------------------------------------------------------------------------------- /Chapter_03/ch03_r09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_03/ch03_r09.py -------------------------------------------------------------------------------- /Chapter_03/ch03_r10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_03/ch03_r10.py -------------------------------------------------------------------------------- /Chapter_03/ch03_r11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_03/ch03_r11.py -------------------------------------------------------------------------------- /Chapter_03/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_03/examples.txt -------------------------------------------------------------------------------- /Chapter_04/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter_04/ch04_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_04/ch04_r01.py -------------------------------------------------------------------------------- /Chapter_04/ch04_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_04/ch04_r02.py -------------------------------------------------------------------------------- /Chapter_04/ch04_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_04/ch04_r03.py -------------------------------------------------------------------------------- /Chapter_04/ch04_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_04/ch04_r04.py -------------------------------------------------------------------------------- /Chapter_04/ch04_r05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_04/ch04_r05.py -------------------------------------------------------------------------------- /Chapter_04/ch04_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_04/ch04_r06.py -------------------------------------------------------------------------------- /Chapter_04/ch04_r07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_04/ch04_r07.py -------------------------------------------------------------------------------- /Chapter_04/ch04_r08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_04/ch04_r08.py -------------------------------------------------------------------------------- /Chapter_04/ch04_r09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_04/ch04_r09.py -------------------------------------------------------------------------------- /Chapter_04/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_04/examples.txt -------------------------------------------------------------------------------- /Chapter_05/ch05_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_05/ch05_r01.py -------------------------------------------------------------------------------- /Chapter_05/ch05_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_05/ch05_r02.py -------------------------------------------------------------------------------- /Chapter_05/ch05_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_05/ch05_r03.py -------------------------------------------------------------------------------- /Chapter_05/ch05_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_05/ch05_r04.py -------------------------------------------------------------------------------- /Chapter_05/ch05_r07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_05/ch05_r07.py -------------------------------------------------------------------------------- /Chapter_05/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_05/examples.txt -------------------------------------------------------------------------------- /Chapter_06/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter_06/ch06_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_06/ch06_r01.py -------------------------------------------------------------------------------- /Chapter_06/ch06_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_06/ch06_r02.py -------------------------------------------------------------------------------- /Chapter_06/ch06_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_06/ch06_r04.py -------------------------------------------------------------------------------- /Chapter_06/ch06_r05_dice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_06/ch06_r05_dice.py -------------------------------------------------------------------------------- /Chapter_06/ch06_r05_roulette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_06/ch06_r05_roulette.py -------------------------------------------------------------------------------- /Chapter_06/ch06_r05_zonk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_06/ch06_r05_zonk.py -------------------------------------------------------------------------------- /Chapter_06/ch06_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_06/ch06_r06.py -------------------------------------------------------------------------------- /Chapter_06/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_06/examples.txt -------------------------------------------------------------------------------- /Chapter_06/test_ch06_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_06/test_ch06_r04.py -------------------------------------------------------------------------------- /Chapter_07/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter_07/ch07_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_07/ch07_r01.py -------------------------------------------------------------------------------- /Chapter_07/ch07_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_07/ch07_r02.py -------------------------------------------------------------------------------- /Chapter_07/ch07_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_07/ch07_r03.py -------------------------------------------------------------------------------- /Chapter_07/ch07_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_07/ch07_r04.py -------------------------------------------------------------------------------- /Chapter_07/ch07_r05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_07/ch07_r05.py -------------------------------------------------------------------------------- /Chapter_07/ch07_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_07/ch07_r06.py -------------------------------------------------------------------------------- /Chapter_07/ch07_r07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_07/ch07_r07.py -------------------------------------------------------------------------------- /Chapter_07/ch07_r09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_07/ch07_r09.py -------------------------------------------------------------------------------- /Chapter_07/ch07_r10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_07/ch07_r10.py -------------------------------------------------------------------------------- /Chapter_07/ch07_r11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_07/ch07_r11.py -------------------------------------------------------------------------------- /Chapter_07/ch07_r11a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_07/ch07_r11a.py -------------------------------------------------------------------------------- /Chapter_07/ch07_r11b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_07/ch07_r11b.py -------------------------------------------------------------------------------- /Chapter_07/ch07_r12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_07/ch07_r12.py -------------------------------------------------------------------------------- /Chapter_07/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_07/examples.txt -------------------------------------------------------------------------------- /Chapter_08/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter_08/ch08_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_08/ch08_r01.py -------------------------------------------------------------------------------- /Chapter_08/ch08_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_08/ch08_r02.py -------------------------------------------------------------------------------- /Chapter_08/ch08_r02_timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_08/ch08_r02_timing.py -------------------------------------------------------------------------------- /Chapter_08/ch08_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_08/ch08_r03.py -------------------------------------------------------------------------------- /Chapter_08/ch08_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_08/ch08_r04.py -------------------------------------------------------------------------------- /Chapter_08/ch08_r05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_08/ch08_r05.py -------------------------------------------------------------------------------- /Chapter_08/ch08_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_08/ch08_r06.py -------------------------------------------------------------------------------- /Chapter_08/ch08_r06_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_08/ch08_r06_bug.py -------------------------------------------------------------------------------- /Chapter_08/ch08_r07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_08/ch08_r07.py -------------------------------------------------------------------------------- /Chapter_08/ch08_r08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_08/ch08_r08.py -------------------------------------------------------------------------------- /Chapter_08/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_08/examples.txt -------------------------------------------------------------------------------- /Chapter_09/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter_09/ch09_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_09/ch09_r01.py -------------------------------------------------------------------------------- /Chapter_09/ch09_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_09/ch09_r02.py -------------------------------------------------------------------------------- /Chapter_09/ch09_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_09/ch09_r03.py -------------------------------------------------------------------------------- /Chapter_09/ch09_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_09/ch09_r04.py -------------------------------------------------------------------------------- /Chapter_09/ch09_r05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_09/ch09_r05.py -------------------------------------------------------------------------------- /Chapter_09/ch09_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_09/ch09_r06.py -------------------------------------------------------------------------------- /Chapter_09/ch09_r07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_09/ch09_r07.py -------------------------------------------------------------------------------- /Chapter_09/ch09_r08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_09/ch09_r08.py -------------------------------------------------------------------------------- /Chapter_09/ch09_r09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_09/ch09_r09.py -------------------------------------------------------------------------------- /Chapter_09/ch09_r10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_09/ch09_r10.py -------------------------------------------------------------------------------- /Chapter_09/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_09/examples.txt -------------------------------------------------------------------------------- /Chapter_10/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter_10/ch10_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_10/ch10_a.py -------------------------------------------------------------------------------- /Chapter_10/ch10_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_10/ch10_b.py -------------------------------------------------------------------------------- /Chapter_10/ch10_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_10/ch10_r02.py -------------------------------------------------------------------------------- /Chapter_10/ch10_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_10/ch10_r03.py -------------------------------------------------------------------------------- /Chapter_10/ch10_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_10/ch10_r04.py -------------------------------------------------------------------------------- /Chapter_10/ch10_r05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_10/ch10_r05.py -------------------------------------------------------------------------------- /Chapter_10/ch10_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_10/ch10_r06.py -------------------------------------------------------------------------------- /Chapter_10/ch10_r07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_10/ch10_r07.py -------------------------------------------------------------------------------- /Chapter_10/ch10_r08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_10/ch10_r08.py -------------------------------------------------------------------------------- /Chapter_10/ch10_r09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_10/ch10_r09.py -------------------------------------------------------------------------------- /Chapter_10/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_10/examples.txt -------------------------------------------------------------------------------- /Chapter_11/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter_11/ch11_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_11/ch11_r01.py -------------------------------------------------------------------------------- /Chapter_11/ch11_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_11/ch11_r03.py -------------------------------------------------------------------------------- /Chapter_11/ch11_r08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_11/ch11_r08.py -------------------------------------------------------------------------------- /Chapter_11/ch11_r09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_11/ch11_r09.py -------------------------------------------------------------------------------- /Chapter_11/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_11/examples.txt -------------------------------------------------------------------------------- /Chapter_11/test_ch11_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_11/test_ch11_r04.py -------------------------------------------------------------------------------- /Chapter_11/test_ch11_r04_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_11/test_ch11_r04_more.py -------------------------------------------------------------------------------- /Chapter_11/test_ch11_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_11/test_ch11_r06.py -------------------------------------------------------------------------------- /Chapter_11/test_ch11_r08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_11/test_ch11_r08.py -------------------------------------------------------------------------------- /Chapter_11/test_ch11_r08_ut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_11/test_ch11_r08_ut.py -------------------------------------------------------------------------------- /Chapter_11/test_ch11_r09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_11/test_ch11_r09.py -------------------------------------------------------------------------------- /Chapter_11/test_ch11_r09_ut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_11/test_ch11_r09_ut.py -------------------------------------------------------------------------------- /Chapter_11/test_ch11_r10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_11/test_ch11_r10.py -------------------------------------------------------------------------------- /Chapter_12/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter_12/card_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/card_model.py -------------------------------------------------------------------------------- /Chapter_12/ch12_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/ch12_r01.py -------------------------------------------------------------------------------- /Chapter_12/ch12_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/ch12_r02.py -------------------------------------------------------------------------------- /Chapter_12/ch12_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/ch12_r03.py -------------------------------------------------------------------------------- /Chapter_12/ch12_r04_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/ch12_r04_client.py -------------------------------------------------------------------------------- /Chapter_12/ch12_r04_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/ch12_r04_server.py -------------------------------------------------------------------------------- /Chapter_12/ch12_r05_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/ch12_r05_client.py -------------------------------------------------------------------------------- /Chapter_12/ch12_r05_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/ch12_r05_server.py -------------------------------------------------------------------------------- /Chapter_12/ch12_r06_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/ch12_r06_client.py -------------------------------------------------------------------------------- /Chapter_12/ch12_r06_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/ch12_r06_requests.py -------------------------------------------------------------------------------- /Chapter_12/ch12_r06_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/ch12_r06_server.py -------------------------------------------------------------------------------- /Chapter_12/ch12_r06_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/ch12_r06_user.py -------------------------------------------------------------------------------- /Chapter_12/ch12_wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/ch12_wsgi.py -------------------------------------------------------------------------------- /Chapter_12/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/examples.txt -------------------------------------------------------------------------------- /Chapter_12/test_ch12_all_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/test_ch12_all_integration.py -------------------------------------------------------------------------------- /Chapter_12/test_ch12_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/test_ch12_r01.py -------------------------------------------------------------------------------- /Chapter_12/test_ch12_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/test_ch12_r02.py -------------------------------------------------------------------------------- /Chapter_12/test_ch12_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/test_ch12_r03.py -------------------------------------------------------------------------------- /Chapter_12/test_ch12_r04_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/test_ch12_r04_client.py -------------------------------------------------------------------------------- /Chapter_12/test_ch12_r04_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/test_ch12_r04_server.py -------------------------------------------------------------------------------- /Chapter_12/test_ch12_r05_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/test_ch12_r05_client.py -------------------------------------------------------------------------------- /Chapter_12/test_ch12_r05_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/test_ch12_r05_server.py -------------------------------------------------------------------------------- /Chapter_12/test_ch12_r06_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/test_ch12_r06_client.py -------------------------------------------------------------------------------- /Chapter_12/test_ch12_r06_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/test_ch12_r06_requests.py -------------------------------------------------------------------------------- /Chapter_12/test_ch12_r06_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/test_ch12_r06_server.py -------------------------------------------------------------------------------- /Chapter_12/test_ch12_wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_12/test_ch12_wsgi.py -------------------------------------------------------------------------------- /Chapter_13/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter_13/ch13_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_13/ch13_r01.py -------------------------------------------------------------------------------- /Chapter_13/ch13_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_13/ch13_r02.py -------------------------------------------------------------------------------- /Chapter_13/ch13_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_13/ch13_r03.py -------------------------------------------------------------------------------- /Chapter_13/ch13_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_13/ch13_r04.py -------------------------------------------------------------------------------- /Chapter_13/ch13_r05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_13/ch13_r05.py -------------------------------------------------------------------------------- /Chapter_13/ch13_r05a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_13/ch13_r05a.py -------------------------------------------------------------------------------- /Chapter_13/ch13_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_13/ch13_r06.py -------------------------------------------------------------------------------- /Chapter_13/confirm_destination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_13/confirm_destination.py -------------------------------------------------------------------------------- /Chapter_13/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_13/examples.txt -------------------------------------------------------------------------------- /Chapter_13/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_13/settings.py -------------------------------------------------------------------------------- /Chapter_13/test_ch13_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_13/test_ch13_r01.py -------------------------------------------------------------------------------- /Chapter_13/test_ch13_r01_ut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_13/test_ch13_r01_ut.py -------------------------------------------------------------------------------- /Chapter_13/test_ch13_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_13/test_ch13_r02.py -------------------------------------------------------------------------------- /Chapter_13/test_ch13_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_13/test_ch13_r03.py -------------------------------------------------------------------------------- /Chapter_13/test_ch13_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_13/test_ch13_r04.py -------------------------------------------------------------------------------- /Chapter_13/test_ch13_r05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_13/test_ch13_r05.py -------------------------------------------------------------------------------- /Chapter_13/test_ch13_r05_ut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_13/test_ch13_r05_ut.py -------------------------------------------------------------------------------- /Chapter_13/test_ch13_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_13/test_ch13_r06.py -------------------------------------------------------------------------------- /Chapter_14/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter_14/ch14_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_14/ch14_r01.py -------------------------------------------------------------------------------- /Chapter_14/ch14_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_14/ch14_r02.py -------------------------------------------------------------------------------- /Chapter_14/ch14_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_14/ch14_r03.py -------------------------------------------------------------------------------- /Chapter_14/ch14_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_14/ch14_r04.py -------------------------------------------------------------------------------- /Chapter_14/ch14_r05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_14/ch14_r05.py -------------------------------------------------------------------------------- /Chapter_14/ch14_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_14/ch14_r06.py -------------------------------------------------------------------------------- /Chapter_14/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_14/examples.txt -------------------------------------------------------------------------------- /Chapter_14/test_ch14_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_14/test_ch14_r01.py -------------------------------------------------------------------------------- /Chapter_14/test_ch14_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_14/test_ch14_r02.py -------------------------------------------------------------------------------- /Chapter_14/test_ch14_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_14/test_ch14_r03.py -------------------------------------------------------------------------------- /Chapter_14/test_ch14_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_14/test_ch14_r04.py -------------------------------------------------------------------------------- /Chapter_14/test_ch14_r04_ut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_14/test_ch14_r04_ut.py -------------------------------------------------------------------------------- /Chapter_14/test_ch14_r05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_14/test_ch14_r05.py -------------------------------------------------------------------------------- /Chapter_14/test_ch14_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_14/test_ch14_r06.py -------------------------------------------------------------------------------- /Chapter_15/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter_15/ch15_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_15/ch15_r01.py -------------------------------------------------------------------------------- /Chapter_15/ch15_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_15/ch15_r02.py -------------------------------------------------------------------------------- /Chapter_15/ch15_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_15/ch15_r03.py -------------------------------------------------------------------------------- /Chapter_15/ch15_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_15/ch15_r04.py -------------------------------------------------------------------------------- /Chapter_15/ch15_r05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_15/ch15_r05.py -------------------------------------------------------------------------------- /Chapter_15/ch15_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_15/ch15_r06.py -------------------------------------------------------------------------------- /Chapter_15/ch15_r07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_15/ch15_r07.py -------------------------------------------------------------------------------- /Chapter_15/ch15_r08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_15/ch15_r08.py -------------------------------------------------------------------------------- /Chapter_15/collect_biased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_15/collect_biased.py -------------------------------------------------------------------------------- /Chapter_15/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_15/collector.py -------------------------------------------------------------------------------- /Chapter_15/collector_expected_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_15/collector_expected_values.py -------------------------------------------------------------------------------- /Chapter_15/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/Chapter_15/examples.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/README.rst -------------------------------------------------------------------------------- /anscome_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/anscome_json.py -------------------------------------------------------------------------------- /cert.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/cert.conf -------------------------------------------------------------------------------- /data/Volvo Ocean Race.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/Volvo Ocean Race.html -------------------------------------------------------------------------------- /data/anscombe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/anscombe.json -------------------------------------------------------------------------------- /data/ch07_r13.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/ch07_r13.csv -------------------------------------------------------------------------------- /data/ch07_r13.csv.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/ch07_r13.csv.bz2 -------------------------------------------------------------------------------- /data/ch10_file1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/ch10_file1.yaml -------------------------------------------------------------------------------- /data/ch10_file2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/ch10_file2.yaml -------------------------------------------------------------------------------- /data/ch10_r10.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/ch10_r10.log -------------------------------------------------------------------------------- /data/ch12_r05_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/ch12_r05_test.yaml -------------------------------------------------------------------------------- /data/ch13_r05_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/ch13_r05_test.yaml -------------------------------------------------------------------------------- /data/co2_mm_mlo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/co2_mm_mlo.txt -------------------------------------------------------------------------------- /data/craps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/craps.csv -------------------------------------------------------------------------------- /data/ex2_r12.csv: -------------------------------------------------------------------------------- 1 | column,data,heading 2 | 2,3,5 3 | -------------------------------------------------------------------------------- /data/extra_detail.log: -------------------------------------------------------------------------------- 1 | Some detailed output 2 | -------------------------------------------------------------------------------- /data/extract_20170704010203.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/extract_20170704010203.json -------------------------------------------------------------------------------- /data/fuel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/fuel.csv -------------------------------------------------------------------------------- /data/fuel.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/fuel.ods -------------------------------------------------------------------------------- /data/fuel2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/fuel2.csv -------------------------------------------------------------------------------- /data/game_0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/game_0.yaml -------------------------------------------------------------------------------- /data/game_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/game_1.yaml -------------------------------------------------------------------------------- /data/output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/output.csv -------------------------------------------------------------------------------- /data/output.csv.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/output.csv.old -------------------------------------------------------------------------------- /data/quotient.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/quotient.csv -------------------------------------------------------------------------------- /data/quotient.csv.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/quotient.csv.old -------------------------------------------------------------------------------- /data/race_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/race_result.json -------------------------------------------------------------------------------- /data/race_result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/race_result.xml -------------------------------------------------------------------------------- /data/sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/sample.csv -------------------------------------------------------------------------------- /data/sample.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/sample.log -------------------------------------------------------------------------------- /data/some_file.txt: -------------------------------------------------------------------------------- 1 | You drew 🀀 2 | -------------------------------------------------------------------------------- /data/ssl.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/ssl.cert -------------------------------------------------------------------------------- /data/ssl.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/ssl.key -------------------------------------------------------------------------------- /data/sum.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/sum.yaml -------------------------------------------------------------------------------- /data/summary.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/summary.dat -------------------------------------------------------------------------------- /data/summary_log.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/summary_log.csv -------------------------------------------------------------------------------- /data/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/swagger.json -------------------------------------------------------------------------------- /data/waypoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/waypoints.csv -------------------------------------------------------------------------------- /data/wc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/wc.csv -------------------------------------------------------------------------------- /data/wc1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/wc1.csv -------------------------------------------------------------------------------- /data/write.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/write.log -------------------------------------------------------------------------------- /data/x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/x.yaml -------------------------------------------------------------------------------- /data/x12.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/x12.yaml -------------------------------------------------------------------------------- /data/x13.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/x13.yaml -------------------------------------------------------------------------------- /data/y.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/y.yaml -------------------------------------------------------------------------------- /data/y12.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/y12.yaml -------------------------------------------------------------------------------- /data/y13.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/data/y13.yaml -------------------------------------------------------------------------------- /hint_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/hint_game.py -------------------------------------------------------------------------------- /html/Chapter_04/ch04_r05.py.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/html/Chapter_04/ch04_r05.py.html -------------------------------------------------------------------------------- /renamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/renamer.py -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/requirements.txt -------------------------------------------------------------------------------- /route.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- 1 | export CH10_API_KEY=8160ecb2-c731-482f-adaf-eb3bd89b95b7 2 | -------------------------------------------------------------------------------- /size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/size.py -------------------------------------------------------------------------------- /temp/anscombe_raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/temp/anscombe_raw.csv -------------------------------------------------------------------------------- /temp/sample.csv: -------------------------------------------------------------------------------- 1 | date,level,module,message 2 | -------------------------------------------------------------------------------- /temp/some_file.txt: -------------------------------------------------------------------------------- 1 | You drew 🀀 2 | -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook-Second-Edition/HEAD/tox.ini --------------------------------------------------------------------------------