├── .gitignore ├── README.md ├── aifc_writer.py ├── aiff_reader.py ├── applications ├── psg_mp3_player.py └── wx_video_player.py ├── archiving ├── create_zip.py ├── creating_tarfile.py ├── reading_tarfile.py └── tar_extractall.py ├── argument_parsing ├── arg_demo.py ├── argparse_with_args.py ├── file_parser_with_description.py └── mutually_exclusive_args.py ├── async_comprehension.py ├── class_attributes.py ├── class_properties ├── chained_method.py ├── fee_property.py ├── fee_property2.py ├── getter_setter.py └── property_example.py ├── classmethods_example.py ├── data_descriptor.py ├── dearpygui_examples ├── dearpy_demo.py └── hello_world.py ├── debugging ├── debug_code.py ├── debug_code_with_breakpoint.py └── debug_code_with_settrace.py ├── decorators ├── decorator.py ├── decorator_as_a_class.py ├── decorator_with_args.py ├── decorator_without_at.py ├── doubler.py └── stacked_decorators.py ├── descriptor_validation.py ├── email ├── email_with_attachment.py ├── pop_email.py ├── pop_email_decoded.py └── send_email.py ├── excel ├── background_colors.py └── cell_text_alignment.py ├── exercises ├── loop_errror.py ├── math.py ├── non_functional.py └── shadow_function.py ├── games └── tic-tac-toe-pysimplegui │ ├── 01_app.py │ ├── 02_add_ui.py │ ├── 03_add_x_o.py │ ├── 04_final.py │ └── assets │ ├── BLANK.png │ ├── O.png │ └── X.png ├── getattr_hack.py ├── graphs ├── annotating.py ├── bar_chart_watermark.py ├── bokeh_sine.py ├── excel_bar_chart_3d.py ├── line_plot.py ├── matplotlib_bar_chart.py ├── matplotlib_subplots.py ├── matplotlib_subplots_mosaic.py └── seaborn_pie_chart.py ├── guis ├── kivy_boxlayout.py ├── psg_matplotlib.py └── wx_plotting.py ├── hello_excel.py ├── hello_json.py ├── hello_reportlab.py ├── hello_xml.py ├── images ├── lighthouse.jpg ├── watermark.py └── watermark_with_transparecy.py ├── logging ├── log_filter.py ├── log_formatting.py ├── log_multiple_locations.py ├── logging.conf ├── logging_1.py ├── logging_2.py ├── logging_3.py ├── logging_config_file.py ├── logging_dict_config.py ├── logging_exception_decorator.py ├── logging_smtp_handler.py ├── logging_stream_handler.py ├── rotating_log.py └── timed_rotating_log.py ├── pandas_examples ├── bar_plot.py ├── books.csv ├── books.xlsx ├── counting.py ├── create_excel.py ├── csv_to_excel.py ├── csv_to_sqlite.py ├── excel_to_csv.py ├── pandas.ipynb ├── pandas_books.csv ├── pandas_crosstab.py ├── read_excel_by_sheet.py ├── reading_csv.py └── reading_json.py ├── pdfs ├── borb_demo.py ├── buffalo.jpg ├── demo.pdf ├── flowers_dallas.jpg ├── img2pdf.py ├── imgs2pdf.py └── lighthouse.jpg ├── pop_quizzes ├── loosened_decorators.py └── nested_zero_division_error.py ├── profiling └── sample.py ├── read_source.py ├── regular_expressions ├── using_compile.py ├── using_findall.py └── using_search.py ├── sftp_example.py ├── single.py ├── standard_library ├── functools │ ├── decorator_with_wraps.py │ ├── decorator_without_wraps.py │ ├── functools_partial.py │ └── passing_partials.py └── itertools │ ├── itertools_count.py │ ├── itertools_cycle.py │ └── itertools_islice.py ├── system_admin └── get_mac_address.py ├── testing ├── dtest.py ├── mock_patch_urllib.py ├── mock_side_effect.py ├── mymath.py ├── test_mymath.py └── webreader.py ├── turtle_examples ├── olympics.py ├── pie_chart.py ├── rosette.py ├── square_offsets.py └── star.py ├── wav_writer.py ├── web_scraping ├── get_articles.py └── scrapy_spider.py ├── word └── creating_document.py └── youtube_video_downloader.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/README.md -------------------------------------------------------------------------------- /aifc_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/aifc_writer.py -------------------------------------------------------------------------------- /aiff_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/aiff_reader.py -------------------------------------------------------------------------------- /applications/psg_mp3_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/applications/psg_mp3_player.py -------------------------------------------------------------------------------- /applications/wx_video_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/applications/wx_video_player.py -------------------------------------------------------------------------------- /archiving/create_zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/archiving/create_zip.py -------------------------------------------------------------------------------- /archiving/creating_tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/archiving/creating_tarfile.py -------------------------------------------------------------------------------- /archiving/reading_tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/archiving/reading_tarfile.py -------------------------------------------------------------------------------- /archiving/tar_extractall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/archiving/tar_extractall.py -------------------------------------------------------------------------------- /argument_parsing/arg_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/argument_parsing/arg_demo.py -------------------------------------------------------------------------------- /argument_parsing/argparse_with_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/argument_parsing/argparse_with_args.py -------------------------------------------------------------------------------- /argument_parsing/file_parser_with_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/argument_parsing/file_parser_with_description.py -------------------------------------------------------------------------------- /argument_parsing/mutually_exclusive_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/argument_parsing/mutually_exclusive_args.py -------------------------------------------------------------------------------- /async_comprehension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/async_comprehension.py -------------------------------------------------------------------------------- /class_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/class_attributes.py -------------------------------------------------------------------------------- /class_properties/chained_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/class_properties/chained_method.py -------------------------------------------------------------------------------- /class_properties/fee_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/class_properties/fee_property.py -------------------------------------------------------------------------------- /class_properties/fee_property2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/class_properties/fee_property2.py -------------------------------------------------------------------------------- /class_properties/getter_setter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/class_properties/getter_setter.py -------------------------------------------------------------------------------- /class_properties/property_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/class_properties/property_example.py -------------------------------------------------------------------------------- /classmethods_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/classmethods_example.py -------------------------------------------------------------------------------- /data_descriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/data_descriptor.py -------------------------------------------------------------------------------- /dearpygui_examples/dearpy_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/dearpygui_examples/dearpy_demo.py -------------------------------------------------------------------------------- /dearpygui_examples/hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/dearpygui_examples/hello_world.py -------------------------------------------------------------------------------- /debugging/debug_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/debugging/debug_code.py -------------------------------------------------------------------------------- /debugging/debug_code_with_breakpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/debugging/debug_code_with_breakpoint.py -------------------------------------------------------------------------------- /debugging/debug_code_with_settrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/debugging/debug_code_with_settrace.py -------------------------------------------------------------------------------- /decorators/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/decorators/decorator.py -------------------------------------------------------------------------------- /decorators/decorator_as_a_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/decorators/decorator_as_a_class.py -------------------------------------------------------------------------------- /decorators/decorator_with_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/decorators/decorator_with_args.py -------------------------------------------------------------------------------- /decorators/decorator_without_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/decorators/decorator_without_at.py -------------------------------------------------------------------------------- /decorators/doubler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/decorators/doubler.py -------------------------------------------------------------------------------- /decorators/stacked_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/decorators/stacked_decorators.py -------------------------------------------------------------------------------- /descriptor_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/descriptor_validation.py -------------------------------------------------------------------------------- /email/email_with_attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/email/email_with_attachment.py -------------------------------------------------------------------------------- /email/pop_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/email/pop_email.py -------------------------------------------------------------------------------- /email/pop_email_decoded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/email/pop_email_decoded.py -------------------------------------------------------------------------------- /email/send_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/email/send_email.py -------------------------------------------------------------------------------- /excel/background_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/excel/background_colors.py -------------------------------------------------------------------------------- /excel/cell_text_alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/excel/cell_text_alignment.py -------------------------------------------------------------------------------- /exercises/loop_errror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/exercises/loop_errror.py -------------------------------------------------------------------------------- /exercises/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/exercises/math.py -------------------------------------------------------------------------------- /exercises/non_functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/exercises/non_functional.py -------------------------------------------------------------------------------- /exercises/shadow_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/exercises/shadow_function.py -------------------------------------------------------------------------------- /games/tic-tac-toe-pysimplegui/01_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/games/tic-tac-toe-pysimplegui/01_app.py -------------------------------------------------------------------------------- /games/tic-tac-toe-pysimplegui/02_add_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/games/tic-tac-toe-pysimplegui/02_add_ui.py -------------------------------------------------------------------------------- /games/tic-tac-toe-pysimplegui/03_add_x_o.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/games/tic-tac-toe-pysimplegui/03_add_x_o.py -------------------------------------------------------------------------------- /games/tic-tac-toe-pysimplegui/04_final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/games/tic-tac-toe-pysimplegui/04_final.py -------------------------------------------------------------------------------- /games/tic-tac-toe-pysimplegui/assets/BLANK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/games/tic-tac-toe-pysimplegui/assets/BLANK.png -------------------------------------------------------------------------------- /games/tic-tac-toe-pysimplegui/assets/O.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/games/tic-tac-toe-pysimplegui/assets/O.png -------------------------------------------------------------------------------- /games/tic-tac-toe-pysimplegui/assets/X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/games/tic-tac-toe-pysimplegui/assets/X.png -------------------------------------------------------------------------------- /getattr_hack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/getattr_hack.py -------------------------------------------------------------------------------- /graphs/annotating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/graphs/annotating.py -------------------------------------------------------------------------------- /graphs/bar_chart_watermark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/graphs/bar_chart_watermark.py -------------------------------------------------------------------------------- /graphs/bokeh_sine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/graphs/bokeh_sine.py -------------------------------------------------------------------------------- /graphs/excel_bar_chart_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/graphs/excel_bar_chart_3d.py -------------------------------------------------------------------------------- /graphs/line_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/graphs/line_plot.py -------------------------------------------------------------------------------- /graphs/matplotlib_bar_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/graphs/matplotlib_bar_chart.py -------------------------------------------------------------------------------- /graphs/matplotlib_subplots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/graphs/matplotlib_subplots.py -------------------------------------------------------------------------------- /graphs/matplotlib_subplots_mosaic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/graphs/matplotlib_subplots_mosaic.py -------------------------------------------------------------------------------- /graphs/seaborn_pie_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/graphs/seaborn_pie_chart.py -------------------------------------------------------------------------------- /guis/kivy_boxlayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/guis/kivy_boxlayout.py -------------------------------------------------------------------------------- /guis/psg_matplotlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/guis/psg_matplotlib.py -------------------------------------------------------------------------------- /guis/wx_plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/guis/wx_plotting.py -------------------------------------------------------------------------------- /hello_excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/hello_excel.py -------------------------------------------------------------------------------- /hello_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/hello_json.py -------------------------------------------------------------------------------- /hello_reportlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/hello_reportlab.py -------------------------------------------------------------------------------- /hello_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/hello_xml.py -------------------------------------------------------------------------------- /images/lighthouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/images/lighthouse.jpg -------------------------------------------------------------------------------- /images/watermark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/images/watermark.py -------------------------------------------------------------------------------- /images/watermark_with_transparecy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/images/watermark_with_transparecy.py -------------------------------------------------------------------------------- /logging/log_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/logging/log_filter.py -------------------------------------------------------------------------------- /logging/log_formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/logging/log_formatting.py -------------------------------------------------------------------------------- /logging/log_multiple_locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/logging/log_multiple_locations.py -------------------------------------------------------------------------------- /logging/logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/logging/logging.conf -------------------------------------------------------------------------------- /logging/logging_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/logging/logging_1.py -------------------------------------------------------------------------------- /logging/logging_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/logging/logging_2.py -------------------------------------------------------------------------------- /logging/logging_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/logging/logging_3.py -------------------------------------------------------------------------------- /logging/logging_config_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/logging/logging_config_file.py -------------------------------------------------------------------------------- /logging/logging_dict_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/logging/logging_dict_config.py -------------------------------------------------------------------------------- /logging/logging_exception_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/logging/logging_exception_decorator.py -------------------------------------------------------------------------------- /logging/logging_smtp_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/logging/logging_smtp_handler.py -------------------------------------------------------------------------------- /logging/logging_stream_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/logging/logging_stream_handler.py -------------------------------------------------------------------------------- /logging/rotating_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/logging/rotating_log.py -------------------------------------------------------------------------------- /logging/timed_rotating_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/logging/timed_rotating_log.py -------------------------------------------------------------------------------- /pandas_examples/bar_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pandas_examples/bar_plot.py -------------------------------------------------------------------------------- /pandas_examples/books.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pandas_examples/books.csv -------------------------------------------------------------------------------- /pandas_examples/books.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pandas_examples/books.xlsx -------------------------------------------------------------------------------- /pandas_examples/counting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pandas_examples/counting.py -------------------------------------------------------------------------------- /pandas_examples/create_excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pandas_examples/create_excel.py -------------------------------------------------------------------------------- /pandas_examples/csv_to_excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pandas_examples/csv_to_excel.py -------------------------------------------------------------------------------- /pandas_examples/csv_to_sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pandas_examples/csv_to_sqlite.py -------------------------------------------------------------------------------- /pandas_examples/excel_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pandas_examples/excel_to_csv.py -------------------------------------------------------------------------------- /pandas_examples/pandas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pandas_examples/pandas.ipynb -------------------------------------------------------------------------------- /pandas_examples/pandas_books.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pandas_examples/pandas_books.csv -------------------------------------------------------------------------------- /pandas_examples/pandas_crosstab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pandas_examples/pandas_crosstab.py -------------------------------------------------------------------------------- /pandas_examples/read_excel_by_sheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pandas_examples/read_excel_by_sheet.py -------------------------------------------------------------------------------- /pandas_examples/reading_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pandas_examples/reading_csv.py -------------------------------------------------------------------------------- /pandas_examples/reading_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pandas_examples/reading_json.py -------------------------------------------------------------------------------- /pdfs/borb_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pdfs/borb_demo.py -------------------------------------------------------------------------------- /pdfs/buffalo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pdfs/buffalo.jpg -------------------------------------------------------------------------------- /pdfs/demo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pdfs/demo.pdf -------------------------------------------------------------------------------- /pdfs/flowers_dallas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pdfs/flowers_dallas.jpg -------------------------------------------------------------------------------- /pdfs/img2pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pdfs/img2pdf.py -------------------------------------------------------------------------------- /pdfs/imgs2pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pdfs/imgs2pdf.py -------------------------------------------------------------------------------- /pdfs/lighthouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pdfs/lighthouse.jpg -------------------------------------------------------------------------------- /pop_quizzes/loosened_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pop_quizzes/loosened_decorators.py -------------------------------------------------------------------------------- /pop_quizzes/nested_zero_division_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/pop_quizzes/nested_zero_division_error.py -------------------------------------------------------------------------------- /profiling/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/profiling/sample.py -------------------------------------------------------------------------------- /read_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/read_source.py -------------------------------------------------------------------------------- /regular_expressions/using_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/regular_expressions/using_compile.py -------------------------------------------------------------------------------- /regular_expressions/using_findall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/regular_expressions/using_findall.py -------------------------------------------------------------------------------- /regular_expressions/using_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/regular_expressions/using_search.py -------------------------------------------------------------------------------- /sftp_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/sftp_example.py -------------------------------------------------------------------------------- /single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/single.py -------------------------------------------------------------------------------- /standard_library/functools/decorator_with_wraps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/standard_library/functools/decorator_with_wraps.py -------------------------------------------------------------------------------- /standard_library/functools/decorator_without_wraps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/standard_library/functools/decorator_without_wraps.py -------------------------------------------------------------------------------- /standard_library/functools/functools_partial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/standard_library/functools/functools_partial.py -------------------------------------------------------------------------------- /standard_library/functools/passing_partials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/standard_library/functools/passing_partials.py -------------------------------------------------------------------------------- /standard_library/itertools/itertools_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/standard_library/itertools/itertools_count.py -------------------------------------------------------------------------------- /standard_library/itertools/itertools_cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/standard_library/itertools/itertools_cycle.py -------------------------------------------------------------------------------- /standard_library/itertools/itertools_islice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/standard_library/itertools/itertools_islice.py -------------------------------------------------------------------------------- /system_admin/get_mac_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/system_admin/get_mac_address.py -------------------------------------------------------------------------------- /testing/dtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/testing/dtest.py -------------------------------------------------------------------------------- /testing/mock_patch_urllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/testing/mock_patch_urllib.py -------------------------------------------------------------------------------- /testing/mock_side_effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/testing/mock_side_effect.py -------------------------------------------------------------------------------- /testing/mymath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/testing/mymath.py -------------------------------------------------------------------------------- /testing/test_mymath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/testing/test_mymath.py -------------------------------------------------------------------------------- /testing/webreader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/testing/webreader.py -------------------------------------------------------------------------------- /turtle_examples/olympics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/turtle_examples/olympics.py -------------------------------------------------------------------------------- /turtle_examples/pie_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/turtle_examples/pie_chart.py -------------------------------------------------------------------------------- /turtle_examples/rosette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/turtle_examples/rosette.py -------------------------------------------------------------------------------- /turtle_examples/square_offsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/turtle_examples/square_offsets.py -------------------------------------------------------------------------------- /turtle_examples/star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/turtle_examples/star.py -------------------------------------------------------------------------------- /wav_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/wav_writer.py -------------------------------------------------------------------------------- /web_scraping/get_articles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/web_scraping/get_articles.py -------------------------------------------------------------------------------- /web_scraping/scrapy_spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/web_scraping/scrapy_spider.py -------------------------------------------------------------------------------- /word/creating_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/word/creating_document.py -------------------------------------------------------------------------------- /youtube_video_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driscollis/pytips/HEAD/youtube_video_downloader.py --------------------------------------------------------------------------------