├── .gitignore ├── B-Tree └── b-tree │ ├── big_o_complexity.py │ ├── binary_search_tree.py │ ├── height_of_btree.py │ ├── red_black_tree.py │ ├── test_binary_search_tree.py │ ├── test_red_black_tree.py │ ├── test_two_three_tree.py │ ├── tree_rotation.py │ ├── two_three_tree.py │ ├── utils.py │ ├── visitor.py │ ├── visitor_anytree.py │ └── visitor_treelib.py ├── BeginnerSession ├── csv-viewer │ ├── 00_preparation │ │ ├── README.md │ │ └── columns.txt │ ├── 01_csv-viewer │ │ ├── t1.py │ │ ├── t2.py │ │ └── t3.py │ ├── 02_cli-tool │ │ ├── t4.py │ │ ├── t5.py │ │ ├── t6.py │ │ └── t7.py │ └── 03_store-database │ │ ├── t10.py │ │ ├── t8.py │ │ └── t9.py ├── slack-api │ ├── 00_preparation │ │ └── README.md │ └── 01_post-message │ │ ├── t1.py │ │ ├── t2.py │ │ └── t3.py └── yahoo-japan-api │ ├── 00_preparation │ └── README.md │ └── 01_auction │ └── t1.py ├── BizPy ├── openpyxl │ ├── 20200212 │ │ ├── copy_worksheet.py │ │ ├── create_worksheet.py │ │ ├── load_workbook.py │ │ ├── read_all_cells.py │ │ ├── read_single_cell.py │ │ ├── remove_worksheet.py │ │ ├── sample-data │ │ │ └── opendata_lg_list.xlsx │ │ ├── write_cell.py │ │ └── write_cell_with_style.py │ ├── 20200415 │ │ ├── README.md │ │ ├── cli_sample1.py │ │ ├── cli_sample2.py │ │ ├── data │ │ │ ├── opendata_lg_list.xlsx │ │ │ ├── sample.md │ │ │ ├── sample.txt │ │ │ └── sub │ │ │ │ ├── population.xlsx │ │ │ │ └── test.txt │ │ └── original_sample.py │ ├── 20200513 │ │ ├── README.md │ │ ├── bubble_charts.py │ │ ├── doughnut_charts.py │ │ ├── horizontal_chart.py │ │ ├── line_charts.py │ │ ├── monthly_sales.csv │ │ ├── pie_charts.py │ │ ├── population.csv │ │ ├── store_sales.csv │ │ ├── store_sales_share.csv │ │ ├── vertical_chart.py │ │ ├── vertical_chart_percent_stacked.py │ │ └── vertical_chart_stacked.py │ └── 20200610 │ │ ├── README.md │ │ ├── classic_cell.py │ │ ├── classic_formula.py │ │ ├── color_scale.py │ │ ├── data_bar.py │ │ ├── dump_rule.py │ │ └── icon_set.py ├── slack │ ├── 20211027 │ │ ├── README.md │ │ ├── authentication1.png │ │ ├── authorization1.png │ │ ├── bizpy_bot.py │ │ ├── slack-app-bot-overview1.png │ │ ├── slack-create-app1.png │ │ ├── slack-create-app2.png │ │ ├── slack-create-app3.png │ │ ├── slack-create-app4.png │ │ ├── slack-create-app5.png │ │ ├── slack-create-app6.png │ │ ├── slack-integration-workflow-shortcut1.png │ │ ├── slack-integration-workflow-step1.png │ │ ├── slack-integration-workflow1.png │ │ └── slack-integration-workflow2.png │ ├── 20211110 │ │ ├── README.md │ │ ├── bizpy_bot.py │ │ ├── slack-bot-app-home1.png │ │ ├── slack-bot-app-home2.png │ │ ├── slack-bot-app-home3.png │ │ ├── slack-bot-app-home4.png │ │ ├── slack-bot-app-home5.png │ │ └── slack-simplepoll-app-home1.png │ └── 20211201 │ │ ├── README.md │ │ ├── bizpy_bot.py │ │ ├── slack-bot-chat-message1.png │ │ ├── slack-bot-slash-command1.png │ │ ├── slack-bot-slash-command2.png │ │ ├── slack-bot-slash-command3.png │ │ └── slack-bot-slash-command4.png ├── testing │ └── 20201014 │ │ ├── README.md │ │ ├── contents.json │ │ ├── pytest_utils.py │ │ ├── test_utils.py │ │ └── utils.py └── webapi │ ├── 20200708 │ ├── README.md │ ├── answer_phone.py │ ├── answer_sms.py │ ├── make_call.py │ ├── send_sms.py │ ├── send_sms_with_media.py │ └── slack_send_message.py │ ├── 20200812 │ ├── README.md │ ├── hiragana_translation.py │ ├── janome_analyzer.py │ ├── janome_noun.py │ ├── janome_parse.py │ ├── keyword_extraction.py │ ├── morphological_analysis.py │ ├── named_entity_extraction.py │ ├── slot_value_extraction.py │ ├── textpair_doc.py │ └── time_normalization.py │ └── 20200909 │ ├── README.md │ ├── client.py │ ├── contents.json │ ├── get_wikipedia_contents.py │ ├── get_wikipedia_entities.py │ ├── search.json │ ├── search_wikipedia_contents.py │ └── utils.py ├── ExpertPythonProgramming ├── SecondEdition │ └── 01 │ │ └── future │ │ ├── foo.py │ │ ├── non_future.py │ │ ├── sub │ │ ├── __init__.py │ │ ├── absolute.py │ │ ├── foo.py │ │ └── relative.py │ │ └── use_future.py └── ThirdEdition │ └── 5 │ ├── import-path-hooks │ ├── main.py │ └── other.py │ └── meta-hooks │ ├── main.py │ ├── other.py │ └── sub.py ├── HighPerformancePython ├── 11 │ ├── non_slots_example.py │ └── slots_example.py ├── 01 │ └── vectorization.py ├── 02 │ └── julia1_py3.py ├── 03 │ ├── list_vs_tuple.py │ └── use_bisect.py ├── 04 │ ├── compare_namespace.py │ └── create_large_dict.py ├── 05 │ ├── test.txt │ └── yield_sample.py └── 08 │ ├── yield_from1.py │ └── yield_from2.py ├── LICENSE ├── LanguageProcessing └── 100-knocks-2015 │ ├── README.md │ └── chapter1 │ ├── 00.py │ ├── 01.py │ ├── 02.py │ ├── 03.py │ ├── 04.py │ ├── 05.py │ └── 06.py ├── MiniOsaka ├── abc_like_interface.py ├── demo_greet.py ├── demo_greetable1.py ├── demo_greetable2.py ├── demo_greetable_protocol.py ├── demo_typehint.py ├── forward_reference.py ├── forward_reference_error.py ├── generics.py ├── generics_class_subscript.py ├── metaclass.py ├── namedtuple_class.py ├── namedtuple_normal.py ├── namedtuple_typing.py ├── newtype_class.py ├── newtype_typing.py ├── nominal_subtyping.py ├── normaldict.py ├── return_generic_func.py ├── structural_subtyping.py ├── typeddict.py ├── typeddict_class.py └── typeddict_total.py ├── NFC_NFD_problem ├── NFC_sample1.txt ├── NFC_sample2.txt ├── NFD_sample1.txt ├── NFD_sample2.txt ├── read_file_and_normalize.py ├── read_file_and_print.py └── read_file_and_show_unicode_name.py ├── Python36ReleaseParty └── async │ ├── async_comprehension_example.py │ ├── async_comprehension_example_kai1.py │ ├── async_for_example_pep492.py │ ├── async_for_example_pep492_kai1.py │ ├── async_for_example_pep525.py │ ├── async_iter_ticker.py │ ├── producer_consumer_pattern_generator_based_coroutine.py │ ├── producer_consumer_pattern_native_coroutine.py │ ├── surprising_generator.py │ ├── surprising_generator_async.py │ ├── yield_from1.py │ └── yield_from2.py ├── PythonHackerGuideBook ├── 9 │ ├── README.md │ ├── adder.py │ ├── hyadder.hy │ ├── unparse_hy_ast.py │ └── use_ast_from_source.py └── 13 │ ├── oop1.py │ ├── oop2.py │ ├── overload1.py │ ├── overload2.py │ ├── overload3.py │ ├── overload4.py │ ├── singledispatch_sample1.py │ └── singledispatch_sample2.py ├── README.md ├── ScrapingWithBS4 ├── impress_book_reprint_list_all.py └── impress_book_reprint_list_dekiru.py ├── SearchString ├── boyer_moore_horspool.py ├── boyer_moore_sunday.py ├── brute_force_search.py ├── data │ ├── 28HYOGO.CSV │ ├── KEN_ALL.CSV │ └── readme.txt ├── simplified_boyer_moore.py ├── test_search.py └── utils.py ├── StartPython └── 75 │ ├── README.md │ ├── enum1.py │ ├── enum2.py │ ├── enum3.py │ ├── enum4.py │ ├── enum5.py │ ├── metaclass1.py │ └── test.py ├── Testing ├── 00_virtualenv │ └── README.md ├── 01_use_standard_library_only │ ├── README.md │ ├── doctest_sample.py │ └── unittest_tests │ │ ├── __init__.py │ │ ├── test_sample1.py │ │ ├── test_sample2.py │ │ └── test_sample3.py ├── 02_use_3rd_party │ ├── README.md │ ├── package-sample │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── README.md │ │ ├── mypackage │ │ │ ├── __init__.py │ │ │ ├── main.py │ │ │ └── utils.py │ │ ├── setup.py │ │ ├── tests │ │ │ └── test_enum.py │ │ └── tox.ini │ └── pytest_sample │ │ ├── bad_coding_style.py │ │ └── tests │ │ ├── test_assert.py │ │ ├── test_fixture.py │ │ └── test_parameterize.py ├── 03_use_type_hint │ ├── README.md │ ├── error_sample1.py │ ├── type_hint_builtin_types.py │ ├── type_hint_classes.py │ ├── type_hint_complicated.py │ └── type_hint_functions.py └── README.md ├── docx └── read_footnote │ └── read_docx_footnotes.py └── profiler └── profiler.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/.gitignore -------------------------------------------------------------------------------- /B-Tree/b-tree/big_o_complexity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/B-Tree/b-tree/big_o_complexity.py -------------------------------------------------------------------------------- /B-Tree/b-tree/binary_search_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/B-Tree/b-tree/binary_search_tree.py -------------------------------------------------------------------------------- /B-Tree/b-tree/height_of_btree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/B-Tree/b-tree/height_of_btree.py -------------------------------------------------------------------------------- /B-Tree/b-tree/red_black_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/B-Tree/b-tree/red_black_tree.py -------------------------------------------------------------------------------- /B-Tree/b-tree/test_binary_search_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/B-Tree/b-tree/test_binary_search_tree.py -------------------------------------------------------------------------------- /B-Tree/b-tree/test_red_black_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/B-Tree/b-tree/test_red_black_tree.py -------------------------------------------------------------------------------- /B-Tree/b-tree/test_two_three_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/B-Tree/b-tree/test_two_three_tree.py -------------------------------------------------------------------------------- /B-Tree/b-tree/tree_rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/B-Tree/b-tree/tree_rotation.py -------------------------------------------------------------------------------- /B-Tree/b-tree/two_three_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/B-Tree/b-tree/two_three_tree.py -------------------------------------------------------------------------------- /B-Tree/b-tree/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/B-Tree/b-tree/utils.py -------------------------------------------------------------------------------- /B-Tree/b-tree/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/B-Tree/b-tree/visitor.py -------------------------------------------------------------------------------- /B-Tree/b-tree/visitor_anytree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/B-Tree/b-tree/visitor_anytree.py -------------------------------------------------------------------------------- /B-Tree/b-tree/visitor_treelib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/B-Tree/b-tree/visitor_treelib.py -------------------------------------------------------------------------------- /BeginnerSession/csv-viewer/00_preparation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BeginnerSession/csv-viewer/00_preparation/README.md -------------------------------------------------------------------------------- /BeginnerSession/csv-viewer/00_preparation/columns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BeginnerSession/csv-viewer/00_preparation/columns.txt -------------------------------------------------------------------------------- /BeginnerSession/csv-viewer/01_csv-viewer/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BeginnerSession/csv-viewer/01_csv-viewer/t1.py -------------------------------------------------------------------------------- /BeginnerSession/csv-viewer/01_csv-viewer/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BeginnerSession/csv-viewer/01_csv-viewer/t2.py -------------------------------------------------------------------------------- /BeginnerSession/csv-viewer/01_csv-viewer/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BeginnerSession/csv-viewer/01_csv-viewer/t3.py -------------------------------------------------------------------------------- /BeginnerSession/csv-viewer/02_cli-tool/t4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BeginnerSession/csv-viewer/02_cli-tool/t4.py -------------------------------------------------------------------------------- /BeginnerSession/csv-viewer/02_cli-tool/t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BeginnerSession/csv-viewer/02_cli-tool/t5.py -------------------------------------------------------------------------------- /BeginnerSession/csv-viewer/02_cli-tool/t6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BeginnerSession/csv-viewer/02_cli-tool/t6.py -------------------------------------------------------------------------------- /BeginnerSession/csv-viewer/02_cli-tool/t7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BeginnerSession/csv-viewer/02_cli-tool/t7.py -------------------------------------------------------------------------------- /BeginnerSession/csv-viewer/03_store-database/t10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BeginnerSession/csv-viewer/03_store-database/t10.py -------------------------------------------------------------------------------- /BeginnerSession/csv-viewer/03_store-database/t8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BeginnerSession/csv-viewer/03_store-database/t8.py -------------------------------------------------------------------------------- /BeginnerSession/csv-viewer/03_store-database/t9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BeginnerSession/csv-viewer/03_store-database/t9.py -------------------------------------------------------------------------------- /BeginnerSession/slack-api/00_preparation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BeginnerSession/slack-api/00_preparation/README.md -------------------------------------------------------------------------------- /BeginnerSession/slack-api/01_post-message/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BeginnerSession/slack-api/01_post-message/t1.py -------------------------------------------------------------------------------- /BeginnerSession/slack-api/01_post-message/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BeginnerSession/slack-api/01_post-message/t2.py -------------------------------------------------------------------------------- /BeginnerSession/slack-api/01_post-message/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BeginnerSession/slack-api/01_post-message/t3.py -------------------------------------------------------------------------------- /BeginnerSession/yahoo-japan-api/00_preparation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BeginnerSession/yahoo-japan-api/00_preparation/README.md -------------------------------------------------------------------------------- /BeginnerSession/yahoo-japan-api/01_auction/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BeginnerSession/yahoo-japan-api/01_auction/t1.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200212/copy_worksheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200212/copy_worksheet.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200212/create_worksheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200212/create_worksheet.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200212/load_workbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200212/load_workbook.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200212/read_all_cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200212/read_all_cells.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200212/read_single_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200212/read_single_cell.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200212/remove_worksheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200212/remove_worksheet.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200212/sample-data/opendata_lg_list.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200212/sample-data/opendata_lg_list.xlsx -------------------------------------------------------------------------------- /BizPy/openpyxl/20200212/write_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200212/write_cell.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200212/write_cell_with_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200212/write_cell_with_style.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200415/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200415/README.md -------------------------------------------------------------------------------- /BizPy/openpyxl/20200415/cli_sample1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200415/cli_sample1.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200415/cli_sample2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200415/cli_sample2.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200415/data/opendata_lg_list.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200415/data/opendata_lg_list.xlsx -------------------------------------------------------------------------------- /BizPy/openpyxl/20200415/data/sample.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BizPy/openpyxl/20200415/data/sample.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BizPy/openpyxl/20200415/data/sub/population.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200415/data/sub/population.xlsx -------------------------------------------------------------------------------- /BizPy/openpyxl/20200415/data/sub/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BizPy/openpyxl/20200415/original_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200415/original_sample.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200513/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200513/README.md -------------------------------------------------------------------------------- /BizPy/openpyxl/20200513/bubble_charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200513/bubble_charts.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200513/doughnut_charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200513/doughnut_charts.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200513/horizontal_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200513/horizontal_chart.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200513/line_charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200513/line_charts.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200513/monthly_sales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200513/monthly_sales.csv -------------------------------------------------------------------------------- /BizPy/openpyxl/20200513/pie_charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200513/pie_charts.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200513/population.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200513/population.csv -------------------------------------------------------------------------------- /BizPy/openpyxl/20200513/store_sales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200513/store_sales.csv -------------------------------------------------------------------------------- /BizPy/openpyxl/20200513/store_sales_share.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200513/store_sales_share.csv -------------------------------------------------------------------------------- /BizPy/openpyxl/20200513/vertical_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200513/vertical_chart.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200513/vertical_chart_percent_stacked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200513/vertical_chart_percent_stacked.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200513/vertical_chart_stacked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200513/vertical_chart_stacked.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200610/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200610/README.md -------------------------------------------------------------------------------- /BizPy/openpyxl/20200610/classic_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200610/classic_cell.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200610/classic_formula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200610/classic_formula.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200610/color_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200610/color_scale.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200610/data_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200610/data_bar.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200610/dump_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200610/dump_rule.py -------------------------------------------------------------------------------- /BizPy/openpyxl/20200610/icon_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/openpyxl/20200610/icon_set.py -------------------------------------------------------------------------------- /BizPy/slack/20211027/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211027/README.md -------------------------------------------------------------------------------- /BizPy/slack/20211027/authentication1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211027/authentication1.png -------------------------------------------------------------------------------- /BizPy/slack/20211027/authorization1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211027/authorization1.png -------------------------------------------------------------------------------- /BizPy/slack/20211027/bizpy_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211027/bizpy_bot.py -------------------------------------------------------------------------------- /BizPy/slack/20211027/slack-app-bot-overview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211027/slack-app-bot-overview1.png -------------------------------------------------------------------------------- /BizPy/slack/20211027/slack-create-app1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211027/slack-create-app1.png -------------------------------------------------------------------------------- /BizPy/slack/20211027/slack-create-app2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211027/slack-create-app2.png -------------------------------------------------------------------------------- /BizPy/slack/20211027/slack-create-app3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211027/slack-create-app3.png -------------------------------------------------------------------------------- /BizPy/slack/20211027/slack-create-app4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211027/slack-create-app4.png -------------------------------------------------------------------------------- /BizPy/slack/20211027/slack-create-app5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211027/slack-create-app5.png -------------------------------------------------------------------------------- /BizPy/slack/20211027/slack-create-app6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211027/slack-create-app6.png -------------------------------------------------------------------------------- /BizPy/slack/20211027/slack-integration-workflow-shortcut1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211027/slack-integration-workflow-shortcut1.png -------------------------------------------------------------------------------- /BizPy/slack/20211027/slack-integration-workflow-step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211027/slack-integration-workflow-step1.png -------------------------------------------------------------------------------- /BizPy/slack/20211027/slack-integration-workflow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211027/slack-integration-workflow1.png -------------------------------------------------------------------------------- /BizPy/slack/20211027/slack-integration-workflow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211027/slack-integration-workflow2.png -------------------------------------------------------------------------------- /BizPy/slack/20211110/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211110/README.md -------------------------------------------------------------------------------- /BizPy/slack/20211110/bizpy_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211110/bizpy_bot.py -------------------------------------------------------------------------------- /BizPy/slack/20211110/slack-bot-app-home1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211110/slack-bot-app-home1.png -------------------------------------------------------------------------------- /BizPy/slack/20211110/slack-bot-app-home2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211110/slack-bot-app-home2.png -------------------------------------------------------------------------------- /BizPy/slack/20211110/slack-bot-app-home3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211110/slack-bot-app-home3.png -------------------------------------------------------------------------------- /BizPy/slack/20211110/slack-bot-app-home4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211110/slack-bot-app-home4.png -------------------------------------------------------------------------------- /BizPy/slack/20211110/slack-bot-app-home5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211110/slack-bot-app-home5.png -------------------------------------------------------------------------------- /BizPy/slack/20211110/slack-simplepoll-app-home1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211110/slack-simplepoll-app-home1.png -------------------------------------------------------------------------------- /BizPy/slack/20211201/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211201/README.md -------------------------------------------------------------------------------- /BizPy/slack/20211201/bizpy_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211201/bizpy_bot.py -------------------------------------------------------------------------------- /BizPy/slack/20211201/slack-bot-chat-message1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211201/slack-bot-chat-message1.png -------------------------------------------------------------------------------- /BizPy/slack/20211201/slack-bot-slash-command1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211201/slack-bot-slash-command1.png -------------------------------------------------------------------------------- /BizPy/slack/20211201/slack-bot-slash-command2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211201/slack-bot-slash-command2.png -------------------------------------------------------------------------------- /BizPy/slack/20211201/slack-bot-slash-command3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211201/slack-bot-slash-command3.png -------------------------------------------------------------------------------- /BizPy/slack/20211201/slack-bot-slash-command4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/slack/20211201/slack-bot-slash-command4.png -------------------------------------------------------------------------------- /BizPy/testing/20201014/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/testing/20201014/README.md -------------------------------------------------------------------------------- /BizPy/testing/20201014/contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/testing/20201014/contents.json -------------------------------------------------------------------------------- /BizPy/testing/20201014/pytest_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/testing/20201014/pytest_utils.py -------------------------------------------------------------------------------- /BizPy/testing/20201014/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/testing/20201014/test_utils.py -------------------------------------------------------------------------------- /BizPy/testing/20201014/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/testing/20201014/utils.py -------------------------------------------------------------------------------- /BizPy/webapi/20200708/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200708/README.md -------------------------------------------------------------------------------- /BizPy/webapi/20200708/answer_phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200708/answer_phone.py -------------------------------------------------------------------------------- /BizPy/webapi/20200708/answer_sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200708/answer_sms.py -------------------------------------------------------------------------------- /BizPy/webapi/20200708/make_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200708/make_call.py -------------------------------------------------------------------------------- /BizPy/webapi/20200708/send_sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200708/send_sms.py -------------------------------------------------------------------------------- /BizPy/webapi/20200708/send_sms_with_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200708/send_sms_with_media.py -------------------------------------------------------------------------------- /BizPy/webapi/20200708/slack_send_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200708/slack_send_message.py -------------------------------------------------------------------------------- /BizPy/webapi/20200812/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200812/README.md -------------------------------------------------------------------------------- /BizPy/webapi/20200812/hiragana_translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200812/hiragana_translation.py -------------------------------------------------------------------------------- /BizPy/webapi/20200812/janome_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200812/janome_analyzer.py -------------------------------------------------------------------------------- /BizPy/webapi/20200812/janome_noun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200812/janome_noun.py -------------------------------------------------------------------------------- /BizPy/webapi/20200812/janome_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200812/janome_parse.py -------------------------------------------------------------------------------- /BizPy/webapi/20200812/keyword_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200812/keyword_extraction.py -------------------------------------------------------------------------------- /BizPy/webapi/20200812/morphological_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200812/morphological_analysis.py -------------------------------------------------------------------------------- /BizPy/webapi/20200812/named_entity_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200812/named_entity_extraction.py -------------------------------------------------------------------------------- /BizPy/webapi/20200812/slot_value_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200812/slot_value_extraction.py -------------------------------------------------------------------------------- /BizPy/webapi/20200812/textpair_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200812/textpair_doc.py -------------------------------------------------------------------------------- /BizPy/webapi/20200812/time_normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200812/time_normalization.py -------------------------------------------------------------------------------- /BizPy/webapi/20200909/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200909/README.md -------------------------------------------------------------------------------- /BizPy/webapi/20200909/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200909/client.py -------------------------------------------------------------------------------- /BizPy/webapi/20200909/contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200909/contents.json -------------------------------------------------------------------------------- /BizPy/webapi/20200909/get_wikipedia_contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200909/get_wikipedia_contents.py -------------------------------------------------------------------------------- /BizPy/webapi/20200909/get_wikipedia_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200909/get_wikipedia_entities.py -------------------------------------------------------------------------------- /BizPy/webapi/20200909/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200909/search.json -------------------------------------------------------------------------------- /BizPy/webapi/20200909/search_wikipedia_contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200909/search_wikipedia_contents.py -------------------------------------------------------------------------------- /BizPy/webapi/20200909/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/BizPy/webapi/20200909/utils.py -------------------------------------------------------------------------------- /ExpertPythonProgramming/SecondEdition/01/future/foo.py: -------------------------------------------------------------------------------- 1 | print('I am toplevel foo') 2 | -------------------------------------------------------------------------------- /ExpertPythonProgramming/SecondEdition/01/future/non_future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/ExpertPythonProgramming/SecondEdition/01/future/non_future.py -------------------------------------------------------------------------------- /ExpertPythonProgramming/SecondEdition/01/future/sub/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ExpertPythonProgramming/SecondEdition/01/future/sub/absolute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/ExpertPythonProgramming/SecondEdition/01/future/sub/absolute.py -------------------------------------------------------------------------------- /ExpertPythonProgramming/SecondEdition/01/future/sub/foo.py: -------------------------------------------------------------------------------- 1 | print('I am module foo') 2 | -------------------------------------------------------------------------------- /ExpertPythonProgramming/SecondEdition/01/future/sub/relative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/ExpertPythonProgramming/SecondEdition/01/future/sub/relative.py -------------------------------------------------------------------------------- /ExpertPythonProgramming/SecondEdition/01/future/use_future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/ExpertPythonProgramming/SecondEdition/01/future/use_future.py -------------------------------------------------------------------------------- /ExpertPythonProgramming/ThirdEdition/5/import-path-hooks/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/ExpertPythonProgramming/ThirdEdition/5/import-path-hooks/main.py -------------------------------------------------------------------------------- /ExpertPythonProgramming/ThirdEdition/5/import-path-hooks/other.py: -------------------------------------------------------------------------------- 1 | print('other') 2 | -------------------------------------------------------------------------------- /ExpertPythonProgramming/ThirdEdition/5/meta-hooks/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/ExpertPythonProgramming/ThirdEdition/5/meta-hooks/main.py -------------------------------------------------------------------------------- /ExpertPythonProgramming/ThirdEdition/5/meta-hooks/other.py: -------------------------------------------------------------------------------- 1 | print('ohter') 2 | -------------------------------------------------------------------------------- /ExpertPythonProgramming/ThirdEdition/5/meta-hooks/sub.py: -------------------------------------------------------------------------------- 1 | print('sub') 2 | -------------------------------------------------------------------------------- /HighPerformancePython/01/vectorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/HighPerformancePython/01/vectorization.py -------------------------------------------------------------------------------- /HighPerformancePython/02/julia1_py3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/HighPerformancePython/02/julia1_py3.py -------------------------------------------------------------------------------- /HighPerformancePython/03/list_vs_tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/HighPerformancePython/03/list_vs_tuple.py -------------------------------------------------------------------------------- /HighPerformancePython/03/use_bisect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/HighPerformancePython/03/use_bisect.py -------------------------------------------------------------------------------- /HighPerformancePython/04/compare_namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/HighPerformancePython/04/compare_namespace.py -------------------------------------------------------------------------------- /HighPerformancePython/04/create_large_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/HighPerformancePython/04/create_large_dict.py -------------------------------------------------------------------------------- /HighPerformancePython/05/test.txt: -------------------------------------------------------------------------------- 1 | abc 2 | def 3 | ghi 4 | jkl 5 | mno 6 | -------------------------------------------------------------------------------- /HighPerformancePython/05/yield_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/HighPerformancePython/05/yield_sample.py -------------------------------------------------------------------------------- /HighPerformancePython/08/yield_from1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/HighPerformancePython/08/yield_from1.py -------------------------------------------------------------------------------- /HighPerformancePython/08/yield_from2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/HighPerformancePython/08/yield_from2.py -------------------------------------------------------------------------------- /HighPerformancePython/11/non_slots_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/HighPerformancePython/11/non_slots_example.py -------------------------------------------------------------------------------- /HighPerformancePython/11/slots_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/HighPerformancePython/11/slots_example.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/LICENSE -------------------------------------------------------------------------------- /LanguageProcessing/100-knocks-2015/README.md: -------------------------------------------------------------------------------- 1 | ## 言語処理100本ノック 2015 2 | 3 | * http://www.cl.ecei.tohoku.ac.jp/nlp100/ 4 | -------------------------------------------------------------------------------- /LanguageProcessing/100-knocks-2015/chapter1/00.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/LanguageProcessing/100-knocks-2015/chapter1/00.py -------------------------------------------------------------------------------- /LanguageProcessing/100-knocks-2015/chapter1/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/LanguageProcessing/100-knocks-2015/chapter1/01.py -------------------------------------------------------------------------------- /LanguageProcessing/100-knocks-2015/chapter1/02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/LanguageProcessing/100-knocks-2015/chapter1/02.py -------------------------------------------------------------------------------- /LanguageProcessing/100-knocks-2015/chapter1/03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/LanguageProcessing/100-knocks-2015/chapter1/03.py -------------------------------------------------------------------------------- /LanguageProcessing/100-knocks-2015/chapter1/04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/LanguageProcessing/100-knocks-2015/chapter1/04.py -------------------------------------------------------------------------------- /LanguageProcessing/100-knocks-2015/chapter1/05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/LanguageProcessing/100-knocks-2015/chapter1/05.py -------------------------------------------------------------------------------- /LanguageProcessing/100-knocks-2015/chapter1/06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/LanguageProcessing/100-knocks-2015/chapter1/06.py -------------------------------------------------------------------------------- /MiniOsaka/abc_like_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/abc_like_interface.py -------------------------------------------------------------------------------- /MiniOsaka/demo_greet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/demo_greet.py -------------------------------------------------------------------------------- /MiniOsaka/demo_greetable1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/demo_greetable1.py -------------------------------------------------------------------------------- /MiniOsaka/demo_greetable2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/demo_greetable2.py -------------------------------------------------------------------------------- /MiniOsaka/demo_greetable_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/demo_greetable_protocol.py -------------------------------------------------------------------------------- /MiniOsaka/demo_typehint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/demo_typehint.py -------------------------------------------------------------------------------- /MiniOsaka/forward_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/forward_reference.py -------------------------------------------------------------------------------- /MiniOsaka/forward_reference_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/forward_reference_error.py -------------------------------------------------------------------------------- /MiniOsaka/generics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/generics.py -------------------------------------------------------------------------------- /MiniOsaka/generics_class_subscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/generics_class_subscript.py -------------------------------------------------------------------------------- /MiniOsaka/metaclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/metaclass.py -------------------------------------------------------------------------------- /MiniOsaka/namedtuple_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/namedtuple_class.py -------------------------------------------------------------------------------- /MiniOsaka/namedtuple_normal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/namedtuple_normal.py -------------------------------------------------------------------------------- /MiniOsaka/namedtuple_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/namedtuple_typing.py -------------------------------------------------------------------------------- /MiniOsaka/newtype_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/newtype_class.py -------------------------------------------------------------------------------- /MiniOsaka/newtype_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/newtype_typing.py -------------------------------------------------------------------------------- /MiniOsaka/nominal_subtyping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/nominal_subtyping.py -------------------------------------------------------------------------------- /MiniOsaka/normaldict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/normaldict.py -------------------------------------------------------------------------------- /MiniOsaka/return_generic_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/return_generic_func.py -------------------------------------------------------------------------------- /MiniOsaka/structural_subtyping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/structural_subtyping.py -------------------------------------------------------------------------------- /MiniOsaka/typeddict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/typeddict.py -------------------------------------------------------------------------------- /MiniOsaka/typeddict_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/typeddict_class.py -------------------------------------------------------------------------------- /MiniOsaka/typeddict_total.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/MiniOsaka/typeddict_total.py -------------------------------------------------------------------------------- /NFC_NFD_problem/NFC_sample1.txt: -------------------------------------------------------------------------------- 1 | プログラミング 2 | -------------------------------------------------------------------------------- /NFC_NFD_problem/NFC_sample2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/NFC_NFD_problem/NFC_sample2.txt -------------------------------------------------------------------------------- /NFC_NFD_problem/NFD_sample1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/NFC_NFD_problem/NFD_sample1.txt -------------------------------------------------------------------------------- /NFC_NFD_problem/NFD_sample2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/NFC_NFD_problem/NFD_sample2.txt -------------------------------------------------------------------------------- /NFC_NFD_problem/read_file_and_normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/NFC_NFD_problem/read_file_and_normalize.py -------------------------------------------------------------------------------- /NFC_NFD_problem/read_file_and_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/NFC_NFD_problem/read_file_and_print.py -------------------------------------------------------------------------------- /NFC_NFD_problem/read_file_and_show_unicode_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/NFC_NFD_problem/read_file_and_show_unicode_name.py -------------------------------------------------------------------------------- /Python36ReleaseParty/async/async_comprehension_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Python36ReleaseParty/async/async_comprehension_example.py -------------------------------------------------------------------------------- /Python36ReleaseParty/async/async_comprehension_example_kai1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Python36ReleaseParty/async/async_comprehension_example_kai1.py -------------------------------------------------------------------------------- /Python36ReleaseParty/async/async_for_example_pep492.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Python36ReleaseParty/async/async_for_example_pep492.py -------------------------------------------------------------------------------- /Python36ReleaseParty/async/async_for_example_pep492_kai1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Python36ReleaseParty/async/async_for_example_pep492_kai1.py -------------------------------------------------------------------------------- /Python36ReleaseParty/async/async_for_example_pep525.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Python36ReleaseParty/async/async_for_example_pep525.py -------------------------------------------------------------------------------- /Python36ReleaseParty/async/async_iter_ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Python36ReleaseParty/async/async_iter_ticker.py -------------------------------------------------------------------------------- /Python36ReleaseParty/async/producer_consumer_pattern_generator_based_coroutine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Python36ReleaseParty/async/producer_consumer_pattern_generator_based_coroutine.py -------------------------------------------------------------------------------- /Python36ReleaseParty/async/producer_consumer_pattern_native_coroutine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Python36ReleaseParty/async/producer_consumer_pattern_native_coroutine.py -------------------------------------------------------------------------------- /Python36ReleaseParty/async/surprising_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Python36ReleaseParty/async/surprising_generator.py -------------------------------------------------------------------------------- /Python36ReleaseParty/async/surprising_generator_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Python36ReleaseParty/async/surprising_generator_async.py -------------------------------------------------------------------------------- /Python36ReleaseParty/async/yield_from1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Python36ReleaseParty/async/yield_from1.py -------------------------------------------------------------------------------- /Python36ReleaseParty/async/yield_from2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Python36ReleaseParty/async/yield_from2.py -------------------------------------------------------------------------------- /PythonHackerGuideBook/13/oop1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/PythonHackerGuideBook/13/oop1.py -------------------------------------------------------------------------------- /PythonHackerGuideBook/13/oop2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/PythonHackerGuideBook/13/oop2.py -------------------------------------------------------------------------------- /PythonHackerGuideBook/13/overload1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/PythonHackerGuideBook/13/overload1.py -------------------------------------------------------------------------------- /PythonHackerGuideBook/13/overload2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/PythonHackerGuideBook/13/overload2.py -------------------------------------------------------------------------------- /PythonHackerGuideBook/13/overload3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/PythonHackerGuideBook/13/overload3.py -------------------------------------------------------------------------------- /PythonHackerGuideBook/13/overload4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/PythonHackerGuideBook/13/overload4.py -------------------------------------------------------------------------------- /PythonHackerGuideBook/13/singledispatch_sample1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/PythonHackerGuideBook/13/singledispatch_sample1.py -------------------------------------------------------------------------------- /PythonHackerGuideBook/13/singledispatch_sample2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/PythonHackerGuideBook/13/singledispatch_sample2.py -------------------------------------------------------------------------------- /PythonHackerGuideBook/9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/PythonHackerGuideBook/9/README.md -------------------------------------------------------------------------------- /PythonHackerGuideBook/9/adder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/PythonHackerGuideBook/9/adder.py -------------------------------------------------------------------------------- /PythonHackerGuideBook/9/hyadder.hy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/PythonHackerGuideBook/9/hyadder.hy -------------------------------------------------------------------------------- /PythonHackerGuideBook/9/unparse_hy_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/PythonHackerGuideBook/9/unparse_hy_ast.py -------------------------------------------------------------------------------- /PythonHackerGuideBook/9/use_ast_from_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/PythonHackerGuideBook/9/use_ast_from_source.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/README.md -------------------------------------------------------------------------------- /ScrapingWithBS4/impress_book_reprint_list_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/ScrapingWithBS4/impress_book_reprint_list_all.py -------------------------------------------------------------------------------- /ScrapingWithBS4/impress_book_reprint_list_dekiru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/ScrapingWithBS4/impress_book_reprint_list_dekiru.py -------------------------------------------------------------------------------- /SearchString/boyer_moore_horspool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/SearchString/boyer_moore_horspool.py -------------------------------------------------------------------------------- /SearchString/boyer_moore_sunday.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/SearchString/boyer_moore_sunday.py -------------------------------------------------------------------------------- /SearchString/brute_force_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/SearchString/brute_force_search.py -------------------------------------------------------------------------------- /SearchString/data/28HYOGO.CSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/SearchString/data/28HYOGO.CSV -------------------------------------------------------------------------------- /SearchString/data/KEN_ALL.CSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/SearchString/data/KEN_ALL.CSV -------------------------------------------------------------------------------- /SearchString/data/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/SearchString/data/readme.txt -------------------------------------------------------------------------------- /SearchString/simplified_boyer_moore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/SearchString/simplified_boyer_moore.py -------------------------------------------------------------------------------- /SearchString/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/SearchString/test_search.py -------------------------------------------------------------------------------- /SearchString/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/SearchString/utils.py -------------------------------------------------------------------------------- /StartPython/75/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/StartPython/75/README.md -------------------------------------------------------------------------------- /StartPython/75/enum1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/StartPython/75/enum1.py -------------------------------------------------------------------------------- /StartPython/75/enum2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/StartPython/75/enum2.py -------------------------------------------------------------------------------- /StartPython/75/enum3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/StartPython/75/enum3.py -------------------------------------------------------------------------------- /StartPython/75/enum4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/StartPython/75/enum4.py -------------------------------------------------------------------------------- /StartPython/75/enum5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/StartPython/75/enum5.py -------------------------------------------------------------------------------- /StartPython/75/metaclass1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/StartPython/75/metaclass1.py -------------------------------------------------------------------------------- /StartPython/75/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/StartPython/75/test.py -------------------------------------------------------------------------------- /Testing/00_virtualenv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/00_virtualenv/README.md -------------------------------------------------------------------------------- /Testing/01_use_standard_library_only/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/01_use_standard_library_only/README.md -------------------------------------------------------------------------------- /Testing/01_use_standard_library_only/doctest_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/01_use_standard_library_only/doctest_sample.py -------------------------------------------------------------------------------- /Testing/01_use_standard_library_only/unittest_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/01_use_standard_library_only/unittest_tests/test_sample1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/01_use_standard_library_only/unittest_tests/test_sample1.py -------------------------------------------------------------------------------- /Testing/01_use_standard_library_only/unittest_tests/test_sample2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/01_use_standard_library_only/unittest_tests/test_sample2.py -------------------------------------------------------------------------------- /Testing/01_use_standard_library_only/unittest_tests/test_sample3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/01_use_standard_library_only/unittest_tests/test_sample3.py -------------------------------------------------------------------------------- /Testing/02_use_3rd_party/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/02_use_3rd_party/README.md -------------------------------------------------------------------------------- /Testing/02_use_3rd_party/package-sample/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/02_use_3rd_party/package-sample/LICENSE -------------------------------------------------------------------------------- /Testing/02_use_3rd_party/package-sample/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/02_use_3rd_party/package-sample/MANIFEST.in -------------------------------------------------------------------------------- /Testing/02_use_3rd_party/package-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/02_use_3rd_party/package-sample/README.md -------------------------------------------------------------------------------- /Testing/02_use_3rd_party/package-sample/mypackage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/02_use_3rd_party/package-sample/mypackage/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/02_use_3rd_party/package-sample/mypackage/main.py -------------------------------------------------------------------------------- /Testing/02_use_3rd_party/package-sample/mypackage/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/02_use_3rd_party/package-sample/mypackage/utils.py -------------------------------------------------------------------------------- /Testing/02_use_3rd_party/package-sample/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/02_use_3rd_party/package-sample/setup.py -------------------------------------------------------------------------------- /Testing/02_use_3rd_party/package-sample/tests/test_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/02_use_3rd_party/package-sample/tests/test_enum.py -------------------------------------------------------------------------------- /Testing/02_use_3rd_party/package-sample/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/02_use_3rd_party/package-sample/tox.ini -------------------------------------------------------------------------------- /Testing/02_use_3rd_party/pytest_sample/bad_coding_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/02_use_3rd_party/pytest_sample/bad_coding_style.py -------------------------------------------------------------------------------- /Testing/02_use_3rd_party/pytest_sample/tests/test_assert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/02_use_3rd_party/pytest_sample/tests/test_assert.py -------------------------------------------------------------------------------- /Testing/02_use_3rd_party/pytest_sample/tests/test_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/02_use_3rd_party/pytest_sample/tests/test_fixture.py -------------------------------------------------------------------------------- /Testing/02_use_3rd_party/pytest_sample/tests/test_parameterize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/02_use_3rd_party/pytest_sample/tests/test_parameterize.py -------------------------------------------------------------------------------- /Testing/03_use_type_hint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/03_use_type_hint/README.md -------------------------------------------------------------------------------- /Testing/03_use_type_hint/error_sample1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/03_use_type_hint/error_sample1.py -------------------------------------------------------------------------------- /Testing/03_use_type_hint/type_hint_builtin_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/03_use_type_hint/type_hint_builtin_types.py -------------------------------------------------------------------------------- /Testing/03_use_type_hint/type_hint_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/03_use_type_hint/type_hint_classes.py -------------------------------------------------------------------------------- /Testing/03_use_type_hint/type_hint_complicated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/03_use_type_hint/type_hint_complicated.py -------------------------------------------------------------------------------- /Testing/03_use_type_hint/type_hint_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/03_use_type_hint/type_hint_functions.py -------------------------------------------------------------------------------- /Testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/Testing/README.md -------------------------------------------------------------------------------- /docx/read_footnote/read_docx_footnotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/docx/read_footnote/read_docx_footnotes.py -------------------------------------------------------------------------------- /profiler/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/python-study/HEAD/profiler/profiler.py --------------------------------------------------------------------------------