├── 088 ├── .gitignore ├── base_dictionary_sorting.tox ├── example_data_structures │ ├── data_structures_dictionary │ │ ├── data_structures_dictionary.tox │ │ ├── readme.md │ │ ├── text_adding_dictionary_items.py │ │ ├── text_first_dictionary1.py │ │ ├── text_first_dictionary2.py │ │ ├── text_first_dictionary3.py │ │ ├── text_first_dictionary4.py │ │ ├── text_read_me_examples.py │ │ ├── text_top_dictionary.py │ │ ├── text_top_dictionary_presets.py │ │ ├── text_top_dictionary_presets1.py │ │ └── text_top_dictionary_presets2.py │ ├── data_structures_list │ │ ├── container_radio_buttons.tox │ │ ├── data_structures_list.tox │ │ ├── readme.md │ │ ├── text_accessing_a_list.py │ │ ├── text_appending_lists.py │ │ ├── text_channels_and_lists1.py │ │ ├── text_channels_and_lists2.py │ │ ├── text_containers_and_lists1.py │ │ ├── text_grocery_list.py │ │ ├── text_items_in_our_first_list.py │ │ ├── text_lists_in_lsts.py │ │ ├── text_our_first_list.py │ │ └── text_sops_and_lists1.py │ ├── example_data_structures.tox │ └── readme.md ├── example_dictionary_loops │ ├── example_dictionary_loops.tox │ ├── readme.md │ ├── simple_mod_example.py │ ├── text_cue_list.py │ ├── text_cue_list_play.py │ ├── text_data.py │ ├── text_defaults.py │ ├── text_execute_loop.py │ ├── text_execute_loop_pars.py │ ├── text_replicator.py │ ├── text_simple_dictionary_loop0.py │ ├── text_simple_dictionary_loop1.py │ ├── text_simple_dictionary_loop2.py │ ├── text_simple_dictionary_loop3.py │ ├── text_simple_dictionary_loop4.py │ ├── text_simple_json.json │ ├── text_test_dictionary.py │ └── text_using_json.py ├── example_executes │ ├── example_executes.tox │ └── readme.md ├── example_extensions │ ├── example_extensions.tox │ ├── example_extensions_class.py │ ├── log_files │ │ └── log.txt │ ├── readme.md │ ├── text_test_clear.py │ ├── text_test_date_time.py │ ├── text_test_log_compact.py │ ├── text_test_log_verbose.py │ └── text_test_save.py ├── example_for_loop │ ├── example_for_loop.tox │ ├── readme.md │ ├── text_a_first_loop.py │ ├── text_a_first_loop2.py │ ├── text_channels_as_lists.py │ ├── text_create_ops_loop.py │ ├── text_enumerating_lists.py │ ├── text_filling_a_table.py │ ├── text_list_comprehensions.py │ ├── text_pars_loop.py │ ├── text_tex3d_fill.py │ └── text_working_with_table_DATs.py ├── example_intro_to_functions │ ├── example_intro_to_functions.tox │ ├── readme.md │ ├── text_my_first_function1.py │ ├── text_my_first_function2.py │ ├── text_my_first_function3.1.py │ ├── text_my_first_function3.py │ ├── text_my_first_function4.py │ └── text_my_first_function5.py ├── example_logic │ ├── example_logic.tox │ ├── readme.md │ ├── text_comparing_different_CHOPs1.py │ ├── text_comparing_different_CHOPs2.py │ ├── text_comparing_different_CHOPs3.py │ ├── text_if_elif_with_unexpected_result.py │ ├── text_if_with_references.py │ ├── text_nested_logical_structures.py │ ├── text_references_and_printing1.py │ ├── text_references_and_printing2.py │ ├── text_references_and_printing_rounding1.py │ ├── text_references_and_printing_rounding2.py │ ├── text_revised_if_elif_test.py │ ├── text_simple_logic_pass.py │ ├── text_simple_logic_test.py │ ├── text_the_channel_class.py │ ├── text_two_variable_if_elif.py │ ├── text_using_and.py │ ├── text_using_and_in_elif.py │ ├── text_using_not.py │ ├── text_using_not_with_two_variables.py │ └── text_using_or.py ├── example_modules │ ├── example_modules.tox │ ├── readme.md │ ├── text_calling_a_dictionary.py │ ├── text_dictionary_as_module.py │ ├── text_log_example.py │ ├── text_module1.py │ ├── text_module_simple.py │ ├── text_printing_doc_strings_the_easy_way.py │ ├── text_printing_doc_strings_the_hard_way.py │ ├── text_simple_reutrn.py │ ├── text_variables.py │ └── text_variables_in_modules.py ├── example_op_class │ ├── example_op_class.tox │ ├── readme.md │ ├── text_change_op_color.py │ ├── text_create_ops.py │ ├── text_create_ops_loop.txt │ └── text_restore_op_color.py ├── example_print │ ├── example_print.tox │ ├── readme.md │ ├── text_read_me_floats.md │ ├── text_read_me_ints.md │ ├── text_read_me_strings.md │ └── text_read_me_strings_and_nubmers.md ├── example_variables │ ├── example_references │ │ ├── example_references.tox │ │ └── readme.md │ ├── example_variables.tox │ └── readme.md └── python_in_touchdesigner.toe ├── 099 ├── README.md ├── base_inheritance_099.tox └── base_the_channel_class.tox └── README.md /088/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/.gitignore -------------------------------------------------------------------------------- /088/base_dictionary_sorting.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/base_dictionary_sorting.tox -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_dictionary/data_structures_dictionary.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_dictionary/data_structures_dictionary.tox -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_dictionary/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_dictionary/readme.md -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_dictionary/text_adding_dictionary_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_dictionary/text_adding_dictionary_items.py -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_dictionary/text_first_dictionary1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_dictionary/text_first_dictionary1.py -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_dictionary/text_first_dictionary2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_dictionary/text_first_dictionary2.py -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_dictionary/text_first_dictionary3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_dictionary/text_first_dictionary3.py -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_dictionary/text_first_dictionary4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_dictionary/text_first_dictionary4.py -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_dictionary/text_read_me_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_dictionary/text_read_me_examples.py -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_dictionary/text_top_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_dictionary/text_top_dictionary.py -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_dictionary/text_top_dictionary_presets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_dictionary/text_top_dictionary_presets.py -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_dictionary/text_top_dictionary_presets1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_dictionary/text_top_dictionary_presets1.py -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_dictionary/text_top_dictionary_presets2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_dictionary/text_top_dictionary_presets2.py -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_list/container_radio_buttons.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_list/container_radio_buttons.tox -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_list/data_structures_list.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_list/data_structures_list.tox -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_list/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_list/readme.md -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_list/text_accessing_a_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_list/text_accessing_a_list.py -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_list/text_appending_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_list/text_appending_lists.py -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_list/text_channels_and_lists1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_list/text_channels_and_lists1.py -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_list/text_channels_and_lists2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_list/text_channels_and_lists2.py -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_list/text_containers_and_lists1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_list/text_containers_and_lists1.py -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_list/text_grocery_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_list/text_grocery_list.py -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_list/text_items_in_our_first_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_list/text_items_in_our_first_list.py -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_list/text_lists_in_lsts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_list/text_lists_in_lsts.py -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_list/text_our_first_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_list/text_our_first_list.py -------------------------------------------------------------------------------- /088/example_data_structures/data_structures_list/text_sops_and_lists1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/data_structures_list/text_sops_and_lists1.py -------------------------------------------------------------------------------- /088/example_data_structures/example_data_structures.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/example_data_structures.tox -------------------------------------------------------------------------------- /088/example_data_structures/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_data_structures/readme.md -------------------------------------------------------------------------------- /088/example_dictionary_loops/example_dictionary_loops.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_dictionary_loops/example_dictionary_loops.tox -------------------------------------------------------------------------------- /088/example_dictionary_loops/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_dictionary_loops/readme.md -------------------------------------------------------------------------------- /088/example_dictionary_loops/simple_mod_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_dictionary_loops/simple_mod_example.py -------------------------------------------------------------------------------- /088/example_dictionary_loops/text_cue_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_dictionary_loops/text_cue_list.py -------------------------------------------------------------------------------- /088/example_dictionary_loops/text_cue_list_play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_dictionary_loops/text_cue_list_play.py -------------------------------------------------------------------------------- /088/example_dictionary_loops/text_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_dictionary_loops/text_data.py -------------------------------------------------------------------------------- /088/example_dictionary_loops/text_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_dictionary_loops/text_defaults.py -------------------------------------------------------------------------------- /088/example_dictionary_loops/text_execute_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_dictionary_loops/text_execute_loop.py -------------------------------------------------------------------------------- /088/example_dictionary_loops/text_execute_loop_pars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_dictionary_loops/text_execute_loop_pars.py -------------------------------------------------------------------------------- /088/example_dictionary_loops/text_replicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_dictionary_loops/text_replicator.py -------------------------------------------------------------------------------- /088/example_dictionary_loops/text_simple_dictionary_loop0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_dictionary_loops/text_simple_dictionary_loop0.py -------------------------------------------------------------------------------- /088/example_dictionary_loops/text_simple_dictionary_loop1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_dictionary_loops/text_simple_dictionary_loop1.py -------------------------------------------------------------------------------- /088/example_dictionary_loops/text_simple_dictionary_loop2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_dictionary_loops/text_simple_dictionary_loop2.py -------------------------------------------------------------------------------- /088/example_dictionary_loops/text_simple_dictionary_loop3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_dictionary_loops/text_simple_dictionary_loop3.py -------------------------------------------------------------------------------- /088/example_dictionary_loops/text_simple_dictionary_loop4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_dictionary_loops/text_simple_dictionary_loop4.py -------------------------------------------------------------------------------- /088/example_dictionary_loops/text_simple_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_dictionary_loops/text_simple_json.json -------------------------------------------------------------------------------- /088/example_dictionary_loops/text_test_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_dictionary_loops/text_test_dictionary.py -------------------------------------------------------------------------------- /088/example_dictionary_loops/text_using_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_dictionary_loops/text_using_json.py -------------------------------------------------------------------------------- /088/example_executes/example_executes.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_executes/example_executes.tox -------------------------------------------------------------------------------- /088/example_executes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_executes/readme.md -------------------------------------------------------------------------------- /088/example_extensions/example_extensions.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_extensions/example_extensions.tox -------------------------------------------------------------------------------- /088/example_extensions/example_extensions_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_extensions/example_extensions_class.py -------------------------------------------------------------------------------- /088/example_extensions/log_files/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_extensions/log_files/log.txt -------------------------------------------------------------------------------- /088/example_extensions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_extensions/readme.md -------------------------------------------------------------------------------- /088/example_extensions/text_test_clear.py: -------------------------------------------------------------------------------- 1 | parent().Clear_log() -------------------------------------------------------------------------------- /088/example_extensions/text_test_date_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_extensions/text_test_date_time.py -------------------------------------------------------------------------------- /088/example_extensions/text_test_log_compact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_extensions/text_test_log_compact.py -------------------------------------------------------------------------------- /088/example_extensions/text_test_log_verbose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_extensions/text_test_log_verbose.py -------------------------------------------------------------------------------- /088/example_extensions/text_test_save.py: -------------------------------------------------------------------------------- 1 | parent().Save_log() -------------------------------------------------------------------------------- /088/example_for_loop/example_for_loop.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_for_loop/example_for_loop.tox -------------------------------------------------------------------------------- /088/example_for_loop/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_for_loop/readme.md -------------------------------------------------------------------------------- /088/example_for_loop/text_a_first_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_for_loop/text_a_first_loop.py -------------------------------------------------------------------------------- /088/example_for_loop/text_a_first_loop2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_for_loop/text_a_first_loop2.py -------------------------------------------------------------------------------- /088/example_for_loop/text_channels_as_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_for_loop/text_channels_as_lists.py -------------------------------------------------------------------------------- /088/example_for_loop/text_create_ops_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_for_loop/text_create_ops_loop.py -------------------------------------------------------------------------------- /088/example_for_loop/text_enumerating_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_for_loop/text_enumerating_lists.py -------------------------------------------------------------------------------- /088/example_for_loop/text_filling_a_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_for_loop/text_filling_a_table.py -------------------------------------------------------------------------------- /088/example_for_loop/text_list_comprehensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_for_loop/text_list_comprehensions.py -------------------------------------------------------------------------------- /088/example_for_loop/text_pars_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_for_loop/text_pars_loop.py -------------------------------------------------------------------------------- /088/example_for_loop/text_tex3d_fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_for_loop/text_tex3d_fill.py -------------------------------------------------------------------------------- /088/example_for_loop/text_working_with_table_DATs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_for_loop/text_working_with_table_DATs.py -------------------------------------------------------------------------------- /088/example_intro_to_functions/example_intro_to_functions.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_intro_to_functions/example_intro_to_functions.tox -------------------------------------------------------------------------------- /088/example_intro_to_functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_intro_to_functions/readme.md -------------------------------------------------------------------------------- /088/example_intro_to_functions/text_my_first_function1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_intro_to_functions/text_my_first_function1.py -------------------------------------------------------------------------------- /088/example_intro_to_functions/text_my_first_function2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_intro_to_functions/text_my_first_function2.py -------------------------------------------------------------------------------- /088/example_intro_to_functions/text_my_first_function3.1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_intro_to_functions/text_my_first_function3.1.py -------------------------------------------------------------------------------- /088/example_intro_to_functions/text_my_first_function3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_intro_to_functions/text_my_first_function3.py -------------------------------------------------------------------------------- /088/example_intro_to_functions/text_my_first_function4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_intro_to_functions/text_my_first_function4.py -------------------------------------------------------------------------------- /088/example_intro_to_functions/text_my_first_function5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_intro_to_functions/text_my_first_function5.py -------------------------------------------------------------------------------- /088/example_logic/example_logic.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/example_logic.tox -------------------------------------------------------------------------------- /088/example_logic/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/readme.md -------------------------------------------------------------------------------- /088/example_logic/text_comparing_different_CHOPs1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/text_comparing_different_CHOPs1.py -------------------------------------------------------------------------------- /088/example_logic/text_comparing_different_CHOPs2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/text_comparing_different_CHOPs2.py -------------------------------------------------------------------------------- /088/example_logic/text_comparing_different_CHOPs3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/text_comparing_different_CHOPs3.py -------------------------------------------------------------------------------- /088/example_logic/text_if_elif_with_unexpected_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/text_if_elif_with_unexpected_result.py -------------------------------------------------------------------------------- /088/example_logic/text_if_with_references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/text_if_with_references.py -------------------------------------------------------------------------------- /088/example_logic/text_nested_logical_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/text_nested_logical_structures.py -------------------------------------------------------------------------------- /088/example_logic/text_references_and_printing1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/text_references_and_printing1.py -------------------------------------------------------------------------------- /088/example_logic/text_references_and_printing2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/text_references_and_printing2.py -------------------------------------------------------------------------------- /088/example_logic/text_references_and_printing_rounding1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/text_references_and_printing_rounding1.py -------------------------------------------------------------------------------- /088/example_logic/text_references_and_printing_rounding2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/text_references_and_printing_rounding2.py -------------------------------------------------------------------------------- /088/example_logic/text_revised_if_elif_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/text_revised_if_elif_test.py -------------------------------------------------------------------------------- /088/example_logic/text_simple_logic_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/text_simple_logic_pass.py -------------------------------------------------------------------------------- /088/example_logic/text_simple_logic_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/text_simple_logic_test.py -------------------------------------------------------------------------------- /088/example_logic/text_the_channel_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/text_the_channel_class.py -------------------------------------------------------------------------------- /088/example_logic/text_two_variable_if_elif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/text_two_variable_if_elif.py -------------------------------------------------------------------------------- /088/example_logic/text_using_and.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/text_using_and.py -------------------------------------------------------------------------------- /088/example_logic/text_using_and_in_elif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/text_using_and_in_elif.py -------------------------------------------------------------------------------- /088/example_logic/text_using_not.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/text_using_not.py -------------------------------------------------------------------------------- /088/example_logic/text_using_not_with_two_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/text_using_not_with_two_variables.py -------------------------------------------------------------------------------- /088/example_logic/text_using_or.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_logic/text_using_or.py -------------------------------------------------------------------------------- /088/example_modules/example_modules.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_modules/example_modules.tox -------------------------------------------------------------------------------- /088/example_modules/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_modules/readme.md -------------------------------------------------------------------------------- /088/example_modules/text_calling_a_dictionary.py: -------------------------------------------------------------------------------- 1 | print( mod( 'text_dictionary_as_module' ).fruit ) -------------------------------------------------------------------------------- /088/example_modules/text_dictionary_as_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_modules/text_dictionary_as_module.py -------------------------------------------------------------------------------- /088/example_modules/text_log_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_modules/text_log_example.py -------------------------------------------------------------------------------- /088/example_modules/text_module1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_modules/text_module1.py -------------------------------------------------------------------------------- /088/example_modules/text_module_simple.py: -------------------------------------------------------------------------------- 1 | print( mod( 'text_module1' ).Full_date() ) -------------------------------------------------------------------------------- /088/example_modules/text_printing_doc_strings_the_easy_way.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_modules/text_printing_doc_strings_the_easy_way.py -------------------------------------------------------------------------------- /088/example_modules/text_printing_doc_strings_the_hard_way.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_modules/text_printing_doc_strings_the_hard_way.py -------------------------------------------------------------------------------- /088/example_modules/text_simple_reutrn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_modules/text_simple_reutrn.py -------------------------------------------------------------------------------- /088/example_modules/text_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_modules/text_variables.py -------------------------------------------------------------------------------- /088/example_modules/text_variables_in_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_modules/text_variables_in_modules.py -------------------------------------------------------------------------------- /088/example_op_class/example_op_class.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_op_class/example_op_class.tox -------------------------------------------------------------------------------- /088/example_op_class/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_op_class/readme.md -------------------------------------------------------------------------------- /088/example_op_class/text_change_op_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_op_class/text_change_op_color.py -------------------------------------------------------------------------------- /088/example_op_class/text_create_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_op_class/text_create_ops.py -------------------------------------------------------------------------------- /088/example_op_class/text_create_ops_loop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_op_class/text_create_ops_loop.txt -------------------------------------------------------------------------------- /088/example_op_class/text_restore_op_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_op_class/text_restore_op_color.py -------------------------------------------------------------------------------- /088/example_print/example_print.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_print/example_print.tox -------------------------------------------------------------------------------- /088/example_print/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_print/readme.md -------------------------------------------------------------------------------- /088/example_print/text_read_me_floats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_print/text_read_me_floats.md -------------------------------------------------------------------------------- /088/example_print/text_read_me_ints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_print/text_read_me_ints.md -------------------------------------------------------------------------------- /088/example_print/text_read_me_strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_print/text_read_me_strings.md -------------------------------------------------------------------------------- /088/example_print/text_read_me_strings_and_nubmers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_print/text_read_me_strings_and_nubmers.md -------------------------------------------------------------------------------- /088/example_variables/example_references/example_references.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_variables/example_references/example_references.tox -------------------------------------------------------------------------------- /088/example_variables/example_references/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_variables/example_references/readme.md -------------------------------------------------------------------------------- /088/example_variables/example_variables.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_variables/example_variables.tox -------------------------------------------------------------------------------- /088/example_variables/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/example_variables/readme.md -------------------------------------------------------------------------------- /088/python_in_touchdesigner.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/088/python_in_touchdesigner.toe -------------------------------------------------------------------------------- /099/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/099/README.md -------------------------------------------------------------------------------- /099/base_inheritance_099.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/099/base_inheritance_099.tox -------------------------------------------------------------------------------- /099/base_the_channel_class.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/099/base_the_channel_class.tox -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/python_for_td/HEAD/README.md --------------------------------------------------------------------------------