├── .gitignore ├── .idea ├── dataSources.ids ├── dataSources.local.xml ├── dataSources.xml └── dictionaries │ └── screencaster.xml ├── LICENSE ├── README.md ├── code ├── ch_00_welcome │ └── placeholder.txt ├── ch_01_pep8 │ └── _01_pep8.py ├── ch_02_foundations │ ├── _01_truthiness.py │ ├── _02_noneness.py │ ├── _03_multipe_compares.py │ ├── _05_stringification.py │ ├── _06_state_your_state.py │ ├── _07_flat_is_better_than_nested.py │ ├── _07_flat_support_file.py │ └── _4_randomness.py ├── ch_03_dictionaries │ ├── _01_perf.py │ ├── _02_merge_ahead.py │ ├── _03_mem_hacking.py │ ├── _04_get_some.py │ ├── _05_there_is_no_switch.py │ └── _06_to_json_and_back.py ├── ch_04_collections │ ├── _01_adding_iteration.py │ ├── _02_containment.py │ ├── _03_slice.py │ ├── _03_slice_support.py │ ├── _04_generators.py │ ├── _05_generators_all_the_way_down.py │ ├── _06_express_yourself.py │ ├── _07_counting_generators.py │ └── slicing_db.sqlite ├── ch_05_functions │ ├── _01_lambdas.py │ ├── _02_lets_play_catch.py │ ├── _02_lets_play_catch_support.py │ ├── _03_no_overloading.py │ ├── _04_i_ll_have_my_usual.py │ ├── _05_variable_length_arguments.py │ ├── _06_the_key_to_the_arguments.py │ └── _07_dangerous_defaults.py ├── ch_06_packages │ ├── _01_beware_the_trade_imbalance.py │ ├── _01_beware_the_trade_imbalance_support.py │ ├── _02_what_is___main__.py │ ├── _02_what_is___main__support.py │ ├── _03_what_do_you_require.py │ └── requirements.txt ├── ch_07_classes │ ├── _01_built_in_one_place.py │ ├── _02_i_want_my_privacy.py │ └── _03_what_properties_define_you.py ├── ch_08_loops │ ├── _01_there_is_no_num_for_loop.py │ ├── _02_oh_there_are_num_loops_rn.py │ ├── _03_oh_there_are_num_loops_en.py │ └── _04_dont_use_else_or_else.py ├── ch_09_tuples │ ├── _01_unpack_and_move_in.py │ ├── _02_short_swap_tricks.py │ ├── _03_methods_with_ref_params.py │ └── _04_i_m_not_a_number_i_have_a_name.py ├── ch_10_for_humans │ ├── _01_official_http_client.py │ ├── _02_just_write_sql.py │ ├── _02_just_write_sql_support.py │ └── demo_db.sqlite └── ch_99_conclusion │ └── placeholder.txt ├── readme_resources └── pythonic-course-welcome-video.png ├── tips-pdf └── 26-pythonic-code-tips-and-tricks.pdf ├── transcripts ├── 01-introduction │ ├── 1.txt │ ├── 2.txt │ ├── 3.txt │ ├── 4.txt │ ├── 5.txt │ └── 6.txt ├── 02-PEP8 │ ├── 1.txt │ ├── 2.txt │ ├── 3.txt │ ├── 4.txt │ └── 5.txt ├── 03-Foundational-Concepts │ ├── 1.txt │ ├── 2.txt │ ├── 3.txt │ ├── 4.txt │ ├── 5.txt │ ├── 6.txt │ └── 7.txt ├── 04-dictionaries │ ├── 1.txt │ ├── 2.txt │ ├── 3.txt │ ├── 4.txt │ ├── 5.txt │ ├── 6.txt │ └── 7.txt ├── 05-Generators │ ├── 1.txt │ ├── 2.txt │ ├── 3.txt │ ├── 4.txt │ ├── 5.txt │ ├── 6.txt │ └── 7.txt ├── 06-methods │ ├── 1.txt │ ├── 2.txt │ ├── 3.txt │ ├── 4.txt │ ├── 5.txt │ ├── 6.txt │ ├── 7.txt │ └── 8.txt ├── 07-modules-packages │ ├── 1.txt │ ├── 2.txt │ ├── 3.txt │ ├── 4.txt │ └── 5.txt ├── 08-classes │ ├── 1.txt │ ├── 2.txt │ └── 3.txt ├── 09-loops │ ├── 1.txt │ ├── 2.txt │ ├── 3.txt │ └── 4.txt ├── 10-tuples │ ├── 1.txt │ ├── 2.txt │ ├── 3.txt │ └── 4.txt ├── 11-for-humans │ ├── 1.txt │ ├── 2.txt │ └── 3.txt └── 12-conclusion │ ├── 1.txt │ ├── 2.txt │ ├── 3.txt │ └── 4.txt └── venv_on_windows.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/dataSources.ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/.idea/dataSources.ids -------------------------------------------------------------------------------- /.idea/dataSources.local.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/.idea/dataSources.local.xml -------------------------------------------------------------------------------- /.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/.idea/dataSources.xml -------------------------------------------------------------------------------- /.idea/dictionaries/screencaster.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/.idea/dictionaries/screencaster.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/README.md -------------------------------------------------------------------------------- /code/ch_00_welcome/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/ch_01_pep8/_01_pep8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_01_pep8/_01_pep8.py -------------------------------------------------------------------------------- /code/ch_02_foundations/_01_truthiness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_02_foundations/_01_truthiness.py -------------------------------------------------------------------------------- /code/ch_02_foundations/_02_noneness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_02_foundations/_02_noneness.py -------------------------------------------------------------------------------- /code/ch_02_foundations/_03_multipe_compares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_02_foundations/_03_multipe_compares.py -------------------------------------------------------------------------------- /code/ch_02_foundations/_05_stringification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_02_foundations/_05_stringification.py -------------------------------------------------------------------------------- /code/ch_02_foundations/_06_state_your_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_02_foundations/_06_state_your_state.py -------------------------------------------------------------------------------- /code/ch_02_foundations/_07_flat_is_better_than_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_02_foundations/_07_flat_is_better_than_nested.py -------------------------------------------------------------------------------- /code/ch_02_foundations/_07_flat_support_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_02_foundations/_07_flat_support_file.py -------------------------------------------------------------------------------- /code/ch_02_foundations/_4_randomness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_02_foundations/_4_randomness.py -------------------------------------------------------------------------------- /code/ch_03_dictionaries/_01_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_03_dictionaries/_01_perf.py -------------------------------------------------------------------------------- /code/ch_03_dictionaries/_02_merge_ahead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_03_dictionaries/_02_merge_ahead.py -------------------------------------------------------------------------------- /code/ch_03_dictionaries/_03_mem_hacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_03_dictionaries/_03_mem_hacking.py -------------------------------------------------------------------------------- /code/ch_03_dictionaries/_04_get_some.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_03_dictionaries/_04_get_some.py -------------------------------------------------------------------------------- /code/ch_03_dictionaries/_05_there_is_no_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_03_dictionaries/_05_there_is_no_switch.py -------------------------------------------------------------------------------- /code/ch_03_dictionaries/_06_to_json_and_back.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_03_dictionaries/_06_to_json_and_back.py -------------------------------------------------------------------------------- /code/ch_04_collections/_01_adding_iteration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_04_collections/_01_adding_iteration.py -------------------------------------------------------------------------------- /code/ch_04_collections/_02_containment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_04_collections/_02_containment.py -------------------------------------------------------------------------------- /code/ch_04_collections/_03_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_04_collections/_03_slice.py -------------------------------------------------------------------------------- /code/ch_04_collections/_03_slice_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_04_collections/_03_slice_support.py -------------------------------------------------------------------------------- /code/ch_04_collections/_04_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_04_collections/_04_generators.py -------------------------------------------------------------------------------- /code/ch_04_collections/_05_generators_all_the_way_down.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_04_collections/_05_generators_all_the_way_down.py -------------------------------------------------------------------------------- /code/ch_04_collections/_06_express_yourself.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_04_collections/_06_express_yourself.py -------------------------------------------------------------------------------- /code/ch_04_collections/_07_counting_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_04_collections/_07_counting_generators.py -------------------------------------------------------------------------------- /code/ch_04_collections/slicing_db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_04_collections/slicing_db.sqlite -------------------------------------------------------------------------------- /code/ch_05_functions/_01_lambdas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_05_functions/_01_lambdas.py -------------------------------------------------------------------------------- /code/ch_05_functions/_02_lets_play_catch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_05_functions/_02_lets_play_catch.py -------------------------------------------------------------------------------- /code/ch_05_functions/_02_lets_play_catch_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_05_functions/_02_lets_play_catch_support.py -------------------------------------------------------------------------------- /code/ch_05_functions/_03_no_overloading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_05_functions/_03_no_overloading.py -------------------------------------------------------------------------------- /code/ch_05_functions/_04_i_ll_have_my_usual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_05_functions/_04_i_ll_have_my_usual.py -------------------------------------------------------------------------------- /code/ch_05_functions/_05_variable_length_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_05_functions/_05_variable_length_arguments.py -------------------------------------------------------------------------------- /code/ch_05_functions/_06_the_key_to_the_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_05_functions/_06_the_key_to_the_arguments.py -------------------------------------------------------------------------------- /code/ch_05_functions/_07_dangerous_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_05_functions/_07_dangerous_defaults.py -------------------------------------------------------------------------------- /code/ch_06_packages/_01_beware_the_trade_imbalance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_06_packages/_01_beware_the_trade_imbalance.py -------------------------------------------------------------------------------- /code/ch_06_packages/_01_beware_the_trade_imbalance_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_06_packages/_01_beware_the_trade_imbalance_support.py -------------------------------------------------------------------------------- /code/ch_06_packages/_02_what_is___main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_06_packages/_02_what_is___main__.py -------------------------------------------------------------------------------- /code/ch_06_packages/_02_what_is___main__support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_06_packages/_02_what_is___main__support.py -------------------------------------------------------------------------------- /code/ch_06_packages/_03_what_do_you_require.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_06_packages/_03_what_do_you_require.py -------------------------------------------------------------------------------- /code/ch_06_packages/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | records 3 | passlib -------------------------------------------------------------------------------- /code/ch_07_classes/_01_built_in_one_place.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_07_classes/_01_built_in_one_place.py -------------------------------------------------------------------------------- /code/ch_07_classes/_02_i_want_my_privacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_07_classes/_02_i_want_my_privacy.py -------------------------------------------------------------------------------- /code/ch_07_classes/_03_what_properties_define_you.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_07_classes/_03_what_properties_define_you.py -------------------------------------------------------------------------------- /code/ch_08_loops/_01_there_is_no_num_for_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_08_loops/_01_there_is_no_num_for_loop.py -------------------------------------------------------------------------------- /code/ch_08_loops/_02_oh_there_are_num_loops_rn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_08_loops/_02_oh_there_are_num_loops_rn.py -------------------------------------------------------------------------------- /code/ch_08_loops/_03_oh_there_are_num_loops_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_08_loops/_03_oh_there_are_num_loops_en.py -------------------------------------------------------------------------------- /code/ch_08_loops/_04_dont_use_else_or_else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_08_loops/_04_dont_use_else_or_else.py -------------------------------------------------------------------------------- /code/ch_09_tuples/_01_unpack_and_move_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_09_tuples/_01_unpack_and_move_in.py -------------------------------------------------------------------------------- /code/ch_09_tuples/_02_short_swap_tricks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_09_tuples/_02_short_swap_tricks.py -------------------------------------------------------------------------------- /code/ch_09_tuples/_03_methods_with_ref_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_09_tuples/_03_methods_with_ref_params.py -------------------------------------------------------------------------------- /code/ch_09_tuples/_04_i_m_not_a_number_i_have_a_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_09_tuples/_04_i_m_not_a_number_i_have_a_name.py -------------------------------------------------------------------------------- /code/ch_10_for_humans/_01_official_http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_10_for_humans/_01_official_http_client.py -------------------------------------------------------------------------------- /code/ch_10_for_humans/_02_just_write_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_10_for_humans/_02_just_write_sql.py -------------------------------------------------------------------------------- /code/ch_10_for_humans/_02_just_write_sql_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_10_for_humans/_02_just_write_sql_support.py -------------------------------------------------------------------------------- /code/ch_10_for_humans/demo_db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/code/ch_10_for_humans/demo_db.sqlite -------------------------------------------------------------------------------- /code/ch_99_conclusion/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /readme_resources/pythonic-course-welcome-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/readme_resources/pythonic-course-welcome-video.png -------------------------------------------------------------------------------- /tips-pdf/26-pythonic-code-tips-and-tricks.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/tips-pdf/26-pythonic-code-tips-and-tricks.pdf -------------------------------------------------------------------------------- /transcripts/01-introduction/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/01-introduction/1.txt -------------------------------------------------------------------------------- /transcripts/01-introduction/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/01-introduction/2.txt -------------------------------------------------------------------------------- /transcripts/01-introduction/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/01-introduction/3.txt -------------------------------------------------------------------------------- /transcripts/01-introduction/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/01-introduction/4.txt -------------------------------------------------------------------------------- /transcripts/01-introduction/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/01-introduction/5.txt -------------------------------------------------------------------------------- /transcripts/01-introduction/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/01-introduction/6.txt -------------------------------------------------------------------------------- /transcripts/02-PEP8/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/02-PEP8/1.txt -------------------------------------------------------------------------------- /transcripts/02-PEP8/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/02-PEP8/2.txt -------------------------------------------------------------------------------- /transcripts/02-PEP8/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/02-PEP8/3.txt -------------------------------------------------------------------------------- /transcripts/02-PEP8/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/02-PEP8/4.txt -------------------------------------------------------------------------------- /transcripts/02-PEP8/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/02-PEP8/5.txt -------------------------------------------------------------------------------- /transcripts/03-Foundational-Concepts/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/03-Foundational-Concepts/1.txt -------------------------------------------------------------------------------- /transcripts/03-Foundational-Concepts/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/03-Foundational-Concepts/2.txt -------------------------------------------------------------------------------- /transcripts/03-Foundational-Concepts/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/03-Foundational-Concepts/3.txt -------------------------------------------------------------------------------- /transcripts/03-Foundational-Concepts/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/03-Foundational-Concepts/4.txt -------------------------------------------------------------------------------- /transcripts/03-Foundational-Concepts/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/03-Foundational-Concepts/5.txt -------------------------------------------------------------------------------- /transcripts/03-Foundational-Concepts/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/03-Foundational-Concepts/6.txt -------------------------------------------------------------------------------- /transcripts/03-Foundational-Concepts/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/03-Foundational-Concepts/7.txt -------------------------------------------------------------------------------- /transcripts/04-dictionaries/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/04-dictionaries/1.txt -------------------------------------------------------------------------------- /transcripts/04-dictionaries/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/04-dictionaries/2.txt -------------------------------------------------------------------------------- /transcripts/04-dictionaries/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/04-dictionaries/3.txt -------------------------------------------------------------------------------- /transcripts/04-dictionaries/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/04-dictionaries/4.txt -------------------------------------------------------------------------------- /transcripts/04-dictionaries/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/04-dictionaries/5.txt -------------------------------------------------------------------------------- /transcripts/04-dictionaries/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/04-dictionaries/6.txt -------------------------------------------------------------------------------- /transcripts/04-dictionaries/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/04-dictionaries/7.txt -------------------------------------------------------------------------------- /transcripts/05-Generators/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/05-Generators/1.txt -------------------------------------------------------------------------------- /transcripts/05-Generators/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/05-Generators/2.txt -------------------------------------------------------------------------------- /transcripts/05-Generators/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/05-Generators/3.txt -------------------------------------------------------------------------------- /transcripts/05-Generators/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/05-Generators/4.txt -------------------------------------------------------------------------------- /transcripts/05-Generators/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/05-Generators/5.txt -------------------------------------------------------------------------------- /transcripts/05-Generators/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/05-Generators/6.txt -------------------------------------------------------------------------------- /transcripts/05-Generators/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/05-Generators/7.txt -------------------------------------------------------------------------------- /transcripts/06-methods/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/06-methods/1.txt -------------------------------------------------------------------------------- /transcripts/06-methods/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/06-methods/2.txt -------------------------------------------------------------------------------- /transcripts/06-methods/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/06-methods/3.txt -------------------------------------------------------------------------------- /transcripts/06-methods/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/06-methods/4.txt -------------------------------------------------------------------------------- /transcripts/06-methods/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/06-methods/5.txt -------------------------------------------------------------------------------- /transcripts/06-methods/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/06-methods/6.txt -------------------------------------------------------------------------------- /transcripts/06-methods/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/06-methods/7.txt -------------------------------------------------------------------------------- /transcripts/06-methods/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/06-methods/8.txt -------------------------------------------------------------------------------- /transcripts/07-modules-packages/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/07-modules-packages/1.txt -------------------------------------------------------------------------------- /transcripts/07-modules-packages/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/07-modules-packages/2.txt -------------------------------------------------------------------------------- /transcripts/07-modules-packages/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/07-modules-packages/3.txt -------------------------------------------------------------------------------- /transcripts/07-modules-packages/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/07-modules-packages/4.txt -------------------------------------------------------------------------------- /transcripts/07-modules-packages/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/07-modules-packages/5.txt -------------------------------------------------------------------------------- /transcripts/08-classes/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/08-classes/1.txt -------------------------------------------------------------------------------- /transcripts/08-classes/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/08-classes/2.txt -------------------------------------------------------------------------------- /transcripts/08-classes/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/08-classes/3.txt -------------------------------------------------------------------------------- /transcripts/09-loops/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/09-loops/1.txt -------------------------------------------------------------------------------- /transcripts/09-loops/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/09-loops/2.txt -------------------------------------------------------------------------------- /transcripts/09-loops/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/09-loops/3.txt -------------------------------------------------------------------------------- /transcripts/09-loops/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/09-loops/4.txt -------------------------------------------------------------------------------- /transcripts/10-tuples/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/10-tuples/1.txt -------------------------------------------------------------------------------- /transcripts/10-tuples/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/10-tuples/2.txt -------------------------------------------------------------------------------- /transcripts/10-tuples/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/10-tuples/3.txt -------------------------------------------------------------------------------- /transcripts/10-tuples/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/10-tuples/4.txt -------------------------------------------------------------------------------- /transcripts/11-for-humans/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/11-for-humans/1.txt -------------------------------------------------------------------------------- /transcripts/11-for-humans/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/11-for-humans/2.txt -------------------------------------------------------------------------------- /transcripts/11-for-humans/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/11-for-humans/3.txt -------------------------------------------------------------------------------- /transcripts/12-conclusion/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/12-conclusion/1.txt -------------------------------------------------------------------------------- /transcripts/12-conclusion/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/12-conclusion/2.txt -------------------------------------------------------------------------------- /transcripts/12-conclusion/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/12-conclusion/3.txt -------------------------------------------------------------------------------- /transcripts/12-conclusion/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/transcripts/12-conclusion/4.txt -------------------------------------------------------------------------------- /venv_on_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/write-pythonic-code-demos/HEAD/venv_on_windows.md --------------------------------------------------------------------------------