├── .gitignore ├── .upload.py.kate-swp ├── README ├── TODO.md ├── appendix ├── about.html ├── abstracts.html ├── examples.html ├── fdl.html ├── fdl_aggregation.html ├── fdl_applicability.html ├── fdl_collections.html ├── fdl_combining.html ├── fdl_copying.html ├── fdl_copyinginquantity.html ├── fdl_future.html ├── fdl_howto.html ├── fdl_modifications.html ├── fdl_termination.html ├── fdl_translation.html ├── furtherreading.html ├── history.html ├── license.html ├── license_terms.html └── tips.html ├── css └── diveintopython.css ├── diveintopython.css ├── diveintopython.es ├── .dip.html.kate-swp ├── about.html ├── abstracts.html ├── apihelper_alltogether.html ├── apihelper_andor.html ├── apihelper_builtin.html ├── apihelper_divein.html ├── apihelper_filter.html ├── apihelper_getattr.html ├── apihelper_lambda.html ├── apihelper_optional.html ├── apihelper_summary.html ├── css │ ├── .diveintopython.css.kate-swp │ ├── diveintopython.css │ └── diveintopython.css~ ├── dip.html ├── examples.html ├── fdl.html ├── fdl_aggregation.html ├── fdl_applicability.html ├── fdl_collections.html ├── fdl_combining.html ├── fdl_copying.html ├── fdl_copyinginquantity.html ├── fdl_future.html ├── fdl_howto.html ├── fdl_modifications.html ├── fdl_termination.html ├── fdl_translation.html ├── furtherreading.html ├── history.html ├── images │ ├── callouts │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ ├── caution.png │ ├── diveintopython.png │ ├── dot.png │ ├── important.png │ ├── note.png │ ├── tip.png │ └── warning.png ├── index.html ├── index.html~ ├── license.html ├── license_terms.html ├── odbchelper_dict.html ├── odbchelper_divein.html ├── odbchelper_docstring.html ├── odbchelper_funcdef.html ├── odbchelper_indenting.html ├── odbchelper_join.html ├── odbchelper_list.html ├── odbchelper_map.html ├── odbchelper_multiassign.html ├── odbchelper_objects.html ├── odbchelper_stringformatting.html ├── odbchelper_summary.html ├── odbchelper_testing.html ├── odbchelper_tuple.html ├── odbchelper_vardef.html ├── scrape.py ├── scrape.py~ ├── tips.html ├── toc.html └── upload.py ├── diveintopython.fr ├── .scrape.py.kate-swp ├── appendix │ ├── fdl.html │ └── license.html ├── diveintopython.adrahon.org │ └── index.html ├── file_handling │ ├── all_together.html │ ├── for_loops.html │ ├── more_on_modules.html │ └── summary.html ├── getting_to_know_python │ ├── declaring_functions.html │ ├── documenting_functions.html │ ├── everything_is_an_object.html │ ├── indenting_code.html │ ├── index.html │ └── testing_modules.html ├── html_processing │ ├── all_together.html │ ├── basehtmlprocessor.html │ ├── dictionary_based_string_formatting.html │ ├── extracting_data.html │ ├── index.html │ ├── introducing_sgmllib.html │ ├── quoting_attribute_values.html │ └── summary.html ├── index.html ├── installing_python │ ├── debian.html │ ├── index.html │ ├── macos9.html │ ├── macosx.html │ ├── redhat.html │ ├── shell.html │ ├── source.html │ ├── summary.html │ └── windows.html ├── native_data_types │ ├── declaring_variables.html │ ├── formatting_strings.html │ ├── index.html │ ├── joining_lists.html │ ├── lists.html │ ├── mapping_lists.html │ ├── summary.html │ └── tuples.html ├── object_oriented_framework │ ├── class_attributes.html │ ├── defining_classes.html │ ├── importing_modules.html │ ├── index.html │ ├── instantiating_classes.html │ ├── private_functions.html │ ├── special_class_methods.html │ ├── special_class_methods2.html │ └── summary.html ├── power_of_introspection │ ├── all_together.html │ ├── and_or.html │ ├── built_in_functions.html │ ├── filtering_lists.html │ ├── getattr.html │ ├── index.html │ ├── lambda_functions.html │ ├── optional_arguments.html │ └── summary.html ├── regular_expressions │ ├── index.html │ ├── n_m_syntax.html │ ├── roman_numerals.html │ ├── street_addresses.html │ ├── summary.html │ └── verbose.html ├── scrape.py ├── scrape.py~ ├── scripts_and_streams │ └── stdin_stdout_stderr.html └── toc │ ├── index.html │ └── index.html.bak ├── diveintopython.it ├── .dip.html.kate-swp ├── .scrape.py.kate-swp ├── appendix │ ├── about.html │ ├── abstracts.html │ ├── examples.html │ ├── fdl.html │ ├── fdl_aggregation.html │ ├── fdl_applicability.html │ ├── fdl_collections.html │ ├── fdl_combining.html │ ├── fdl_copying.html │ ├── fdl_copyinginquantity.html │ ├── fdl_future.html │ ├── fdl_howto.html │ ├── fdl_modifications.html │ ├── fdl_termination.html │ ├── fdl_translation.html │ ├── furtherreading.html │ ├── history.html │ ├── license.html │ ├── license_terms.html │ └── tips.html ├── css │ ├── .diveintopython.css.kate-swp │ ├── diveintopython.css │ └── diveintopython.css~ ├── dip.html ├── dip.html~ ├── download │ └── diveintopython-pdf-it-2.0.zip ├── getting_to_know_python │ ├── declaring_functions.html │ ├── declaring_variables.html │ ├── dictionaries.html │ ├── documenting_functions.html │ ├── everything_is_an_object.html │ ├── formatting_strings.html │ ├── indenting_code.html │ ├── index.html │ ├── joining_lists.html │ ├── lists.html │ ├── mapping_lists.html │ ├── multiple_values.html │ ├── summary.html │ ├── testing_modules.html │ └── tuples.html ├── html_processing │ ├── all_together.html │ ├── basehtmlprocessor.html │ ├── dialect.html │ ├── dictionary_based_string_formatting.html │ ├── extracting_data.html │ ├── index.html │ ├── introducing_sgmllib.html │ ├── locals_and_globals.html │ ├── quoting_attribute_values.html │ ├── regular_expressions.html │ └── summary.html ├── images │ ├── callouts │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ ├── caution.png │ ├── diveintopython.png │ ├── dot.png │ ├── important.png │ ├── note.png │ ├── tip.png │ └── warning.png ├── index.html ├── index.html.1 ├── installing_python │ ├── debian.html │ ├── index.html │ ├── macos9.html │ ├── macosx.html │ ├── redhat.html │ ├── shell.html │ ├── source.html │ ├── summary.html │ └── windows.html ├── it.diveintopython.org │ └── index.html ├── object_oriented_framework │ ├── all_together.html │ ├── class_attributes.html │ ├── defining_classes.html │ ├── file_objects.html │ ├── for_loops.html │ ├── handling_exceptions.html │ ├── importing_modules.html │ ├── index.html │ ├── instantiating_classes.html │ ├── more_on_modules.html │ ├── os_module.html │ ├── private_functions.html │ ├── special_class_methods.html │ ├── special_class_methods2.html │ ├── summary.html │ └── userdict.html ├── power_of_introspection │ ├── all_together.html │ ├── and_or.html │ ├── built_in_functions.html │ ├── filtering_lists.html │ ├── getattr.html │ ├── index.html │ ├── lambda_functions.html │ ├── optional_arguments.html │ └── summary.html ├── regression_testing │ ├── all_together_part_1.html │ ├── data_centric.html │ ├── dynamic_import.html │ ├── filtering_lists.html │ ├── finding_the_path.html │ ├── index.html │ ├── inside_pyunit.html │ └── mapping_lists.html ├── scrape.py ├── scrape.py~ ├── toc │ ├── index.html │ └── index.html.1 ├── unit_testing │ ├── handling_bugs.html │ ├── handling_changing_requirements.html │ ├── index.html │ ├── postscript.html │ ├── refactoring.html │ ├── romantest.html │ ├── stage_1.html │ ├── stage_2.html │ ├── stage_3.html │ ├── stage_4.html │ ├── stage_5.html │ ├── summary.html │ ├── testing_for_failure.html │ ├── testing_for_sanity.html │ └── testing_for_success.html ├── upload.py ├── upload.py~ └── xml_processing │ ├── all_together.html │ ├── attributes.html │ ├── caching.html │ ├── child_nodes.html │ ├── command_line_arguments.html │ ├── handlers_by_node_type.html │ ├── index.html │ ├── input_sources.html │ ├── packages.html │ ├── parsing_xml.html │ ├── searching.html │ ├── stdin_stdout_stderr.html │ ├── summary.html │ └── unicode.html ├── diveintopython.kr ├── .index.htm.kate-swp ├── chapter1.htm ├── chapter2.htm ├── chapter3.htm ├── chapter4.htm ├── chapter5.htm ├── css │ └── diveintopython.css ├── gnufdl.htm ├── gnugpl.htm ├── html │ ├── appendix.htm │ └── gnufdl.htm ├── images │ ├── callouts │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ ├── caution.png │ ├── diveintopython.png │ ├── dot.png │ ├── important.png │ ├── note.png │ ├── tip.png │ └── warning.png ├── index.htm ├── index.htm~ ├── preface.htm ├── upload.py └── upload.py~ ├── diveintopython.ru ├── .dip.html.kate-swp ├── .scrape.py.kate-swp ├── apihelper_alltogether.html ├── apihelper_andor.html ├── apihelper_builtin.html ├── apihelper_divein.html ├── apihelper_filter.html ├── apihelper_getattr.html ├── apihelper_lambda.html ├── apihelper_optional.html ├── apihelper_summary.html ├── css │ └── diveintopython.css ├── dip.html ├── dip.html~ ├── fdl.html ├── fdl_aggregation.html ├── fdl_applicability.html ├── fdl_collections.html ├── fdl_combining.html ├── fdl_copying.html ├── fdl_copyinginquantity.html ├── fdl_future.html ├── fdl_howto.html ├── fdl_modifications.html ├── fdl_termination.html ├── fdl_translation.html ├── fileinfo_alltogether.html ├── fileinfo_class.html ├── fileinfo_classattributes.html ├── fileinfo_divein.html ├── fileinfo_exception.html ├── fileinfo_files.html ├── fileinfo_for.html ├── fileinfo_fromimport.html ├── fileinfo_instantiation.html ├── fileinfo_modules.html ├── fileinfo_morespecial.html ├── fileinfo_os.html ├── fileinfo_private.html ├── fileinfo_specialmethods.html ├── fileinfo_summary.html ├── fileinfo_userdict.html ├── images │ ├── callouts │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ ├── caution.png │ ├── diveintopython.png │ ├── dot.png │ ├── important.png │ ├── logo.png │ ├── logo.png.crdownload │ ├── note.png │ ├── tip.png │ └── warning.png ├── index.html ├── license.html ├── license_terms.html ├── odbchelper_dict.html ├── odbchelper_divein.html ├── odbchelper_docstring.html ├── odbchelper_funcdef.html ├── odbchelper_indenting.html ├── odbchelper_join.html ├── odbchelper_list.html ├── odbchelper_map.html ├── odbchelper_multiassign.html ├── odbchelper_objects.html ├── odbchelper_stringformatting.html ├── odbchelper_summary.html ├── odbchelper_testing.html ├── odbchelper_tuple.html ├── odbchelper_vardef.html ├── preface.html ├── ru.diveintopython.org │ ├── apihelper_alltogether.html │ ├── apihelper_andor.html │ ├── apihelper_builtin.html │ ├── apihelper_divein.html │ ├── apihelper_filter.html │ ├── apihelper_getattr.html │ ├── apihelper_lambda.html │ ├── apihelper_optional.html │ ├── apihelper_summary.html │ ├── fdl.html │ ├── fdl_aggregation.html │ ├── fdl_applicability.html │ ├── fdl_collections.html │ ├── fdl_combining.html │ ├── fdl_copying.html │ ├── fdl_copyinginquantity.html │ ├── fdl_future.html │ ├── fdl_howto.html │ ├── fdl_modifications.html │ ├── fdl_termination.html │ ├── fdl_translation.html │ ├── fileinfo_alltogether.html │ ├── fileinfo_class.html │ ├── fileinfo_classattributes.html │ ├── fileinfo_divein.html │ ├── fileinfo_exception.html │ ├── fileinfo_files.html │ ├── fileinfo_for.html │ ├── fileinfo_fromimport.html │ ├── fileinfo_instantiation.html │ ├── fileinfo_modules.html │ ├── fileinfo_morespecial.html │ ├── fileinfo_os.html │ ├── fileinfo_private.html │ ├── fileinfo_specialmethods.html │ ├── fileinfo_summary.html │ ├── fileinfo_userdict.html │ ├── index.html │ ├── license.html │ ├── license_terms.html │ ├── odbchelper_dict.html │ ├── odbchelper_divein.html │ ├── odbchelper_docstring.html │ ├── odbchelper_funcdef.html │ ├── odbchelper_indenting.html │ ├── odbchelper_join.html │ ├── odbchelper_list.html │ ├── odbchelper_map.html │ ├── odbchelper_multiassign.html │ ├── odbchelper_objects.html │ ├── odbchelper_stringformatting.html │ ├── odbchelper_summary.html │ ├── odbchelper_testing.html │ ├── odbchelper_tuple.html │ ├── odbchelper_vardef.html │ ├── preface.html │ └── toc.html ├── scrape.py ├── scrape.py~ ├── toc.html ├── toc.html.1 ├── toc │ └── toc.html └── upload.py ├── download ├── diveintopython-common-5.4.zip ├── diveintopython-examples-5.4.zip ├── diveintopython-html-5.4 (3).zip ├── diveintopython-html-5.4.zip ├── diveintopython-html-flat-5.4.zip ├── diveintopython-pdf-5.4.zip ├── diveintopython-text-5.4.zip ├── diveintopython-word-5.4.zip ├── diveintopython-xml-5.4 (1).zip ├── diveintopython-xml-5.4.zip └── diveintopython.pdf ├── dynamic_functions ├── index.html ├── stage1.html ├── stage2.html ├── stage3.html ├── stage4.html ├── stage5.html ├── stage6.html └── summary.html ├── file_handling ├── all_together.html ├── file_objects.html ├── for_loops.html ├── index.html ├── more_on_modules.html ├── os_module.html └── summary.html ├── functional_programming ├── all_together.html ├── data_centric.html ├── dynamic_import.html ├── filtering_lists.html ├── finding_the_path.html ├── index.html ├── mapping_lists.html └── summary.html ├── getting_to_know_python ├── declaring_functions.html ├── documenting_functions.html ├── everything_is_an_object.html ├── indenting_code.html ├── indenting_code.html~ ├── index.html └── testing_modules.html ├── history.xml ├── html_processing ├── all_together.html ├── basehtmlprocessor.html ├── dialect.html ├── dictionary_based_string_formatting.html ├── extracting_data.html ├── index.html ├── introducing_sgmllib.html ├── locals_and_globals.html ├── quoting_attribute_values.html └── summary.html ├── http_web_services ├── alltogether.html ├── debugging.html ├── etags.html ├── gzip_compression.html ├── http_features.html ├── index.html ├── redirects.html ├── review.html ├── summary.html └── user_agent.html ├── images ├── callouts │ ├── 1.png │ ├── 10.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png ├── caution.png ├── diveintopython.png ├── dot.png ├── important.png ├── note.png ├── tip.png └── warning.png ├── index.html ├── installing_python ├── debian.html ├── index.html ├── macos9.html ├── macosx.html ├── redhat.html ├── shell.html ├── source.html ├── summary.html └── windows.html ├── native_data_types ├── declaring_variables.html ├── formatting_strings.html ├── index.html ├── joining_lists.html ├── lists.html ├── mapping_lists.html ├── summary.html └── tuples.html ├── object_oriented_framework ├── class_attributes.html ├── defining_classes.html ├── importing_modules.html ├── index.html ├── instantiating_classes.html ├── private_functions.html ├── special_class_methods.html ├── special_class_methods2.html ├── summary.html └── userdict.html ├── performance_tuning ├── dictionary_lookups.html ├── index.html ├── list_operations.html ├── regular_expressions.html ├── string_manipulation.html ├── summary.html └── timeit.html ├── power_of_introspection ├── all_together.html ├── and_or.html ├── built_in_functions.html ├── filtering_lists.html ├── getattr.html ├── index.html ├── lambda_functions.html ├── optional_arguments.html └── summary.html ├── refactoring ├── handling_changing_requirements.html ├── index.html ├── postscript.html ├── refactoring.html └── summary.html ├── regular_expressions ├── index.html ├── n_m_syntax.html ├── phone_numbers.html ├── roman_numerals.html ├── street_addresses.html ├── summary.html └── verbose.html ├── replace.log ├── replace.py ├── scrape.py ├── scrape.pyc ├── scripts_and_streams ├── all_together.html ├── caching.html ├── child_nodes.html ├── command_line_arguments.html ├── handlers_by_node_type.html ├── index.html ├── stdin_stdout_stderr.html └── summary.html ├── searcher.py ├── soap_web_services ├── debugging.html ├── first_steps.html ├── google.html ├── index.html ├── install.html ├── introspection.html ├── summary.html ├── troubleshooting.html └── wsdl.html ├── toc └── index.html ├── unit_testing ├── diving_in.html ├── index.html ├── romantest.html ├── stage_1.html ├── stage_2.html ├── stage_3.html ├── stage_4.html ├── stage_5.html ├── testing_for_failure.html ├── testing_for_sanity.html └── testing_for_success.html ├── upload.py ├── www.diveintopython.org └── index.html └── xml_processing ├── attributes.html ├── index.html ├── packages.html ├── parsing_xml.html ├── searching.html ├── summary.html └── unicode.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/.gitignore -------------------------------------------------------------------------------- /.upload.py.kate-swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/.upload.py.kate-swp -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/README -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/TODO.md -------------------------------------------------------------------------------- /appendix/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/appendix/about.html -------------------------------------------------------------------------------- /appendix/abstracts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/appendix/abstracts.html -------------------------------------------------------------------------------- /appendix/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/appendix/examples.html -------------------------------------------------------------------------------- /appendix/fdl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/appendix/fdl.html -------------------------------------------------------------------------------- /appendix/fdl_aggregation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/appendix/fdl_aggregation.html -------------------------------------------------------------------------------- /appendix/fdl_applicability.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/appendix/fdl_applicability.html -------------------------------------------------------------------------------- /appendix/fdl_collections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/appendix/fdl_collections.html -------------------------------------------------------------------------------- /appendix/fdl_combining.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/appendix/fdl_combining.html -------------------------------------------------------------------------------- /appendix/fdl_copying.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/appendix/fdl_copying.html -------------------------------------------------------------------------------- /appendix/fdl_copyinginquantity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/appendix/fdl_copyinginquantity.html -------------------------------------------------------------------------------- /appendix/fdl_future.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/appendix/fdl_future.html -------------------------------------------------------------------------------- /appendix/fdl_howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/appendix/fdl_howto.html -------------------------------------------------------------------------------- /appendix/fdl_modifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/appendix/fdl_modifications.html -------------------------------------------------------------------------------- /appendix/fdl_termination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/appendix/fdl_termination.html -------------------------------------------------------------------------------- /appendix/fdl_translation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/appendix/fdl_translation.html -------------------------------------------------------------------------------- /appendix/furtherreading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/appendix/furtherreading.html -------------------------------------------------------------------------------- /appendix/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/appendix/history.html -------------------------------------------------------------------------------- /appendix/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/appendix/license.html -------------------------------------------------------------------------------- /appendix/license_terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/appendix/license_terms.html -------------------------------------------------------------------------------- /appendix/tips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/appendix/tips.html -------------------------------------------------------------------------------- /css/diveintopython.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/css/diveintopython.css -------------------------------------------------------------------------------- /diveintopython.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.css -------------------------------------------------------------------------------- /diveintopython.es/.dip.html.kate-swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/.dip.html.kate-swp -------------------------------------------------------------------------------- /diveintopython.es/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/about.html -------------------------------------------------------------------------------- /diveintopython.es/abstracts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/abstracts.html -------------------------------------------------------------------------------- /diveintopython.es/apihelper_alltogether.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/apihelper_alltogether.html -------------------------------------------------------------------------------- /diveintopython.es/apihelper_andor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/apihelper_andor.html -------------------------------------------------------------------------------- /diveintopython.es/apihelper_builtin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/apihelper_builtin.html -------------------------------------------------------------------------------- /diveintopython.es/apihelper_divein.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/apihelper_divein.html -------------------------------------------------------------------------------- /diveintopython.es/apihelper_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/apihelper_filter.html -------------------------------------------------------------------------------- /diveintopython.es/apihelper_getattr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/apihelper_getattr.html -------------------------------------------------------------------------------- /diveintopython.es/apihelper_lambda.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/apihelper_lambda.html -------------------------------------------------------------------------------- /diveintopython.es/apihelper_optional.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/apihelper_optional.html -------------------------------------------------------------------------------- /diveintopython.es/apihelper_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/apihelper_summary.html -------------------------------------------------------------------------------- /diveintopython.es/css/.diveintopython.css.kate-swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/css/.diveintopython.css.kate-swp -------------------------------------------------------------------------------- /diveintopython.es/css/diveintopython.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/css/diveintopython.css -------------------------------------------------------------------------------- /diveintopython.es/css/diveintopython.css~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/css/diveintopython.css~ -------------------------------------------------------------------------------- /diveintopython.es/dip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/dip.html -------------------------------------------------------------------------------- /diveintopython.es/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/examples.html -------------------------------------------------------------------------------- /diveintopython.es/fdl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/fdl.html -------------------------------------------------------------------------------- /diveintopython.es/fdl_aggregation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/fdl_aggregation.html -------------------------------------------------------------------------------- /diveintopython.es/fdl_applicability.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/fdl_applicability.html -------------------------------------------------------------------------------- /diveintopython.es/fdl_collections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/fdl_collections.html -------------------------------------------------------------------------------- /diveintopython.es/fdl_combining.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/fdl_combining.html -------------------------------------------------------------------------------- /diveintopython.es/fdl_copying.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/fdl_copying.html -------------------------------------------------------------------------------- /diveintopython.es/fdl_copyinginquantity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/fdl_copyinginquantity.html -------------------------------------------------------------------------------- /diveintopython.es/fdl_future.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/fdl_future.html -------------------------------------------------------------------------------- /diveintopython.es/fdl_howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/fdl_howto.html -------------------------------------------------------------------------------- /diveintopython.es/fdl_modifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/fdl_modifications.html -------------------------------------------------------------------------------- /diveintopython.es/fdl_termination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/fdl_termination.html -------------------------------------------------------------------------------- /diveintopython.es/fdl_translation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/fdl_translation.html -------------------------------------------------------------------------------- /diveintopython.es/furtherreading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/furtherreading.html -------------------------------------------------------------------------------- /diveintopython.es/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/history.html -------------------------------------------------------------------------------- /diveintopython.es/images/callouts/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/images/callouts/1.png -------------------------------------------------------------------------------- /diveintopython.es/images/callouts/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/images/callouts/10.png -------------------------------------------------------------------------------- /diveintopython.es/images/callouts/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/images/callouts/2.png -------------------------------------------------------------------------------- /diveintopython.es/images/callouts/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/images/callouts/3.png -------------------------------------------------------------------------------- /diveintopython.es/images/callouts/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/images/callouts/4.png -------------------------------------------------------------------------------- /diveintopython.es/images/callouts/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/images/callouts/5.png -------------------------------------------------------------------------------- /diveintopython.es/images/callouts/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/images/callouts/6.png -------------------------------------------------------------------------------- /diveintopython.es/images/callouts/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/images/callouts/7.png -------------------------------------------------------------------------------- /diveintopython.es/images/callouts/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/images/callouts/8.png -------------------------------------------------------------------------------- /diveintopython.es/images/callouts/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/images/callouts/9.png -------------------------------------------------------------------------------- /diveintopython.es/images/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/images/caution.png -------------------------------------------------------------------------------- /diveintopython.es/images/diveintopython.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/images/diveintopython.png -------------------------------------------------------------------------------- /diveintopython.es/images/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/images/dot.png -------------------------------------------------------------------------------- /diveintopython.es/images/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/images/important.png -------------------------------------------------------------------------------- /diveintopython.es/images/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/images/note.png -------------------------------------------------------------------------------- /diveintopython.es/images/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/images/tip.png -------------------------------------------------------------------------------- /diveintopython.es/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/images/warning.png -------------------------------------------------------------------------------- /diveintopython.es/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/index.html -------------------------------------------------------------------------------- /diveintopython.es/index.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/index.html~ -------------------------------------------------------------------------------- /diveintopython.es/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/license.html -------------------------------------------------------------------------------- /diveintopython.es/license_terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/license_terms.html -------------------------------------------------------------------------------- /diveintopython.es/odbchelper_dict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/odbchelper_dict.html -------------------------------------------------------------------------------- /diveintopython.es/odbchelper_divein.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/odbchelper_divein.html -------------------------------------------------------------------------------- /diveintopython.es/odbchelper_docstring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/odbchelper_docstring.html -------------------------------------------------------------------------------- /diveintopython.es/odbchelper_funcdef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/odbchelper_funcdef.html -------------------------------------------------------------------------------- /diveintopython.es/odbchelper_indenting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/odbchelper_indenting.html -------------------------------------------------------------------------------- /diveintopython.es/odbchelper_join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/odbchelper_join.html -------------------------------------------------------------------------------- /diveintopython.es/odbchelper_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/odbchelper_list.html -------------------------------------------------------------------------------- /diveintopython.es/odbchelper_map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/odbchelper_map.html -------------------------------------------------------------------------------- /diveintopython.es/odbchelper_multiassign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/odbchelper_multiassign.html -------------------------------------------------------------------------------- /diveintopython.es/odbchelper_objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/odbchelper_objects.html -------------------------------------------------------------------------------- /diveintopython.es/odbchelper_stringformatting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/odbchelper_stringformatting.html -------------------------------------------------------------------------------- /diveintopython.es/odbchelper_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/odbchelper_summary.html -------------------------------------------------------------------------------- /diveintopython.es/odbchelper_testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/odbchelper_testing.html -------------------------------------------------------------------------------- /diveintopython.es/odbchelper_tuple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/odbchelper_tuple.html -------------------------------------------------------------------------------- /diveintopython.es/odbchelper_vardef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/odbchelper_vardef.html -------------------------------------------------------------------------------- /diveintopython.es/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/scrape.py -------------------------------------------------------------------------------- /diveintopython.es/scrape.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/scrape.py~ -------------------------------------------------------------------------------- /diveintopython.es/tips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/tips.html -------------------------------------------------------------------------------- /diveintopython.es/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/toc.html -------------------------------------------------------------------------------- /diveintopython.es/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.es/upload.py -------------------------------------------------------------------------------- /diveintopython.fr/.scrape.py.kate-swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/.scrape.py.kate-swp -------------------------------------------------------------------------------- /diveintopython.fr/appendix/fdl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/appendix/fdl.html -------------------------------------------------------------------------------- /diveintopython.fr/appendix/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/appendix/license.html -------------------------------------------------------------------------------- /diveintopython.fr/diveintopython.adrahon.org/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/diveintopython.adrahon.org/index.html -------------------------------------------------------------------------------- /diveintopython.fr/file_handling/all_together.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/file_handling/all_together.html -------------------------------------------------------------------------------- /diveintopython.fr/file_handling/for_loops.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/file_handling/for_loops.html -------------------------------------------------------------------------------- /diveintopython.fr/file_handling/more_on_modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/file_handling/more_on_modules.html -------------------------------------------------------------------------------- /diveintopython.fr/file_handling/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/file_handling/summary.html -------------------------------------------------------------------------------- /diveintopython.fr/getting_to_know_python/declaring_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/getting_to_know_python/declaring_functions.html -------------------------------------------------------------------------------- /diveintopython.fr/getting_to_know_python/documenting_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/getting_to_know_python/documenting_functions.html -------------------------------------------------------------------------------- /diveintopython.fr/getting_to_know_python/everything_is_an_object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/getting_to_know_python/everything_is_an_object.html -------------------------------------------------------------------------------- /diveintopython.fr/getting_to_know_python/indenting_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/getting_to_know_python/indenting_code.html -------------------------------------------------------------------------------- /diveintopython.fr/getting_to_know_python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/getting_to_know_python/index.html -------------------------------------------------------------------------------- /diveintopython.fr/getting_to_know_python/testing_modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/getting_to_know_python/testing_modules.html -------------------------------------------------------------------------------- /diveintopython.fr/html_processing/all_together.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/html_processing/all_together.html -------------------------------------------------------------------------------- /diveintopython.fr/html_processing/basehtmlprocessor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/html_processing/basehtmlprocessor.html -------------------------------------------------------------------------------- /diveintopython.fr/html_processing/dictionary_based_string_formatting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/html_processing/dictionary_based_string_formatting.html -------------------------------------------------------------------------------- /diveintopython.fr/html_processing/extracting_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/html_processing/extracting_data.html -------------------------------------------------------------------------------- /diveintopython.fr/html_processing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/html_processing/index.html -------------------------------------------------------------------------------- /diveintopython.fr/html_processing/introducing_sgmllib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/html_processing/introducing_sgmllib.html -------------------------------------------------------------------------------- /diveintopython.fr/html_processing/quoting_attribute_values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/html_processing/quoting_attribute_values.html -------------------------------------------------------------------------------- /diveintopython.fr/html_processing/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/html_processing/summary.html -------------------------------------------------------------------------------- /diveintopython.fr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/index.html -------------------------------------------------------------------------------- /diveintopython.fr/installing_python/debian.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/installing_python/debian.html -------------------------------------------------------------------------------- /diveintopython.fr/installing_python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/installing_python/index.html -------------------------------------------------------------------------------- /diveintopython.fr/installing_python/macos9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/installing_python/macos9.html -------------------------------------------------------------------------------- /diveintopython.fr/installing_python/macosx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/installing_python/macosx.html -------------------------------------------------------------------------------- /diveintopython.fr/installing_python/redhat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/installing_python/redhat.html -------------------------------------------------------------------------------- /diveintopython.fr/installing_python/shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/installing_python/shell.html -------------------------------------------------------------------------------- /diveintopython.fr/installing_python/source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/installing_python/source.html -------------------------------------------------------------------------------- /diveintopython.fr/installing_python/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/installing_python/summary.html -------------------------------------------------------------------------------- /diveintopython.fr/installing_python/windows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/installing_python/windows.html -------------------------------------------------------------------------------- /diveintopython.fr/native_data_types/declaring_variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/native_data_types/declaring_variables.html -------------------------------------------------------------------------------- /diveintopython.fr/native_data_types/formatting_strings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/native_data_types/formatting_strings.html -------------------------------------------------------------------------------- /diveintopython.fr/native_data_types/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/native_data_types/index.html -------------------------------------------------------------------------------- /diveintopython.fr/native_data_types/joining_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/native_data_types/joining_lists.html -------------------------------------------------------------------------------- /diveintopython.fr/native_data_types/lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/native_data_types/lists.html -------------------------------------------------------------------------------- /diveintopython.fr/native_data_types/mapping_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/native_data_types/mapping_lists.html -------------------------------------------------------------------------------- /diveintopython.fr/native_data_types/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/native_data_types/summary.html -------------------------------------------------------------------------------- /diveintopython.fr/native_data_types/tuples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/native_data_types/tuples.html -------------------------------------------------------------------------------- /diveintopython.fr/object_oriented_framework/class_attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/object_oriented_framework/class_attributes.html -------------------------------------------------------------------------------- /diveintopython.fr/object_oriented_framework/defining_classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/object_oriented_framework/defining_classes.html -------------------------------------------------------------------------------- /diveintopython.fr/object_oriented_framework/importing_modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/object_oriented_framework/importing_modules.html -------------------------------------------------------------------------------- /diveintopython.fr/object_oriented_framework/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/object_oriented_framework/index.html -------------------------------------------------------------------------------- /diveintopython.fr/object_oriented_framework/instantiating_classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/object_oriented_framework/instantiating_classes.html -------------------------------------------------------------------------------- /diveintopython.fr/object_oriented_framework/private_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/object_oriented_framework/private_functions.html -------------------------------------------------------------------------------- /diveintopython.fr/object_oriented_framework/special_class_methods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/object_oriented_framework/special_class_methods.html -------------------------------------------------------------------------------- /diveintopython.fr/object_oriented_framework/special_class_methods2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/object_oriented_framework/special_class_methods2.html -------------------------------------------------------------------------------- /diveintopython.fr/object_oriented_framework/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/object_oriented_framework/summary.html -------------------------------------------------------------------------------- /diveintopython.fr/power_of_introspection/all_together.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/power_of_introspection/all_together.html -------------------------------------------------------------------------------- /diveintopython.fr/power_of_introspection/and_or.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/power_of_introspection/and_or.html -------------------------------------------------------------------------------- /diveintopython.fr/power_of_introspection/built_in_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/power_of_introspection/built_in_functions.html -------------------------------------------------------------------------------- /diveintopython.fr/power_of_introspection/filtering_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/power_of_introspection/filtering_lists.html -------------------------------------------------------------------------------- /diveintopython.fr/power_of_introspection/getattr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/power_of_introspection/getattr.html -------------------------------------------------------------------------------- /diveintopython.fr/power_of_introspection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/power_of_introspection/index.html -------------------------------------------------------------------------------- /diveintopython.fr/power_of_introspection/lambda_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/power_of_introspection/lambda_functions.html -------------------------------------------------------------------------------- /diveintopython.fr/power_of_introspection/optional_arguments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/power_of_introspection/optional_arguments.html -------------------------------------------------------------------------------- /diveintopython.fr/power_of_introspection/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/power_of_introspection/summary.html -------------------------------------------------------------------------------- /diveintopython.fr/regular_expressions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/regular_expressions/index.html -------------------------------------------------------------------------------- /diveintopython.fr/regular_expressions/n_m_syntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/regular_expressions/n_m_syntax.html -------------------------------------------------------------------------------- /diveintopython.fr/regular_expressions/roman_numerals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/regular_expressions/roman_numerals.html -------------------------------------------------------------------------------- /diveintopython.fr/regular_expressions/street_addresses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/regular_expressions/street_addresses.html -------------------------------------------------------------------------------- /diveintopython.fr/regular_expressions/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/regular_expressions/summary.html -------------------------------------------------------------------------------- /diveintopython.fr/regular_expressions/verbose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/regular_expressions/verbose.html -------------------------------------------------------------------------------- /diveintopython.fr/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/scrape.py -------------------------------------------------------------------------------- /diveintopython.fr/scrape.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/scrape.py~ -------------------------------------------------------------------------------- /diveintopython.fr/scripts_and_streams/stdin_stdout_stderr.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /diveintopython.fr/toc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/toc/index.html -------------------------------------------------------------------------------- /diveintopython.fr/toc/index.html.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.fr/toc/index.html.bak -------------------------------------------------------------------------------- /diveintopython.it/.dip.html.kate-swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/.dip.html.kate-swp -------------------------------------------------------------------------------- /diveintopython.it/.scrape.py.kate-swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/.scrape.py.kate-swp -------------------------------------------------------------------------------- /diveintopython.it/appendix/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/appendix/about.html -------------------------------------------------------------------------------- /diveintopython.it/appendix/abstracts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/appendix/abstracts.html -------------------------------------------------------------------------------- /diveintopython.it/appendix/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/appendix/examples.html -------------------------------------------------------------------------------- /diveintopython.it/appendix/fdl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/appendix/fdl.html -------------------------------------------------------------------------------- /diveintopython.it/appendix/fdl_aggregation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/appendix/fdl_aggregation.html -------------------------------------------------------------------------------- /diveintopython.it/appendix/fdl_applicability.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/appendix/fdl_applicability.html -------------------------------------------------------------------------------- /diveintopython.it/appendix/fdl_collections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/appendix/fdl_collections.html -------------------------------------------------------------------------------- /diveintopython.it/appendix/fdl_combining.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/appendix/fdl_combining.html -------------------------------------------------------------------------------- /diveintopython.it/appendix/fdl_copying.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/appendix/fdl_copying.html -------------------------------------------------------------------------------- /diveintopython.it/appendix/fdl_copyinginquantity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/appendix/fdl_copyinginquantity.html -------------------------------------------------------------------------------- /diveintopython.it/appendix/fdl_future.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/appendix/fdl_future.html -------------------------------------------------------------------------------- /diveintopython.it/appendix/fdl_howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/appendix/fdl_howto.html -------------------------------------------------------------------------------- /diveintopython.it/appendix/fdl_modifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/appendix/fdl_modifications.html -------------------------------------------------------------------------------- /diveintopython.it/appendix/fdl_termination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/appendix/fdl_termination.html -------------------------------------------------------------------------------- /diveintopython.it/appendix/fdl_translation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/appendix/fdl_translation.html -------------------------------------------------------------------------------- /diveintopython.it/appendix/furtherreading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/appendix/furtherreading.html -------------------------------------------------------------------------------- /diveintopython.it/appendix/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/appendix/history.html -------------------------------------------------------------------------------- /diveintopython.it/appendix/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/appendix/license.html -------------------------------------------------------------------------------- /diveintopython.it/appendix/license_terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/appendix/license_terms.html -------------------------------------------------------------------------------- /diveintopython.it/appendix/tips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/appendix/tips.html -------------------------------------------------------------------------------- /diveintopython.it/css/.diveintopython.css.kate-swp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /diveintopython.it/css/diveintopython.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/css/diveintopython.css -------------------------------------------------------------------------------- /diveintopython.it/css/diveintopython.css~: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /diveintopython.it/dip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/dip.html -------------------------------------------------------------------------------- /diveintopython.it/dip.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/dip.html~ -------------------------------------------------------------------------------- /diveintopython.it/download/diveintopython-pdf-it-2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/download/diveintopython-pdf-it-2.0.zip -------------------------------------------------------------------------------- /diveintopython.it/getting_to_know_python/declaring_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/getting_to_know_python/declaring_functions.html -------------------------------------------------------------------------------- /diveintopython.it/getting_to_know_python/declaring_variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/getting_to_know_python/declaring_variables.html -------------------------------------------------------------------------------- /diveintopython.it/getting_to_know_python/dictionaries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/getting_to_know_python/dictionaries.html -------------------------------------------------------------------------------- /diveintopython.it/getting_to_know_python/documenting_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/getting_to_know_python/documenting_functions.html -------------------------------------------------------------------------------- /diveintopython.it/getting_to_know_python/everything_is_an_object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/getting_to_know_python/everything_is_an_object.html -------------------------------------------------------------------------------- /diveintopython.it/getting_to_know_python/formatting_strings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/getting_to_know_python/formatting_strings.html -------------------------------------------------------------------------------- /diveintopython.it/getting_to_know_python/indenting_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/getting_to_know_python/indenting_code.html -------------------------------------------------------------------------------- /diveintopython.it/getting_to_know_python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/getting_to_know_python/index.html -------------------------------------------------------------------------------- /diveintopython.it/getting_to_know_python/joining_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/getting_to_know_python/joining_lists.html -------------------------------------------------------------------------------- /diveintopython.it/getting_to_know_python/lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/getting_to_know_python/lists.html -------------------------------------------------------------------------------- /diveintopython.it/getting_to_know_python/mapping_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/getting_to_know_python/mapping_lists.html -------------------------------------------------------------------------------- /diveintopython.it/getting_to_know_python/multiple_values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/getting_to_know_python/multiple_values.html -------------------------------------------------------------------------------- /diveintopython.it/getting_to_know_python/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/getting_to_know_python/summary.html -------------------------------------------------------------------------------- /diveintopython.it/getting_to_know_python/testing_modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/getting_to_know_python/testing_modules.html -------------------------------------------------------------------------------- /diveintopython.it/getting_to_know_python/tuples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/getting_to_know_python/tuples.html -------------------------------------------------------------------------------- /diveintopython.it/html_processing/all_together.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/html_processing/all_together.html -------------------------------------------------------------------------------- /diveintopython.it/html_processing/basehtmlprocessor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/html_processing/basehtmlprocessor.html -------------------------------------------------------------------------------- /diveintopython.it/html_processing/dialect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/html_processing/dialect.html -------------------------------------------------------------------------------- /diveintopython.it/html_processing/dictionary_based_string_formatting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/html_processing/dictionary_based_string_formatting.html -------------------------------------------------------------------------------- /diveintopython.it/html_processing/extracting_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/html_processing/extracting_data.html -------------------------------------------------------------------------------- /diveintopython.it/html_processing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/html_processing/index.html -------------------------------------------------------------------------------- /diveintopython.it/html_processing/introducing_sgmllib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/html_processing/introducing_sgmllib.html -------------------------------------------------------------------------------- /diveintopython.it/html_processing/locals_and_globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/html_processing/locals_and_globals.html -------------------------------------------------------------------------------- /diveintopython.it/html_processing/quoting_attribute_values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/html_processing/quoting_attribute_values.html -------------------------------------------------------------------------------- /diveintopython.it/html_processing/regular_expressions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/html_processing/regular_expressions.html -------------------------------------------------------------------------------- /diveintopython.it/html_processing/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/html_processing/summary.html -------------------------------------------------------------------------------- /diveintopython.it/images/callouts/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/images/callouts/1.png -------------------------------------------------------------------------------- /diveintopython.it/images/callouts/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/images/callouts/10.png -------------------------------------------------------------------------------- /diveintopython.it/images/callouts/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/images/callouts/2.png -------------------------------------------------------------------------------- /diveintopython.it/images/callouts/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/images/callouts/3.png -------------------------------------------------------------------------------- /diveintopython.it/images/callouts/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/images/callouts/4.png -------------------------------------------------------------------------------- /diveintopython.it/images/callouts/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/images/callouts/5.png -------------------------------------------------------------------------------- /diveintopython.it/images/callouts/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/images/callouts/6.png -------------------------------------------------------------------------------- /diveintopython.it/images/callouts/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/images/callouts/7.png -------------------------------------------------------------------------------- /diveintopython.it/images/callouts/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/images/callouts/8.png -------------------------------------------------------------------------------- /diveintopython.it/images/callouts/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/images/callouts/9.png -------------------------------------------------------------------------------- /diveintopython.it/images/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/images/caution.png -------------------------------------------------------------------------------- /diveintopython.it/images/diveintopython.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/images/diveintopython.png -------------------------------------------------------------------------------- /diveintopython.it/images/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/images/dot.png -------------------------------------------------------------------------------- /diveintopython.it/images/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/images/important.png -------------------------------------------------------------------------------- /diveintopython.it/images/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/images/note.png -------------------------------------------------------------------------------- /diveintopython.it/images/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/images/tip.png -------------------------------------------------------------------------------- /diveintopython.it/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/images/warning.png -------------------------------------------------------------------------------- /diveintopython.it/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/index.html -------------------------------------------------------------------------------- /diveintopython.it/index.html.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/index.html.1 -------------------------------------------------------------------------------- /diveintopython.it/installing_python/debian.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/installing_python/debian.html -------------------------------------------------------------------------------- /diveintopython.it/installing_python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/installing_python/index.html -------------------------------------------------------------------------------- /diveintopython.it/installing_python/macos9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/installing_python/macos9.html -------------------------------------------------------------------------------- /diveintopython.it/installing_python/macosx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/installing_python/macosx.html -------------------------------------------------------------------------------- /diveintopython.it/installing_python/redhat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/installing_python/redhat.html -------------------------------------------------------------------------------- /diveintopython.it/installing_python/shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/installing_python/shell.html -------------------------------------------------------------------------------- /diveintopython.it/installing_python/source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/installing_python/source.html -------------------------------------------------------------------------------- /diveintopython.it/installing_python/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/installing_python/summary.html -------------------------------------------------------------------------------- /diveintopython.it/installing_python/windows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/installing_python/windows.html -------------------------------------------------------------------------------- /diveintopython.it/it.diveintopython.org/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/it.diveintopython.org/index.html -------------------------------------------------------------------------------- /diveintopython.it/object_oriented_framework/all_together.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/object_oriented_framework/all_together.html -------------------------------------------------------------------------------- /diveintopython.it/object_oriented_framework/class_attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/object_oriented_framework/class_attributes.html -------------------------------------------------------------------------------- /diveintopython.it/object_oriented_framework/defining_classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/object_oriented_framework/defining_classes.html -------------------------------------------------------------------------------- /diveintopython.it/object_oriented_framework/file_objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/object_oriented_framework/file_objects.html -------------------------------------------------------------------------------- /diveintopython.it/object_oriented_framework/for_loops.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/object_oriented_framework/for_loops.html -------------------------------------------------------------------------------- /diveintopython.it/object_oriented_framework/handling_exceptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/object_oriented_framework/handling_exceptions.html -------------------------------------------------------------------------------- /diveintopython.it/object_oriented_framework/importing_modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/object_oriented_framework/importing_modules.html -------------------------------------------------------------------------------- /diveintopython.it/object_oriented_framework/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/object_oriented_framework/index.html -------------------------------------------------------------------------------- /diveintopython.it/object_oriented_framework/instantiating_classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/object_oriented_framework/instantiating_classes.html -------------------------------------------------------------------------------- /diveintopython.it/object_oriented_framework/more_on_modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/object_oriented_framework/more_on_modules.html -------------------------------------------------------------------------------- /diveintopython.it/object_oriented_framework/os_module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/object_oriented_framework/os_module.html -------------------------------------------------------------------------------- /diveintopython.it/object_oriented_framework/private_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/object_oriented_framework/private_functions.html -------------------------------------------------------------------------------- /diveintopython.it/object_oriented_framework/special_class_methods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/object_oriented_framework/special_class_methods.html -------------------------------------------------------------------------------- /diveintopython.it/object_oriented_framework/special_class_methods2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/object_oriented_framework/special_class_methods2.html -------------------------------------------------------------------------------- /diveintopython.it/object_oriented_framework/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/object_oriented_framework/summary.html -------------------------------------------------------------------------------- /diveintopython.it/object_oriented_framework/userdict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/object_oriented_framework/userdict.html -------------------------------------------------------------------------------- /diveintopython.it/power_of_introspection/all_together.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/power_of_introspection/all_together.html -------------------------------------------------------------------------------- /diveintopython.it/power_of_introspection/and_or.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/power_of_introspection/and_or.html -------------------------------------------------------------------------------- /diveintopython.it/power_of_introspection/built_in_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/power_of_introspection/built_in_functions.html -------------------------------------------------------------------------------- /diveintopython.it/power_of_introspection/filtering_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/power_of_introspection/filtering_lists.html -------------------------------------------------------------------------------- /diveintopython.it/power_of_introspection/getattr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/power_of_introspection/getattr.html -------------------------------------------------------------------------------- /diveintopython.it/power_of_introspection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/power_of_introspection/index.html -------------------------------------------------------------------------------- /diveintopython.it/power_of_introspection/lambda_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/power_of_introspection/lambda_functions.html -------------------------------------------------------------------------------- /diveintopython.it/power_of_introspection/optional_arguments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/power_of_introspection/optional_arguments.html -------------------------------------------------------------------------------- /diveintopython.it/power_of_introspection/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/power_of_introspection/summary.html -------------------------------------------------------------------------------- /diveintopython.it/regression_testing/all_together_part_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/regression_testing/all_together_part_1.html -------------------------------------------------------------------------------- /diveintopython.it/regression_testing/data_centric.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/regression_testing/data_centric.html -------------------------------------------------------------------------------- /diveintopython.it/regression_testing/dynamic_import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/regression_testing/dynamic_import.html -------------------------------------------------------------------------------- /diveintopython.it/regression_testing/filtering_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/regression_testing/filtering_lists.html -------------------------------------------------------------------------------- /diveintopython.it/regression_testing/finding_the_path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/regression_testing/finding_the_path.html -------------------------------------------------------------------------------- /diveintopython.it/regression_testing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/regression_testing/index.html -------------------------------------------------------------------------------- /diveintopython.it/regression_testing/inside_pyunit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/regression_testing/inside_pyunit.html -------------------------------------------------------------------------------- /diveintopython.it/regression_testing/mapping_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/regression_testing/mapping_lists.html -------------------------------------------------------------------------------- /diveintopython.it/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/scrape.py -------------------------------------------------------------------------------- /diveintopython.it/scrape.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/scrape.py~ -------------------------------------------------------------------------------- /diveintopython.it/toc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/toc/index.html -------------------------------------------------------------------------------- /diveintopython.it/toc/index.html.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/toc/index.html.1 -------------------------------------------------------------------------------- /diveintopython.it/unit_testing/handling_bugs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/unit_testing/handling_bugs.html -------------------------------------------------------------------------------- /diveintopython.it/unit_testing/handling_changing_requirements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/unit_testing/handling_changing_requirements.html -------------------------------------------------------------------------------- /diveintopython.it/unit_testing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/unit_testing/index.html -------------------------------------------------------------------------------- /diveintopython.it/unit_testing/postscript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/unit_testing/postscript.html -------------------------------------------------------------------------------- /diveintopython.it/unit_testing/refactoring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/unit_testing/refactoring.html -------------------------------------------------------------------------------- /diveintopython.it/unit_testing/romantest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/unit_testing/romantest.html -------------------------------------------------------------------------------- /diveintopython.it/unit_testing/stage_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/unit_testing/stage_1.html -------------------------------------------------------------------------------- /diveintopython.it/unit_testing/stage_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/unit_testing/stage_2.html -------------------------------------------------------------------------------- /diveintopython.it/unit_testing/stage_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/unit_testing/stage_3.html -------------------------------------------------------------------------------- /diveintopython.it/unit_testing/stage_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/unit_testing/stage_4.html -------------------------------------------------------------------------------- /diveintopython.it/unit_testing/stage_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/unit_testing/stage_5.html -------------------------------------------------------------------------------- /diveintopython.it/unit_testing/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/unit_testing/summary.html -------------------------------------------------------------------------------- /diveintopython.it/unit_testing/testing_for_failure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/unit_testing/testing_for_failure.html -------------------------------------------------------------------------------- /diveintopython.it/unit_testing/testing_for_sanity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/unit_testing/testing_for_sanity.html -------------------------------------------------------------------------------- /diveintopython.it/unit_testing/testing_for_success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/unit_testing/testing_for_success.html -------------------------------------------------------------------------------- /diveintopython.it/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/upload.py -------------------------------------------------------------------------------- /diveintopython.it/upload.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/upload.py~ -------------------------------------------------------------------------------- /diveintopython.it/xml_processing/all_together.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/xml_processing/all_together.html -------------------------------------------------------------------------------- /diveintopython.it/xml_processing/attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/xml_processing/attributes.html -------------------------------------------------------------------------------- /diveintopython.it/xml_processing/caching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/xml_processing/caching.html -------------------------------------------------------------------------------- /diveintopython.it/xml_processing/child_nodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/xml_processing/child_nodes.html -------------------------------------------------------------------------------- /diveintopython.it/xml_processing/command_line_arguments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/xml_processing/command_line_arguments.html -------------------------------------------------------------------------------- /diveintopython.it/xml_processing/handlers_by_node_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/xml_processing/handlers_by_node_type.html -------------------------------------------------------------------------------- /diveintopython.it/xml_processing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/xml_processing/index.html -------------------------------------------------------------------------------- /diveintopython.it/xml_processing/input_sources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/xml_processing/input_sources.html -------------------------------------------------------------------------------- /diveintopython.it/xml_processing/packages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/xml_processing/packages.html -------------------------------------------------------------------------------- /diveintopython.it/xml_processing/parsing_xml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/xml_processing/parsing_xml.html -------------------------------------------------------------------------------- /diveintopython.it/xml_processing/searching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/xml_processing/searching.html -------------------------------------------------------------------------------- /diveintopython.it/xml_processing/stdin_stdout_stderr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/xml_processing/stdin_stdout_stderr.html -------------------------------------------------------------------------------- /diveintopython.it/xml_processing/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/xml_processing/summary.html -------------------------------------------------------------------------------- /diveintopython.it/xml_processing/unicode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.it/xml_processing/unicode.html -------------------------------------------------------------------------------- /diveintopython.kr/.index.htm.kate-swp: -------------------------------------------------------------------------------- 1 | Kate Swap File - Version 1.0SE -------------------------------------------------------------------------------- /diveintopython.kr/chapter1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/chapter1.htm -------------------------------------------------------------------------------- /diveintopython.kr/chapter2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/chapter2.htm -------------------------------------------------------------------------------- /diveintopython.kr/chapter3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/chapter3.htm -------------------------------------------------------------------------------- /diveintopython.kr/chapter4.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/chapter4.htm -------------------------------------------------------------------------------- /diveintopython.kr/chapter5.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/chapter5.htm -------------------------------------------------------------------------------- /diveintopython.kr/css/diveintopython.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/css/diveintopython.css -------------------------------------------------------------------------------- /diveintopython.kr/gnufdl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/gnufdl.htm -------------------------------------------------------------------------------- /diveintopython.kr/gnugpl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/gnugpl.htm -------------------------------------------------------------------------------- /diveintopython.kr/html/appendix.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/html/appendix.htm -------------------------------------------------------------------------------- /diveintopython.kr/html/gnufdl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/html/gnufdl.htm -------------------------------------------------------------------------------- /diveintopython.kr/images/callouts/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/images/callouts/1.png -------------------------------------------------------------------------------- /diveintopython.kr/images/callouts/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/images/callouts/10.png -------------------------------------------------------------------------------- /diveintopython.kr/images/callouts/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/images/callouts/2.png -------------------------------------------------------------------------------- /diveintopython.kr/images/callouts/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/images/callouts/3.png -------------------------------------------------------------------------------- /diveintopython.kr/images/callouts/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/images/callouts/4.png -------------------------------------------------------------------------------- /diveintopython.kr/images/callouts/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/images/callouts/5.png -------------------------------------------------------------------------------- /diveintopython.kr/images/callouts/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/images/callouts/6.png -------------------------------------------------------------------------------- /diveintopython.kr/images/callouts/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/images/callouts/7.png -------------------------------------------------------------------------------- /diveintopython.kr/images/callouts/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/images/callouts/8.png -------------------------------------------------------------------------------- /diveintopython.kr/images/callouts/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/images/callouts/9.png -------------------------------------------------------------------------------- /diveintopython.kr/images/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/images/caution.png -------------------------------------------------------------------------------- /diveintopython.kr/images/diveintopython.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/images/diveintopython.png -------------------------------------------------------------------------------- /diveintopython.kr/images/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/images/dot.png -------------------------------------------------------------------------------- /diveintopython.kr/images/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/images/important.png -------------------------------------------------------------------------------- /diveintopython.kr/images/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/images/note.png -------------------------------------------------------------------------------- /diveintopython.kr/images/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/images/tip.png -------------------------------------------------------------------------------- /diveintopython.kr/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/images/warning.png -------------------------------------------------------------------------------- /diveintopython.kr/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/index.htm -------------------------------------------------------------------------------- /diveintopython.kr/index.htm~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/index.htm~ -------------------------------------------------------------------------------- /diveintopython.kr/preface.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/preface.htm -------------------------------------------------------------------------------- /diveintopython.kr/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/upload.py -------------------------------------------------------------------------------- /diveintopython.kr/upload.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.kr/upload.py~ -------------------------------------------------------------------------------- /diveintopython.ru/.dip.html.kate-swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/.dip.html.kate-swp -------------------------------------------------------------------------------- /diveintopython.ru/.scrape.py.kate-swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/.scrape.py.kate-swp -------------------------------------------------------------------------------- /diveintopython.ru/apihelper_alltogether.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/apihelper_alltogether.html -------------------------------------------------------------------------------- /diveintopython.ru/apihelper_andor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/apihelper_andor.html -------------------------------------------------------------------------------- /diveintopython.ru/apihelper_builtin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/apihelper_builtin.html -------------------------------------------------------------------------------- /diveintopython.ru/apihelper_divein.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/apihelper_divein.html -------------------------------------------------------------------------------- /diveintopython.ru/apihelper_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/apihelper_filter.html -------------------------------------------------------------------------------- /diveintopython.ru/apihelper_getattr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/apihelper_getattr.html -------------------------------------------------------------------------------- /diveintopython.ru/apihelper_lambda.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/apihelper_lambda.html -------------------------------------------------------------------------------- /diveintopython.ru/apihelper_optional.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/apihelper_optional.html -------------------------------------------------------------------------------- /diveintopython.ru/apihelper_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/apihelper_summary.html -------------------------------------------------------------------------------- /diveintopython.ru/css/diveintopython.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/css/diveintopython.css -------------------------------------------------------------------------------- /diveintopython.ru/dip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/dip.html -------------------------------------------------------------------------------- /diveintopython.ru/dip.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/dip.html~ -------------------------------------------------------------------------------- /diveintopython.ru/fdl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fdl.html -------------------------------------------------------------------------------- /diveintopython.ru/fdl_aggregation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fdl_aggregation.html -------------------------------------------------------------------------------- /diveintopython.ru/fdl_applicability.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fdl_applicability.html -------------------------------------------------------------------------------- /diveintopython.ru/fdl_collections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fdl_collections.html -------------------------------------------------------------------------------- /diveintopython.ru/fdl_combining.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fdl_combining.html -------------------------------------------------------------------------------- /diveintopython.ru/fdl_copying.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fdl_copying.html -------------------------------------------------------------------------------- /diveintopython.ru/fdl_copyinginquantity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fdl_copyinginquantity.html -------------------------------------------------------------------------------- /diveintopython.ru/fdl_future.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fdl_future.html -------------------------------------------------------------------------------- /diveintopython.ru/fdl_howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fdl_howto.html -------------------------------------------------------------------------------- /diveintopython.ru/fdl_modifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fdl_modifications.html -------------------------------------------------------------------------------- /diveintopython.ru/fdl_termination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fdl_termination.html -------------------------------------------------------------------------------- /diveintopython.ru/fdl_translation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fdl_translation.html -------------------------------------------------------------------------------- /diveintopython.ru/fileinfo_alltogether.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fileinfo_alltogether.html -------------------------------------------------------------------------------- /diveintopython.ru/fileinfo_class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fileinfo_class.html -------------------------------------------------------------------------------- /diveintopython.ru/fileinfo_classattributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fileinfo_classattributes.html -------------------------------------------------------------------------------- /diveintopython.ru/fileinfo_divein.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fileinfo_divein.html -------------------------------------------------------------------------------- /diveintopython.ru/fileinfo_exception.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fileinfo_exception.html -------------------------------------------------------------------------------- /diveintopython.ru/fileinfo_files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fileinfo_files.html -------------------------------------------------------------------------------- /diveintopython.ru/fileinfo_for.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fileinfo_for.html -------------------------------------------------------------------------------- /diveintopython.ru/fileinfo_fromimport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fileinfo_fromimport.html -------------------------------------------------------------------------------- /diveintopython.ru/fileinfo_instantiation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fileinfo_instantiation.html -------------------------------------------------------------------------------- /diveintopython.ru/fileinfo_modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fileinfo_modules.html -------------------------------------------------------------------------------- /diveintopython.ru/fileinfo_morespecial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fileinfo_morespecial.html -------------------------------------------------------------------------------- /diveintopython.ru/fileinfo_os.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fileinfo_os.html -------------------------------------------------------------------------------- /diveintopython.ru/fileinfo_private.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fileinfo_private.html -------------------------------------------------------------------------------- /diveintopython.ru/fileinfo_specialmethods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fileinfo_specialmethods.html -------------------------------------------------------------------------------- /diveintopython.ru/fileinfo_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fileinfo_summary.html -------------------------------------------------------------------------------- /diveintopython.ru/fileinfo_userdict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/fileinfo_userdict.html -------------------------------------------------------------------------------- /diveintopython.ru/images/callouts/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/images/callouts/1.png -------------------------------------------------------------------------------- /diveintopython.ru/images/callouts/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/images/callouts/10.png -------------------------------------------------------------------------------- /diveintopython.ru/images/callouts/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/images/callouts/2.png -------------------------------------------------------------------------------- /diveintopython.ru/images/callouts/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/images/callouts/3.png -------------------------------------------------------------------------------- /diveintopython.ru/images/callouts/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/images/callouts/4.png -------------------------------------------------------------------------------- /diveintopython.ru/images/callouts/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/images/callouts/5.png -------------------------------------------------------------------------------- /diveintopython.ru/images/callouts/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/images/callouts/6.png -------------------------------------------------------------------------------- /diveintopython.ru/images/callouts/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/images/callouts/7.png -------------------------------------------------------------------------------- /diveintopython.ru/images/callouts/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/images/callouts/8.png -------------------------------------------------------------------------------- /diveintopython.ru/images/callouts/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/images/callouts/9.png -------------------------------------------------------------------------------- /diveintopython.ru/images/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/images/caution.png -------------------------------------------------------------------------------- /diveintopython.ru/images/diveintopython.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/images/diveintopython.png -------------------------------------------------------------------------------- /diveintopython.ru/images/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/images/dot.png -------------------------------------------------------------------------------- /diveintopython.ru/images/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/images/important.png -------------------------------------------------------------------------------- /diveintopython.ru/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/images/logo.png -------------------------------------------------------------------------------- /diveintopython.ru/images/logo.png.crdownload: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /diveintopython.ru/images/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/images/note.png -------------------------------------------------------------------------------- /diveintopython.ru/images/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/images/tip.png -------------------------------------------------------------------------------- /diveintopython.ru/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/images/warning.png -------------------------------------------------------------------------------- /diveintopython.ru/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/index.html -------------------------------------------------------------------------------- /diveintopython.ru/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/license.html -------------------------------------------------------------------------------- /diveintopython.ru/license_terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/license_terms.html -------------------------------------------------------------------------------- /diveintopython.ru/odbchelper_dict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/odbchelper_dict.html -------------------------------------------------------------------------------- /diveintopython.ru/odbchelper_divein.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/odbchelper_divein.html -------------------------------------------------------------------------------- /diveintopython.ru/odbchelper_docstring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/odbchelper_docstring.html -------------------------------------------------------------------------------- /diveintopython.ru/odbchelper_funcdef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/odbchelper_funcdef.html -------------------------------------------------------------------------------- /diveintopython.ru/odbchelper_indenting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/odbchelper_indenting.html -------------------------------------------------------------------------------- /diveintopython.ru/odbchelper_join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/odbchelper_join.html -------------------------------------------------------------------------------- /diveintopython.ru/odbchelper_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/odbchelper_list.html -------------------------------------------------------------------------------- /diveintopython.ru/odbchelper_map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/odbchelper_map.html -------------------------------------------------------------------------------- /diveintopython.ru/odbchelper_multiassign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/odbchelper_multiassign.html -------------------------------------------------------------------------------- /diveintopython.ru/odbchelper_objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/odbchelper_objects.html -------------------------------------------------------------------------------- /diveintopython.ru/odbchelper_stringformatting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/odbchelper_stringformatting.html -------------------------------------------------------------------------------- /diveintopython.ru/odbchelper_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/odbchelper_summary.html -------------------------------------------------------------------------------- /diveintopython.ru/odbchelper_testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/odbchelper_testing.html -------------------------------------------------------------------------------- /diveintopython.ru/odbchelper_tuple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/odbchelper_tuple.html -------------------------------------------------------------------------------- /diveintopython.ru/odbchelper_vardef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/odbchelper_vardef.html -------------------------------------------------------------------------------- /diveintopython.ru/preface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/preface.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/apihelper_alltogether.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/apihelper_alltogether.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/apihelper_andor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/apihelper_andor.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/apihelper_builtin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/apihelper_builtin.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/apihelper_divein.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/apihelper_divein.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/apihelper_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/apihelper_filter.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/apihelper_getattr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/apihelper_getattr.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/apihelper_lambda.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/apihelper_lambda.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/apihelper_optional.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/apihelper_optional.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/apihelper_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/apihelper_summary.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fdl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fdl.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fdl_aggregation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fdl_aggregation.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fdl_applicability.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fdl_applicability.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fdl_collections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fdl_collections.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fdl_combining.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fdl_combining.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fdl_copying.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fdl_copying.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fdl_copyinginquantity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fdl_copyinginquantity.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fdl_future.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fdl_future.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fdl_howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fdl_howto.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fdl_modifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fdl_modifications.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fdl_termination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fdl_termination.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fdl_translation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fdl_translation.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fileinfo_alltogether.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fileinfo_alltogether.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fileinfo_class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fileinfo_class.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fileinfo_classattributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fileinfo_classattributes.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fileinfo_divein.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fileinfo_divein.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fileinfo_exception.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fileinfo_exception.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fileinfo_files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fileinfo_files.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fileinfo_for.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fileinfo_for.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fileinfo_fromimport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fileinfo_fromimport.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fileinfo_instantiation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fileinfo_instantiation.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fileinfo_modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fileinfo_modules.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fileinfo_morespecial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fileinfo_morespecial.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fileinfo_os.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fileinfo_os.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fileinfo_private.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fileinfo_private.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fileinfo_specialmethods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fileinfo_specialmethods.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fileinfo_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fileinfo_summary.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/fileinfo_userdict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/fileinfo_userdict.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/index.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/license.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/license_terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/license_terms.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/odbchelper_dict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/odbchelper_dict.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/odbchelper_divein.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/odbchelper_divein.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/odbchelper_docstring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/odbchelper_docstring.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/odbchelper_funcdef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/odbchelper_funcdef.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/odbchelper_indenting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/odbchelper_indenting.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/odbchelper_join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/odbchelper_join.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/odbchelper_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/odbchelper_list.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/odbchelper_map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/odbchelper_map.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/odbchelper_multiassign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/odbchelper_multiassign.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/odbchelper_objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/odbchelper_objects.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/odbchelper_stringformatting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/odbchelper_stringformatting.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/odbchelper_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/odbchelper_summary.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/odbchelper_testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/odbchelper_testing.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/odbchelper_tuple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/odbchelper_tuple.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/odbchelper_vardef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/odbchelper_vardef.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/preface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/preface.html -------------------------------------------------------------------------------- /diveintopython.ru/ru.diveintopython.org/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/ru.diveintopython.org/toc.html -------------------------------------------------------------------------------- /diveintopython.ru/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/scrape.py -------------------------------------------------------------------------------- /diveintopython.ru/scrape.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/scrape.py~ -------------------------------------------------------------------------------- /diveintopython.ru/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/toc.html -------------------------------------------------------------------------------- /diveintopython.ru/toc.html.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/toc.html.1 -------------------------------------------------------------------------------- /diveintopython.ru/toc/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/toc/toc.html -------------------------------------------------------------------------------- /diveintopython.ru/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/diveintopython.ru/upload.py -------------------------------------------------------------------------------- /download/diveintopython-common-5.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/download/diveintopython-common-5.4.zip -------------------------------------------------------------------------------- /download/diveintopython-examples-5.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/download/diveintopython-examples-5.4.zip -------------------------------------------------------------------------------- /download/diveintopython-html-5.4 (3).zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/download/diveintopython-html-5.4 (3).zip -------------------------------------------------------------------------------- /download/diveintopython-html-5.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/download/diveintopython-html-5.4.zip -------------------------------------------------------------------------------- /download/diveintopython-html-flat-5.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/download/diveintopython-html-flat-5.4.zip -------------------------------------------------------------------------------- /download/diveintopython-pdf-5.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/download/diveintopython-pdf-5.4.zip -------------------------------------------------------------------------------- /download/diveintopython-text-5.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/download/diveintopython-text-5.4.zip -------------------------------------------------------------------------------- /download/diveintopython-word-5.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/download/diveintopython-word-5.4.zip -------------------------------------------------------------------------------- /download/diveintopython-xml-5.4 (1).zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/download/diveintopython-xml-5.4 (1).zip -------------------------------------------------------------------------------- /download/diveintopython-xml-5.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/download/diveintopython-xml-5.4.zip -------------------------------------------------------------------------------- /download/diveintopython.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/download/diveintopython.pdf -------------------------------------------------------------------------------- /dynamic_functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/dynamic_functions/index.html -------------------------------------------------------------------------------- /dynamic_functions/stage1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/dynamic_functions/stage1.html -------------------------------------------------------------------------------- /dynamic_functions/stage2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/dynamic_functions/stage2.html -------------------------------------------------------------------------------- /dynamic_functions/stage3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/dynamic_functions/stage3.html -------------------------------------------------------------------------------- /dynamic_functions/stage4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/dynamic_functions/stage4.html -------------------------------------------------------------------------------- /dynamic_functions/stage5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/dynamic_functions/stage5.html -------------------------------------------------------------------------------- /dynamic_functions/stage6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/dynamic_functions/stage6.html -------------------------------------------------------------------------------- /dynamic_functions/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/dynamic_functions/summary.html -------------------------------------------------------------------------------- /file_handling/all_together.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/file_handling/all_together.html -------------------------------------------------------------------------------- /file_handling/file_objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/file_handling/file_objects.html -------------------------------------------------------------------------------- /file_handling/for_loops.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/file_handling/for_loops.html -------------------------------------------------------------------------------- /file_handling/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/file_handling/index.html -------------------------------------------------------------------------------- /file_handling/more_on_modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/file_handling/more_on_modules.html -------------------------------------------------------------------------------- /file_handling/os_module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/file_handling/os_module.html -------------------------------------------------------------------------------- /file_handling/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/file_handling/summary.html -------------------------------------------------------------------------------- /functional_programming/all_together.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/functional_programming/all_together.html -------------------------------------------------------------------------------- /functional_programming/data_centric.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/functional_programming/data_centric.html -------------------------------------------------------------------------------- /functional_programming/dynamic_import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/functional_programming/dynamic_import.html -------------------------------------------------------------------------------- /functional_programming/filtering_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/functional_programming/filtering_lists.html -------------------------------------------------------------------------------- /functional_programming/finding_the_path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/functional_programming/finding_the_path.html -------------------------------------------------------------------------------- /functional_programming/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/functional_programming/index.html -------------------------------------------------------------------------------- /functional_programming/mapping_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/functional_programming/mapping_lists.html -------------------------------------------------------------------------------- /functional_programming/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/functional_programming/summary.html -------------------------------------------------------------------------------- /getting_to_know_python/declaring_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/getting_to_know_python/declaring_functions.html -------------------------------------------------------------------------------- /getting_to_know_python/documenting_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/getting_to_know_python/documenting_functions.html -------------------------------------------------------------------------------- /getting_to_know_python/everything_is_an_object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/getting_to_know_python/everything_is_an_object.html -------------------------------------------------------------------------------- /getting_to_know_python/indenting_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/getting_to_know_python/indenting_code.html -------------------------------------------------------------------------------- /getting_to_know_python/indenting_code.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/getting_to_know_python/indenting_code.html~ -------------------------------------------------------------------------------- /getting_to_know_python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/getting_to_know_python/index.html -------------------------------------------------------------------------------- /getting_to_know_python/testing_modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/getting_to_know_python/testing_modules.html -------------------------------------------------------------------------------- /history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/history.xml -------------------------------------------------------------------------------- /html_processing/all_together.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/html_processing/all_together.html -------------------------------------------------------------------------------- /html_processing/basehtmlprocessor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/html_processing/basehtmlprocessor.html -------------------------------------------------------------------------------- /html_processing/dialect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/html_processing/dialect.html -------------------------------------------------------------------------------- /html_processing/dictionary_based_string_formatting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/html_processing/dictionary_based_string_formatting.html -------------------------------------------------------------------------------- /html_processing/extracting_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/html_processing/extracting_data.html -------------------------------------------------------------------------------- /html_processing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/html_processing/index.html -------------------------------------------------------------------------------- /html_processing/introducing_sgmllib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/html_processing/introducing_sgmllib.html -------------------------------------------------------------------------------- /html_processing/locals_and_globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/html_processing/locals_and_globals.html -------------------------------------------------------------------------------- /html_processing/quoting_attribute_values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/html_processing/quoting_attribute_values.html -------------------------------------------------------------------------------- /html_processing/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/html_processing/summary.html -------------------------------------------------------------------------------- /http_web_services/alltogether.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/http_web_services/alltogether.html -------------------------------------------------------------------------------- /http_web_services/debugging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/http_web_services/debugging.html -------------------------------------------------------------------------------- /http_web_services/etags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/http_web_services/etags.html -------------------------------------------------------------------------------- /http_web_services/gzip_compression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/http_web_services/gzip_compression.html -------------------------------------------------------------------------------- /http_web_services/http_features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/http_web_services/http_features.html -------------------------------------------------------------------------------- /http_web_services/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/http_web_services/index.html -------------------------------------------------------------------------------- /http_web_services/redirects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/http_web_services/redirects.html -------------------------------------------------------------------------------- /http_web_services/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/http_web_services/review.html -------------------------------------------------------------------------------- /http_web_services/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/http_web_services/summary.html -------------------------------------------------------------------------------- /http_web_services/user_agent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/http_web_services/user_agent.html -------------------------------------------------------------------------------- /images/callouts/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/images/callouts/1.png -------------------------------------------------------------------------------- /images/callouts/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/images/callouts/10.png -------------------------------------------------------------------------------- /images/callouts/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/images/callouts/2.png -------------------------------------------------------------------------------- /images/callouts/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/images/callouts/3.png -------------------------------------------------------------------------------- /images/callouts/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/images/callouts/4.png -------------------------------------------------------------------------------- /images/callouts/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/images/callouts/5.png -------------------------------------------------------------------------------- /images/callouts/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/images/callouts/6.png -------------------------------------------------------------------------------- /images/callouts/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/images/callouts/7.png -------------------------------------------------------------------------------- /images/callouts/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/images/callouts/8.png -------------------------------------------------------------------------------- /images/callouts/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/images/callouts/9.png -------------------------------------------------------------------------------- /images/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/images/caution.png -------------------------------------------------------------------------------- /images/diveintopython.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/images/diveintopython.png -------------------------------------------------------------------------------- /images/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/images/dot.png -------------------------------------------------------------------------------- /images/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/images/important.png -------------------------------------------------------------------------------- /images/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/images/note.png -------------------------------------------------------------------------------- /images/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/images/tip.png -------------------------------------------------------------------------------- /images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/images/warning.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/index.html -------------------------------------------------------------------------------- /installing_python/debian.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/installing_python/debian.html -------------------------------------------------------------------------------- /installing_python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/installing_python/index.html -------------------------------------------------------------------------------- /installing_python/macos9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/installing_python/macos9.html -------------------------------------------------------------------------------- /installing_python/macosx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/installing_python/macosx.html -------------------------------------------------------------------------------- /installing_python/redhat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/installing_python/redhat.html -------------------------------------------------------------------------------- /installing_python/shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/installing_python/shell.html -------------------------------------------------------------------------------- /installing_python/source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/installing_python/source.html -------------------------------------------------------------------------------- /installing_python/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/installing_python/summary.html -------------------------------------------------------------------------------- /installing_python/windows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/installing_python/windows.html -------------------------------------------------------------------------------- /native_data_types/declaring_variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/native_data_types/declaring_variables.html -------------------------------------------------------------------------------- /native_data_types/formatting_strings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/native_data_types/formatting_strings.html -------------------------------------------------------------------------------- /native_data_types/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/native_data_types/index.html -------------------------------------------------------------------------------- /native_data_types/joining_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/native_data_types/joining_lists.html -------------------------------------------------------------------------------- /native_data_types/lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/native_data_types/lists.html -------------------------------------------------------------------------------- /native_data_types/mapping_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/native_data_types/mapping_lists.html -------------------------------------------------------------------------------- /native_data_types/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/native_data_types/summary.html -------------------------------------------------------------------------------- /native_data_types/tuples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/native_data_types/tuples.html -------------------------------------------------------------------------------- /object_oriented_framework/class_attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/object_oriented_framework/class_attributes.html -------------------------------------------------------------------------------- /object_oriented_framework/defining_classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/object_oriented_framework/defining_classes.html -------------------------------------------------------------------------------- /object_oriented_framework/importing_modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/object_oriented_framework/importing_modules.html -------------------------------------------------------------------------------- /object_oriented_framework/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/object_oriented_framework/index.html -------------------------------------------------------------------------------- /object_oriented_framework/instantiating_classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/object_oriented_framework/instantiating_classes.html -------------------------------------------------------------------------------- /object_oriented_framework/private_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/object_oriented_framework/private_functions.html -------------------------------------------------------------------------------- /object_oriented_framework/special_class_methods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/object_oriented_framework/special_class_methods.html -------------------------------------------------------------------------------- /object_oriented_framework/special_class_methods2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/object_oriented_framework/special_class_methods2.html -------------------------------------------------------------------------------- /object_oriented_framework/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/object_oriented_framework/summary.html -------------------------------------------------------------------------------- /object_oriented_framework/userdict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/object_oriented_framework/userdict.html -------------------------------------------------------------------------------- /performance_tuning/dictionary_lookups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/performance_tuning/dictionary_lookups.html -------------------------------------------------------------------------------- /performance_tuning/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/performance_tuning/index.html -------------------------------------------------------------------------------- /performance_tuning/list_operations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/performance_tuning/list_operations.html -------------------------------------------------------------------------------- /performance_tuning/regular_expressions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/performance_tuning/regular_expressions.html -------------------------------------------------------------------------------- /performance_tuning/string_manipulation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/performance_tuning/string_manipulation.html -------------------------------------------------------------------------------- /performance_tuning/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/performance_tuning/summary.html -------------------------------------------------------------------------------- /performance_tuning/timeit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/performance_tuning/timeit.html -------------------------------------------------------------------------------- /power_of_introspection/all_together.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/power_of_introspection/all_together.html -------------------------------------------------------------------------------- /power_of_introspection/and_or.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/power_of_introspection/and_or.html -------------------------------------------------------------------------------- /power_of_introspection/built_in_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/power_of_introspection/built_in_functions.html -------------------------------------------------------------------------------- /power_of_introspection/filtering_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/power_of_introspection/filtering_lists.html -------------------------------------------------------------------------------- /power_of_introspection/getattr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/power_of_introspection/getattr.html -------------------------------------------------------------------------------- /power_of_introspection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/power_of_introspection/index.html -------------------------------------------------------------------------------- /power_of_introspection/lambda_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/power_of_introspection/lambda_functions.html -------------------------------------------------------------------------------- /power_of_introspection/optional_arguments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/power_of_introspection/optional_arguments.html -------------------------------------------------------------------------------- /power_of_introspection/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/power_of_introspection/summary.html -------------------------------------------------------------------------------- /refactoring/handling_changing_requirements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/refactoring/handling_changing_requirements.html -------------------------------------------------------------------------------- /refactoring/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/refactoring/index.html -------------------------------------------------------------------------------- /refactoring/postscript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/refactoring/postscript.html -------------------------------------------------------------------------------- /refactoring/refactoring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/refactoring/refactoring.html -------------------------------------------------------------------------------- /refactoring/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/refactoring/summary.html -------------------------------------------------------------------------------- /regular_expressions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/regular_expressions/index.html -------------------------------------------------------------------------------- /regular_expressions/n_m_syntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/regular_expressions/n_m_syntax.html -------------------------------------------------------------------------------- /regular_expressions/phone_numbers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/regular_expressions/phone_numbers.html -------------------------------------------------------------------------------- /regular_expressions/roman_numerals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/regular_expressions/roman_numerals.html -------------------------------------------------------------------------------- /regular_expressions/street_addresses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/regular_expressions/street_addresses.html -------------------------------------------------------------------------------- /regular_expressions/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/regular_expressions/summary.html -------------------------------------------------------------------------------- /regular_expressions/verbose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/regular_expressions/verbose.html -------------------------------------------------------------------------------- /replace.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/replace.log -------------------------------------------------------------------------------- /replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/replace.py -------------------------------------------------------------------------------- /scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/scrape.py -------------------------------------------------------------------------------- /scrape.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/scrape.pyc -------------------------------------------------------------------------------- /scripts_and_streams/all_together.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/scripts_and_streams/all_together.html -------------------------------------------------------------------------------- /scripts_and_streams/caching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/scripts_and_streams/caching.html -------------------------------------------------------------------------------- /scripts_and_streams/child_nodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/scripts_and_streams/child_nodes.html -------------------------------------------------------------------------------- /scripts_and_streams/command_line_arguments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/scripts_and_streams/command_line_arguments.html -------------------------------------------------------------------------------- /scripts_and_streams/handlers_by_node_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/scripts_and_streams/handlers_by_node_type.html -------------------------------------------------------------------------------- /scripts_and_streams/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/scripts_and_streams/index.html -------------------------------------------------------------------------------- /scripts_and_streams/stdin_stdout_stderr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/scripts_and_streams/stdin_stdout_stderr.html -------------------------------------------------------------------------------- /scripts_and_streams/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/scripts_and_streams/summary.html -------------------------------------------------------------------------------- /searcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/searcher.py -------------------------------------------------------------------------------- /soap_web_services/debugging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/soap_web_services/debugging.html -------------------------------------------------------------------------------- /soap_web_services/first_steps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/soap_web_services/first_steps.html -------------------------------------------------------------------------------- /soap_web_services/google.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/soap_web_services/google.html -------------------------------------------------------------------------------- /soap_web_services/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/soap_web_services/index.html -------------------------------------------------------------------------------- /soap_web_services/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/soap_web_services/install.html -------------------------------------------------------------------------------- /soap_web_services/introspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/soap_web_services/introspection.html -------------------------------------------------------------------------------- /soap_web_services/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/soap_web_services/summary.html -------------------------------------------------------------------------------- /soap_web_services/troubleshooting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/soap_web_services/troubleshooting.html -------------------------------------------------------------------------------- /soap_web_services/wsdl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/soap_web_services/wsdl.html -------------------------------------------------------------------------------- /toc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/toc/index.html -------------------------------------------------------------------------------- /unit_testing/diving_in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/unit_testing/diving_in.html -------------------------------------------------------------------------------- /unit_testing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/unit_testing/index.html -------------------------------------------------------------------------------- /unit_testing/romantest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/unit_testing/romantest.html -------------------------------------------------------------------------------- /unit_testing/stage_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/unit_testing/stage_1.html -------------------------------------------------------------------------------- /unit_testing/stage_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/unit_testing/stage_2.html -------------------------------------------------------------------------------- /unit_testing/stage_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/unit_testing/stage_3.html -------------------------------------------------------------------------------- /unit_testing/stage_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/unit_testing/stage_4.html -------------------------------------------------------------------------------- /unit_testing/stage_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/unit_testing/stage_5.html -------------------------------------------------------------------------------- /unit_testing/testing_for_failure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/unit_testing/testing_for_failure.html -------------------------------------------------------------------------------- /unit_testing/testing_for_sanity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/unit_testing/testing_for_sanity.html -------------------------------------------------------------------------------- /unit_testing/testing_for_success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/unit_testing/testing_for_success.html -------------------------------------------------------------------------------- /upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/upload.py -------------------------------------------------------------------------------- /www.diveintopython.org/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/www.diveintopython.org/index.html -------------------------------------------------------------------------------- /xml_processing/attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/xml_processing/attributes.html -------------------------------------------------------------------------------- /xml_processing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/xml_processing/index.html -------------------------------------------------------------------------------- /xml_processing/packages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/xml_processing/packages.html -------------------------------------------------------------------------------- /xml_processing/parsing_xml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/xml_processing/parsing_xml.html -------------------------------------------------------------------------------- /xml_processing/searching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/xml_processing/searching.html -------------------------------------------------------------------------------- /xml_processing/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/xml_processing/summary.html -------------------------------------------------------------------------------- /xml_processing/unicode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshgachnang/diveintopython/HEAD/xml_processing/unicode.html --------------------------------------------------------------------------------