├── .gitattributes ├── .gitignore ├── Chapter 02 ├── _pycache_ │ ├── ch02_r09.cpython-35-PYTEST.pyc │ └── ch02_r09.cpython-35.pyc └── ch02_r09.py ├── Chapter 03 ├── _pycache_ │ ├── ch03_r04.cpython-35-PYTEST.pyc │ ├── ch03_r04.cpython-35.pyc │ ├── ch03_r05.cpython-34.pyc │ ├── ch03_r05.cpython-35-PYTEST.pyc │ ├── ch03_r05.cpython-35.pyc │ ├── ch03_r06.cpython-35-PYTEST.pyc │ ├── ch03_r06.cpython-35.pyc │ ├── ch03_r07.cpython-34.pyc │ ├── ch03_r07.cpython-35-PYTEST.pyc │ ├── ch03_r07.cpython-35.pyc │ ├── ch03_r08.cpython-35-PYTEST.pyc │ └── ch03_r08.cpython-35.pyc ├── ch03_r04.py ├── ch03_r05.py ├── ch03_r06.py ├── ch03_r07.py └── ch03_r08.py ├── Chapter 04 ├── _pycache_ │ ├── ch04_r03.cpython-35-PYTEST.pyc │ ├── ch04_r03.cpython-35.pyc │ ├── ch04_r06.cpython-34.pyc │ ├── ch04_r06.cpython-35-PYTEST.pyc │ ├── ch04_r06.cpython-35.pyc │ ├── ch04_r08.cpython-35-PYTEST.pyc │ └── ch04_r08.cpython-35.pyc ├── ch04_r03.py ├── ch04_r06.py └── ch04_r08.py ├── Chapter 05 ├── _pycache_ │ ├── ch05_r02.cpython-35-PYTEST.pyc │ ├── ch05_r02.cpython-35.pyc │ ├── ch05_r04.cpython-34.pyc │ ├── ch05_r04.cpython-35.pyc │ ├── ch05_r05.cpython-35.pyc │ ├── ch05_r05_py.cpython-35.pyc │ └── ch05_r06.cpython-35.pyc ├── ch05_r02.py ├── ch05_r04.py ├── ch05_r05.py ├── ch05_r05_py.py └── ch05_r06.py ├── Chapter 06 ├── _pycache_ │ ├── ch06_r01.cpython-34.pyc │ ├── ch06_r01.cpython-35.pyc │ ├── ch06_r02.cpython-34.pyc │ ├── ch06_r02.cpython-35.pyc │ ├── ch06_r04.cpython-34.pyc │ ├── ch06_r04.cpython-35.pyc │ ├── ch06_r06.cpython-34.pyc │ ├── ch06_r06.cpython-35.pyc │ ├── ch06_r07.cpython-34.pyc │ ├── ch06_r07.cpython-35.pyc │ ├── ch06_r08.cpython-34.pyc │ └── ch06_r08.cpython-35.pyc ├── ch06_r01.py ├── ch06_r02.py ├── ch06_r04.py ├── ch06_r06.py ├── ch06_r07.py └── ch06_r08.py ├── Chapter 07 ├── _pycache_ │ ├── ch07_r01.cpython-34.pyc │ ├── ch07_r01.cpython-35.pyc │ ├── ch07_r02.cpython-35.pyc │ ├── ch07_r02_timing.cpython-35.pyc │ ├── ch07_r03.cpython-35.pyc │ ├── ch07_r04.cpython-35.pyc │ ├── ch07_r05.cpython-35.pyc │ ├── ch07_r06a.cpython-35.pyc │ ├── ch07_r06b.cpython-35.pyc │ └── ch07_r07.cpython-35.pyc ├── ch07_r01.py ├── ch07_r02.py ├── ch07_r02_timing.py ├── ch07_r03.py ├── ch07_r04.py ├── ch07_r05.py ├── ch07_r06a.py ├── ch07_r06b.py └── ch07_r07.py ├── Chapter 08 ├── _pycache_ │ ├── ch08_r01.cpython-35.pyc │ ├── ch08_r02.cpython-35.pyc │ ├── ch08_r06.cpython-35.pyc │ ├── ch08_r07.cpython-35.pyc │ ├── ch08_r08.cpython-35.pyc │ ├── ch08_r09.cpython-35.pyc │ └── ch08_r10.cpython-35.pyc ├── ch08_r01.py ├── ch08_r02.py ├── ch08_r06.py ├── ch08_r07.py ├── ch08_r08.py ├── ch08_r09.py └── ch08_r10.py ├── Chapter 09 ├── _pycache_ │ ├── ch09_r01a.cpython-35.pyc │ ├── ch09_r02.cpython-35.pyc │ ├── ch09_r03.cpython-35.pyc │ ├── ch09_r06.cpython-35.pyc │ ├── ch09_r07.cpython-35.pyc │ ├── ch09_r08.cpython-35.pyc │ └── ch09_r10.cpython-35.pyc ├── ch09_r01a.py ├── ch09_r02.py ├── ch09_r03.py ├── ch09_r06.py ├── ch09_r07.py ├── ch09_r08.py └── ch09_r10.py ├── Chapter 10 ├── _pycache_ │ ├── ch10_r01.cpython-35.pyc │ ├── ch10_r03.cpython-35.pyc │ ├── ch10_r04.cpython-35.pyc │ ├── ch10_r05.cpython-35.pyc │ ├── ch10_r06.cpython-35.pyc │ ├── ch10_r07.cpython-35.pyc │ └── ch10_r08.cpython-35.pyc ├── ch10_r01.py ├── ch10_r03.py ├── ch10_r04.py ├── ch10_r05.py ├── ch10_r06.py ├── ch10_r07.py └── ch10_r08.py ├── Chapter 11 ├── _pycache_ │ ├── ch11_r01.cpython-35.pyc │ ├── ch11_r03.cpython-35.pyc │ ├── ch11_r04.cpython-35.pyc │ ├── ch11_r06.cpython-35.pyc │ ├── ch11_r07.cpython-35.pyc │ ├── ch11_r08.cpython-35.pyc │ ├── ch11_r08_load.cpython-35.pyc │ ├── ch11_r08_spike.cpython-35.pyc │ └── ch11_r08_test.cpython-35.pyc ├── ch11_r01.py ├── ch11_r03.py ├── ch11_r04.py ├── ch11_r06.py ├── ch11_r07.py ├── ch11_r08_load.py ├── ch11_r08_spike.py └── ch11_r08_test.py ├── Chapter 12 ├── _pycache_ │ ├── ch12_r01.cpython-35.pyc │ ├── ch12_r02.cpython-35.pyc │ ├── ch12_r03.cpython-35.pyc │ ├── ch12_r04.cpython-35.pyc │ ├── ch12_r05_client.cpython-35.pyc │ ├── ch12_r05_server.cpython-35.pyc │ ├── ch12_r06_client.cpython-35.pyc │ ├── ch12_r06_server.cpython-35.pyc │ ├── ch12_r07_client.cpython-35.pyc │ ├── ch12_r07_server.cpython-35.pyc │ └── ch12_r07_user.cpython-35.pyc ├── ch12_r01.py ├── ch12_r02.py ├── ch12_r03.py ├── ch12_r04.py ├── ch12_r05_client.py ├── ch12_r05_server.py ├── ch12_r06_client.py ├── ch12_r06_server.py ├── ch12_r07_client.py ├── ch12_r07_server.py └── ch12_r07_user.py ├── Chapter 13 ├── _pycache_ │ ├── ch13_r01.cpython-35.pyc │ ├── ch13_r02.cpython-35.pyc │ ├── ch13_r03.cpython-35.pyc │ ├── ch13_r04.cpython-35.pyc │ ├── ch13_r05.cpython-35.pyc │ ├── ch13_r06.cpython-35.pyc │ ├── ch13_r07.cpython-35.pyc │ ├── ch13_r08.cpython-35.pyc │ ├── ch13_r09.cpython-35.pyc │ ├── ch13_r10.cpython-35.pyc │ ├── ch13_r11.cpython-35.pyc │ └── ch13_r12.cpython-35.pyc ├── ch13_r01.py ├── ch13_r02.py ├── ch13_r03.py ├── ch13_r04.py ├── ch13_r05.py ├── ch13_r05_test.yaml ├── ch13_r06.py ├── ch13_r07.py ├── ch13_r08.py ├── ch13_r09.py ├── ch13_r10.py ├── ch13_r11.py └── ch13_r12.py ├── Code ├── .cache │ └── v │ │ └── cache │ │ └── lastfailed ├── Volvo Ocean Race.html ├── co2_mm_mlo.txt ├── coupon_collector.py ├── craps.csv ├── extract_20170704010203.json ├── fuel.csv ├── fuel.ods ├── fuel2.csv ├── game_0.yaml ├── game_1.yaml ├── hint_game.py ├── output.csv ├── output.csv.old ├── race_result.json ├── race_result.xml ├── sample.csv ├── sample.log ├── settings.py ├── ssl.cert ├── ssl.key ├── sum.yaml ├── summary.dat ├── summary_log.csv ├── swagger.json ├── test.csv ├── test_all.py ├── waypoints.csv ├── wc.csv ├── write.log ├── x.yaml ├── x12.yaml ├── y.yaml └── y12.yaml ├── LICENSE ├── README.md ├── Support files ├── __init__.py ├── anscombe.json ├── anscombe_raw.csv └── anscome_json.py └── __pycache__ ├── __init__.cpython-34.pyc ├── __init__.cpython-35.pyc ├── anscome_json.cpython-35-PYTEST.pyc ├── anscome_json.cpython-35.pyc ├── coupon_collector.cpython-35.pyc ├── hint_game.cpython-35.pyc ├── settings.cpython-34.pyc ├── settings.cpython-35.pyc └── test_all.cpython-35.pyc /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter 02/_pycache_/ch02_r09.cpython-35-PYTEST.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 02/_pycache_/ch02_r09.cpython-35-PYTEST.pyc -------------------------------------------------------------------------------- /Chapter 02/_pycache_/ch02_r09.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 02/_pycache_/ch02_r09.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 02/ch02_r09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 02/ch02_r09.py -------------------------------------------------------------------------------- /Chapter 03/_pycache_/ch03_r04.cpython-35-PYTEST.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 03/_pycache_/ch03_r04.cpython-35-PYTEST.pyc -------------------------------------------------------------------------------- /Chapter 03/_pycache_/ch03_r04.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 03/_pycache_/ch03_r04.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 03/_pycache_/ch03_r05.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 03/_pycache_/ch03_r05.cpython-34.pyc -------------------------------------------------------------------------------- /Chapter 03/_pycache_/ch03_r05.cpython-35-PYTEST.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 03/_pycache_/ch03_r05.cpython-35-PYTEST.pyc -------------------------------------------------------------------------------- /Chapter 03/_pycache_/ch03_r05.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 03/_pycache_/ch03_r05.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 03/_pycache_/ch03_r06.cpython-35-PYTEST.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 03/_pycache_/ch03_r06.cpython-35-PYTEST.pyc -------------------------------------------------------------------------------- /Chapter 03/_pycache_/ch03_r06.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 03/_pycache_/ch03_r06.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 03/_pycache_/ch03_r07.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 03/_pycache_/ch03_r07.cpython-34.pyc -------------------------------------------------------------------------------- /Chapter 03/_pycache_/ch03_r07.cpython-35-PYTEST.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 03/_pycache_/ch03_r07.cpython-35-PYTEST.pyc -------------------------------------------------------------------------------- /Chapter 03/_pycache_/ch03_r07.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 03/_pycache_/ch03_r07.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 03/_pycache_/ch03_r08.cpython-35-PYTEST.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 03/_pycache_/ch03_r08.cpython-35-PYTEST.pyc -------------------------------------------------------------------------------- /Chapter 03/_pycache_/ch03_r08.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 03/_pycache_/ch03_r08.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 03/ch03_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 03/ch03_r04.py -------------------------------------------------------------------------------- /Chapter 03/ch03_r05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 03/ch03_r05.py -------------------------------------------------------------------------------- /Chapter 03/ch03_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 03/ch03_r06.py -------------------------------------------------------------------------------- /Chapter 03/ch03_r07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 03/ch03_r07.py -------------------------------------------------------------------------------- /Chapter 03/ch03_r08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 03/ch03_r08.py -------------------------------------------------------------------------------- /Chapter 04/_pycache_/ch04_r03.cpython-35-PYTEST.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 04/_pycache_/ch04_r03.cpython-35-PYTEST.pyc -------------------------------------------------------------------------------- /Chapter 04/_pycache_/ch04_r03.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 04/_pycache_/ch04_r03.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 04/_pycache_/ch04_r06.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 04/_pycache_/ch04_r06.cpython-34.pyc -------------------------------------------------------------------------------- /Chapter 04/_pycache_/ch04_r06.cpython-35-PYTEST.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 04/_pycache_/ch04_r06.cpython-35-PYTEST.pyc -------------------------------------------------------------------------------- /Chapter 04/_pycache_/ch04_r06.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 04/_pycache_/ch04_r06.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 04/_pycache_/ch04_r08.cpython-35-PYTEST.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 04/_pycache_/ch04_r08.cpython-35-PYTEST.pyc -------------------------------------------------------------------------------- /Chapter 04/_pycache_/ch04_r08.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 04/_pycache_/ch04_r08.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 04/ch04_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 04/ch04_r03.py -------------------------------------------------------------------------------- /Chapter 04/ch04_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 04/ch04_r06.py -------------------------------------------------------------------------------- /Chapter 04/ch04_r08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 04/ch04_r08.py -------------------------------------------------------------------------------- /Chapter 05/_pycache_/ch05_r02.cpython-35-PYTEST.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 05/_pycache_/ch05_r02.cpython-35-PYTEST.pyc -------------------------------------------------------------------------------- /Chapter 05/_pycache_/ch05_r02.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 05/_pycache_/ch05_r02.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 05/_pycache_/ch05_r04.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 05/_pycache_/ch05_r04.cpython-34.pyc -------------------------------------------------------------------------------- /Chapter 05/_pycache_/ch05_r04.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 05/_pycache_/ch05_r04.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 05/_pycache_/ch05_r05.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 05/_pycache_/ch05_r05.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 05/_pycache_/ch05_r05_py.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 05/_pycache_/ch05_r05_py.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 05/_pycache_/ch05_r06.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 05/_pycache_/ch05_r06.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 05/ch05_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 05/ch05_r02.py -------------------------------------------------------------------------------- /Chapter 05/ch05_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 05/ch05_r04.py -------------------------------------------------------------------------------- /Chapter 05/ch05_r05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 05/ch05_r05.py -------------------------------------------------------------------------------- /Chapter 05/ch05_r05_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 05/ch05_r05_py.py -------------------------------------------------------------------------------- /Chapter 05/ch05_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 05/ch05_r06.py -------------------------------------------------------------------------------- /Chapter 06/_pycache_/ch06_r01.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 06/_pycache_/ch06_r01.cpython-34.pyc -------------------------------------------------------------------------------- /Chapter 06/_pycache_/ch06_r01.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 06/_pycache_/ch06_r01.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 06/_pycache_/ch06_r02.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 06/_pycache_/ch06_r02.cpython-34.pyc -------------------------------------------------------------------------------- /Chapter 06/_pycache_/ch06_r02.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 06/_pycache_/ch06_r02.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 06/_pycache_/ch06_r04.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 06/_pycache_/ch06_r04.cpython-34.pyc -------------------------------------------------------------------------------- /Chapter 06/_pycache_/ch06_r04.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 06/_pycache_/ch06_r04.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 06/_pycache_/ch06_r06.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 06/_pycache_/ch06_r06.cpython-34.pyc -------------------------------------------------------------------------------- /Chapter 06/_pycache_/ch06_r06.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 06/_pycache_/ch06_r06.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 06/_pycache_/ch06_r07.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 06/_pycache_/ch06_r07.cpython-34.pyc -------------------------------------------------------------------------------- /Chapter 06/_pycache_/ch06_r07.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 06/_pycache_/ch06_r07.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 06/_pycache_/ch06_r08.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 06/_pycache_/ch06_r08.cpython-34.pyc -------------------------------------------------------------------------------- /Chapter 06/_pycache_/ch06_r08.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 06/_pycache_/ch06_r08.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 06/ch06_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 06/ch06_r01.py -------------------------------------------------------------------------------- /Chapter 06/ch06_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 06/ch06_r02.py -------------------------------------------------------------------------------- /Chapter 06/ch06_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 06/ch06_r04.py -------------------------------------------------------------------------------- /Chapter 06/ch06_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 06/ch06_r06.py -------------------------------------------------------------------------------- /Chapter 06/ch06_r07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 06/ch06_r07.py -------------------------------------------------------------------------------- /Chapter 06/ch06_r08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 06/ch06_r08.py -------------------------------------------------------------------------------- /Chapter 07/_pycache_/ch07_r01.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 07/_pycache_/ch07_r01.cpython-34.pyc -------------------------------------------------------------------------------- /Chapter 07/_pycache_/ch07_r01.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 07/_pycache_/ch07_r01.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 07/_pycache_/ch07_r02.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 07/_pycache_/ch07_r02.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 07/_pycache_/ch07_r02_timing.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 07/_pycache_/ch07_r02_timing.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 07/_pycache_/ch07_r03.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 07/_pycache_/ch07_r03.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 07/_pycache_/ch07_r04.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 07/_pycache_/ch07_r04.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 07/_pycache_/ch07_r05.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 07/_pycache_/ch07_r05.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 07/_pycache_/ch07_r06a.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 07/_pycache_/ch07_r06a.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 07/_pycache_/ch07_r06b.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 07/_pycache_/ch07_r06b.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 07/_pycache_/ch07_r07.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 07/_pycache_/ch07_r07.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 07/ch07_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 07/ch07_r01.py -------------------------------------------------------------------------------- /Chapter 07/ch07_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 07/ch07_r02.py -------------------------------------------------------------------------------- /Chapter 07/ch07_r02_timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 07/ch07_r02_timing.py -------------------------------------------------------------------------------- /Chapter 07/ch07_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 07/ch07_r03.py -------------------------------------------------------------------------------- /Chapter 07/ch07_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 07/ch07_r04.py -------------------------------------------------------------------------------- /Chapter 07/ch07_r05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 07/ch07_r05.py -------------------------------------------------------------------------------- /Chapter 07/ch07_r06a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 07/ch07_r06a.py -------------------------------------------------------------------------------- /Chapter 07/ch07_r06b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 07/ch07_r06b.py -------------------------------------------------------------------------------- /Chapter 07/ch07_r07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 07/ch07_r07.py -------------------------------------------------------------------------------- /Chapter 08/_pycache_/ch08_r01.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 08/_pycache_/ch08_r01.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 08/_pycache_/ch08_r02.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 08/_pycache_/ch08_r02.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 08/_pycache_/ch08_r06.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 08/_pycache_/ch08_r06.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 08/_pycache_/ch08_r07.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 08/_pycache_/ch08_r07.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 08/_pycache_/ch08_r08.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 08/_pycache_/ch08_r08.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 08/_pycache_/ch08_r09.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 08/_pycache_/ch08_r09.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 08/_pycache_/ch08_r10.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 08/_pycache_/ch08_r10.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 08/ch08_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 08/ch08_r01.py -------------------------------------------------------------------------------- /Chapter 08/ch08_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 08/ch08_r02.py -------------------------------------------------------------------------------- /Chapter 08/ch08_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 08/ch08_r06.py -------------------------------------------------------------------------------- /Chapter 08/ch08_r07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 08/ch08_r07.py -------------------------------------------------------------------------------- /Chapter 08/ch08_r08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 08/ch08_r08.py -------------------------------------------------------------------------------- /Chapter 08/ch08_r09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 08/ch08_r09.py -------------------------------------------------------------------------------- /Chapter 08/ch08_r10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 08/ch08_r10.py -------------------------------------------------------------------------------- /Chapter 09/_pycache_/ch09_r01a.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 09/_pycache_/ch09_r01a.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 09/_pycache_/ch09_r02.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 09/_pycache_/ch09_r02.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 09/_pycache_/ch09_r03.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 09/_pycache_/ch09_r03.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 09/_pycache_/ch09_r06.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 09/_pycache_/ch09_r06.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 09/_pycache_/ch09_r07.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 09/_pycache_/ch09_r07.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 09/_pycache_/ch09_r08.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 09/_pycache_/ch09_r08.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 09/_pycache_/ch09_r10.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 09/_pycache_/ch09_r10.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 09/ch09_r01a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 09/ch09_r01a.py -------------------------------------------------------------------------------- /Chapter 09/ch09_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 09/ch09_r02.py -------------------------------------------------------------------------------- /Chapter 09/ch09_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 09/ch09_r03.py -------------------------------------------------------------------------------- /Chapter 09/ch09_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 09/ch09_r06.py -------------------------------------------------------------------------------- /Chapter 09/ch09_r07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 09/ch09_r07.py -------------------------------------------------------------------------------- /Chapter 09/ch09_r08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 09/ch09_r08.py -------------------------------------------------------------------------------- /Chapter 09/ch09_r10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 09/ch09_r10.py -------------------------------------------------------------------------------- /Chapter 10/_pycache_/ch10_r01.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 10/_pycache_/ch10_r01.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 10/_pycache_/ch10_r03.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 10/_pycache_/ch10_r03.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 10/_pycache_/ch10_r04.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 10/_pycache_/ch10_r04.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 10/_pycache_/ch10_r05.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 10/_pycache_/ch10_r05.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 10/_pycache_/ch10_r06.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 10/_pycache_/ch10_r06.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 10/_pycache_/ch10_r07.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 10/_pycache_/ch10_r07.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 10/_pycache_/ch10_r08.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 10/_pycache_/ch10_r08.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 10/ch10_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 10/ch10_r01.py -------------------------------------------------------------------------------- /Chapter 10/ch10_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 10/ch10_r03.py -------------------------------------------------------------------------------- /Chapter 10/ch10_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 10/ch10_r04.py -------------------------------------------------------------------------------- /Chapter 10/ch10_r05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 10/ch10_r05.py -------------------------------------------------------------------------------- /Chapter 10/ch10_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 10/ch10_r06.py -------------------------------------------------------------------------------- /Chapter 10/ch10_r07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 10/ch10_r07.py -------------------------------------------------------------------------------- /Chapter 10/ch10_r08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 10/ch10_r08.py -------------------------------------------------------------------------------- /Chapter 11/_pycache_/ch11_r01.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 11/_pycache_/ch11_r01.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 11/_pycache_/ch11_r03.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 11/_pycache_/ch11_r03.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 11/_pycache_/ch11_r04.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 11/_pycache_/ch11_r04.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 11/_pycache_/ch11_r06.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 11/_pycache_/ch11_r06.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 11/_pycache_/ch11_r07.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 11/_pycache_/ch11_r07.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 11/_pycache_/ch11_r08.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 11/_pycache_/ch11_r08.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 11/_pycache_/ch11_r08_load.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 11/_pycache_/ch11_r08_load.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 11/_pycache_/ch11_r08_spike.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 11/_pycache_/ch11_r08_spike.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 11/_pycache_/ch11_r08_test.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 11/_pycache_/ch11_r08_test.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 11/ch11_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 11/ch11_r01.py -------------------------------------------------------------------------------- /Chapter 11/ch11_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 11/ch11_r03.py -------------------------------------------------------------------------------- /Chapter 11/ch11_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 11/ch11_r04.py -------------------------------------------------------------------------------- /Chapter 11/ch11_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 11/ch11_r06.py -------------------------------------------------------------------------------- /Chapter 11/ch11_r07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 11/ch11_r07.py -------------------------------------------------------------------------------- /Chapter 11/ch11_r08_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 11/ch11_r08_load.py -------------------------------------------------------------------------------- /Chapter 11/ch11_r08_spike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 11/ch11_r08_spike.py -------------------------------------------------------------------------------- /Chapter 11/ch11_r08_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 11/ch11_r08_test.py -------------------------------------------------------------------------------- /Chapter 12/_pycache_/ch12_r01.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/_pycache_/ch12_r01.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 12/_pycache_/ch12_r02.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/_pycache_/ch12_r02.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 12/_pycache_/ch12_r03.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/_pycache_/ch12_r03.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 12/_pycache_/ch12_r04.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/_pycache_/ch12_r04.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 12/_pycache_/ch12_r05_client.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/_pycache_/ch12_r05_client.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 12/_pycache_/ch12_r05_server.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/_pycache_/ch12_r05_server.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 12/_pycache_/ch12_r06_client.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/_pycache_/ch12_r06_client.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 12/_pycache_/ch12_r06_server.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/_pycache_/ch12_r06_server.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 12/_pycache_/ch12_r07_client.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/_pycache_/ch12_r07_client.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 12/_pycache_/ch12_r07_server.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/_pycache_/ch12_r07_server.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 12/_pycache_/ch12_r07_user.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/_pycache_/ch12_r07_user.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 12/ch12_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/ch12_r01.py -------------------------------------------------------------------------------- /Chapter 12/ch12_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/ch12_r02.py -------------------------------------------------------------------------------- /Chapter 12/ch12_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/ch12_r03.py -------------------------------------------------------------------------------- /Chapter 12/ch12_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/ch12_r04.py -------------------------------------------------------------------------------- /Chapter 12/ch12_r05_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/ch12_r05_client.py -------------------------------------------------------------------------------- /Chapter 12/ch12_r05_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/ch12_r05_server.py -------------------------------------------------------------------------------- /Chapter 12/ch12_r06_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/ch12_r06_client.py -------------------------------------------------------------------------------- /Chapter 12/ch12_r06_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/ch12_r06_server.py -------------------------------------------------------------------------------- /Chapter 12/ch12_r07_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/ch12_r07_client.py -------------------------------------------------------------------------------- /Chapter 12/ch12_r07_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/ch12_r07_server.py -------------------------------------------------------------------------------- /Chapter 12/ch12_r07_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 12/ch12_r07_user.py -------------------------------------------------------------------------------- /Chapter 13/_pycache_/ch13_r01.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/_pycache_/ch13_r01.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 13/_pycache_/ch13_r02.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/_pycache_/ch13_r02.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 13/_pycache_/ch13_r03.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/_pycache_/ch13_r03.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 13/_pycache_/ch13_r04.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/_pycache_/ch13_r04.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 13/_pycache_/ch13_r05.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/_pycache_/ch13_r05.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 13/_pycache_/ch13_r06.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/_pycache_/ch13_r06.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 13/_pycache_/ch13_r07.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/_pycache_/ch13_r07.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 13/_pycache_/ch13_r08.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/_pycache_/ch13_r08.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 13/_pycache_/ch13_r09.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/_pycache_/ch13_r09.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 13/_pycache_/ch13_r10.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/_pycache_/ch13_r10.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 13/_pycache_/ch13_r11.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/_pycache_/ch13_r11.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 13/_pycache_/ch13_r12.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/_pycache_/ch13_r12.cpython-35.pyc -------------------------------------------------------------------------------- /Chapter 13/ch13_r01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/ch13_r01.py -------------------------------------------------------------------------------- /Chapter 13/ch13_r02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/ch13_r02.py -------------------------------------------------------------------------------- /Chapter 13/ch13_r03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/ch13_r03.py -------------------------------------------------------------------------------- /Chapter 13/ch13_r04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/ch13_r04.py -------------------------------------------------------------------------------- /Chapter 13/ch13_r05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/ch13_r05.py -------------------------------------------------------------------------------- /Chapter 13/ch13_r05_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/ch13_r05_test.yaml -------------------------------------------------------------------------------- /Chapter 13/ch13_r06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/ch13_r06.py -------------------------------------------------------------------------------- /Chapter 13/ch13_r07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/ch13_r07.py -------------------------------------------------------------------------------- /Chapter 13/ch13_r08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/ch13_r08.py -------------------------------------------------------------------------------- /Chapter 13/ch13_r09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/ch13_r09.py -------------------------------------------------------------------------------- /Chapter 13/ch13_r10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/ch13_r10.py -------------------------------------------------------------------------------- /Chapter 13/ch13_r11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/ch13_r11.py -------------------------------------------------------------------------------- /Chapter 13/ch13_r12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Chapter 13/ch13_r12.py -------------------------------------------------------------------------------- /Code/.cache/v/cache/lastfailed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/.cache/v/cache/lastfailed -------------------------------------------------------------------------------- /Code/Volvo Ocean Race.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/Volvo Ocean Race.html -------------------------------------------------------------------------------- /Code/co2_mm_mlo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/co2_mm_mlo.txt -------------------------------------------------------------------------------- /Code/coupon_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/coupon_collector.py -------------------------------------------------------------------------------- /Code/craps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/craps.csv -------------------------------------------------------------------------------- /Code/extract_20170704010203.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/extract_20170704010203.json -------------------------------------------------------------------------------- /Code/fuel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/fuel.csv -------------------------------------------------------------------------------- /Code/fuel.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/fuel.ods -------------------------------------------------------------------------------- /Code/fuel2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/fuel2.csv -------------------------------------------------------------------------------- /Code/game_0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/game_0.yaml -------------------------------------------------------------------------------- /Code/game_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/game_1.yaml -------------------------------------------------------------------------------- /Code/hint_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/hint_game.py -------------------------------------------------------------------------------- /Code/output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/output.csv -------------------------------------------------------------------------------- /Code/output.csv.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/output.csv.old -------------------------------------------------------------------------------- /Code/race_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/race_result.json -------------------------------------------------------------------------------- /Code/race_result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/race_result.xml -------------------------------------------------------------------------------- /Code/sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/sample.csv -------------------------------------------------------------------------------- /Code/sample.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/sample.log -------------------------------------------------------------------------------- /Code/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/settings.py -------------------------------------------------------------------------------- /Code/ssl.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/ssl.cert -------------------------------------------------------------------------------- /Code/ssl.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/ssl.key -------------------------------------------------------------------------------- /Code/sum.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/sum.yaml -------------------------------------------------------------------------------- /Code/summary.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/summary.dat -------------------------------------------------------------------------------- /Code/summary_log.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/summary_log.csv -------------------------------------------------------------------------------- /Code/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/swagger.json -------------------------------------------------------------------------------- /Code/test.csv: -------------------------------------------------------------------------------- 1 | column,data,headings 2 | 2,3,5 3 | -------------------------------------------------------------------------------- /Code/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/test_all.py -------------------------------------------------------------------------------- /Code/waypoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/waypoints.csv -------------------------------------------------------------------------------- /Code/wc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/wc.csv -------------------------------------------------------------------------------- /Code/write.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/write.log -------------------------------------------------------------------------------- /Code/x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/x.yaml -------------------------------------------------------------------------------- /Code/x12.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/x12.yaml -------------------------------------------------------------------------------- /Code/y.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/y.yaml -------------------------------------------------------------------------------- /Code/y12.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Code/y12.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/README.md -------------------------------------------------------------------------------- /Support files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Support files/anscombe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Support files/anscombe.json -------------------------------------------------------------------------------- /Support files/anscombe_raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Support files/anscombe_raw.csv -------------------------------------------------------------------------------- /Support files/anscome_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/Support files/anscome_json.py -------------------------------------------------------------------------------- /__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /__pycache__/anscome_json.cpython-35-PYTEST.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/__pycache__/anscome_json.cpython-35-PYTEST.pyc -------------------------------------------------------------------------------- /__pycache__/anscome_json.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/__pycache__/anscome_json.cpython-35.pyc -------------------------------------------------------------------------------- /__pycache__/coupon_collector.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/__pycache__/coupon_collector.cpython-35.pyc -------------------------------------------------------------------------------- /__pycache__/hint_game.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/__pycache__/hint_game.cpython-35.pyc -------------------------------------------------------------------------------- /__pycache__/settings.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/__pycache__/settings.cpython-34.pyc -------------------------------------------------------------------------------- /__pycache__/settings.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/__pycache__/settings.cpython-35.pyc -------------------------------------------------------------------------------- /__pycache__/test_all.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Python-Cookbook/HEAD/__pycache__/test_all.cpython-35.pyc --------------------------------------------------------------------------------