在好例子网,分享、交流、成长!
您当前所在位置:首页Python 开发实例Python语言基础 → The Python Standard Library by Example(Doug Hellmann)示例源代码

The Python Standard Library by Example(Doug Hellmann)示例源代码

Python语言基础

下载此实例
  • 开发语言:Python
  • 实例大小:0.22M
  • 下载次数:4
  • 浏览次数:27
  • 发布时间:2023-08-30
  • 实例类别:Python语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.gz
  • 所需积分:2

实例介绍

【实例简介】The Python Standard Library by Example --Doug Hellmann 那本的源代码哟,欢迎下载!

【实例截图】

from clipboard

【核心代码】

.
├── PyMOTW-2.0.1
│   ├── LICENSE.txt
│   ├── MANIFEST.in
│   ├── PKG-INFO
│   ├── PyMOTW
│   │   ├── BaseHTTPServer
│   │   │   ├── BaseHTTPServer_GET.py
│   │   │   ├── BaseHTTPServer_POST.py
│   │   │   ├── BaseHTTPServer_errors.py
│   │   │   ├── BaseHTTPServer_send_header.py
│   │   │   ├── BaseHTTPServer_threads.py
│   │   │   └── __init__.py
│   │   ├── ConfigParser
│   │   │   ├── ConfigParser_allow_no_value.py
│   │   │   ├── ConfigParser_defaults.py
│   │   │   ├── ConfigParser_has_option.py
│   │   │   ├── ConfigParser_has_section.py
│   │   │   ├── ConfigParser_interpolation.py
│   │   │   ├── ConfigParser_interpolation_defaults.py
│   │   │   ├── ConfigParser_interpolation_error.py
│   │   │   ├── ConfigParser_interpolation_recursion.py
│   │   │   ├── ConfigParser_populate.py
│   │   │   ├── ConfigParser_read.py
│   │   │   ├── ConfigParser_read_many.py
│   │   │   ├── ConfigParser_remove.py
│   │   │   ├── ConfigParser_structure.py
│   │   │   ├── ConfigParser_unicode.py
│   │   │   ├── ConfigParser_value_types.py
│   │   │   ├── ConfigParser_write.py
│   │   │   ├── __init__.py
│   │   │   └── configparser_example.py
│   │   ├── Cookie
│   │   │   ├── Cookie_Morsel.py
│   │   │   ├── Cookie_coded_value.py
│   │   │   ├── Cookie_js_output.py
│   │   │   ├── Cookie_parse.py
│   │   │   ├── Cookie_setheaders.py
│   │   │   └── __init__.py
│   │   ├── Queue
│   │   │   ├── Queue_fifo.py
│   │   │   ├── Queue_lifo.py
│   │   │   ├── Queue_priority.py
│   │   │   ├── __init__.py
│   │   │   ├── feedparser.py
│   │   │   └── fetch_podcasts.py
│   │   ├── SimpleXMLRPCServer
│   │   │   ├── SimpleXMLRPCServer_alternate_name.py
│   │   │   ├── SimpleXMLRPCServer_alternate_name_client.py
│   │   │   ├── SimpleXMLRPCServer_arbitrary_name.py
│   │   │   ├── SimpleXMLRPCServer_arbitrary_name_client.py
│   │   │   ├── SimpleXMLRPCServer_dotted_name.py
│   │   │   ├── SimpleXMLRPCServer_dotted_name_client.py
│   │   │   ├── SimpleXMLRPCServer_function.py
│   │   │   ├── SimpleXMLRPCServer_function_client.py
│   │   │   ├── SimpleXMLRPCServer_instance.py
│   │   │   ├── SimpleXMLRPCServer_instance_client.py
│   │   │   ├── SimpleXMLRPCServer_instance_dotted_names.py
│   │   │   ├── SimpleXMLRPCServer_instance_dotted_names_client.py
│   │   │   ├── SimpleXMLRPCServer_instance_with_prefix.py
│   │   │   ├── SimpleXMLRPCServer_instance_with_prefix_client.py
│   │   │   ├── SimpleXMLRPCServer_introspection.py
│   │   │   ├── SimpleXMLRPCServer_introspection_client.py
│   │   │   └── __init__.py
│   │   ├── SocketServer
│   │   │   ├── SocketServer_echo.py
│   │   │   ├── SocketServer_echo_simple.py
│   │   │   ├── SocketServer_forking.py
│   │   │   ├── SocketServer_threaded.py
│   │   │   └── __init__.py
│   │   ├── StringIO
│   │   │   ├── __init__.py
│   │   │   └── stringio_examples.py
│   │   ├── __init__.py
│   │   ├── abc
│   │   │   ├── __init__.py
│   │   │   ├── abc_abstractproperty.py
│   │   │   ├── abc_abstractproperty_rw.py
│   │   │   ├── abc_abstractproperty_rw_deco.py
│   │   │   ├── abc_base.py
│   │   │   ├── abc_concrete_method.py
│   │   │   ├── abc_find_subclasses.py
│   │   │   ├── abc_incomplete.py
│   │   │   ├── abc_register.py
│   │   │   └── abc_subclass.py
│   │   ├── anydbm
│   │   │   ├── __init__.py
│   │   │   ├── anydbm_existing.py
│   │   │   ├── anydbm_intkeys.py
│   │   │   ├── anydbm_intvalue.py
│   │   │   ├── anydbm_new.py
│   │   │   └── anydbm_whichdb.py
│   │   ├── argparse
│   │   │   ├── __init__.py
│   │   │   ├── argparse_FileType.py
│   │   │   ├── argparse_action.py
│   │   │   ├── argparse_arguments.py
│   │   │   ├── argparse_choices.py
│   │   │   ├── argparse_conflict_handler_resolve.py
│   │   │   ├── argparse_conflict_handler_resolve2.py
│   │   │   ├── argparse_custom_action.py
│   │   │   ├── argparse_default_grouping.py
│   │   │   ├── argparse_fromfile_prefix_chars.py
│   │   │   ├── argparse_fromfile_prefix_chars.txt
│   │   │   ├── argparse_long.py
│   │   │   ├── argparse_mutually_exclusive.py
│   │   │   ├── argparse_nargs.py
│   │   │   ├── argparse_parent_base.py
│   │   │   ├── argparse_parent_with_group.py
│   │   │   ├── argparse_prefix_chars.py
│   │   │   ├── argparse_short.py
│   │   │   ├── argparse_subparsers.py
│   │   │   ├── argparse_type.py
│   │   │   ├── argparse_uses_parent.py
│   │   │   ├── argparse_uses_parent_with_group.py
│   │   │   ├── argparse_with_help.py
│   │   │   ├── argparse_with_shlex.py
│   │   │   ├── argparse_with_version.py
│   │   │   ├── argparse_without_help.py
│   │   │   └── tmp_file.txt
│   │   ├── array
│   │   │   ├── __init__.py
│   │   │   ├── array_byteswap.py
│   │   │   ├── array_file.py
│   │   │   ├── array_sequence.py
│   │   │   └── array_string.py
│   │   ├── asynchat
│   │   │   ├── __init__.py
│   │   │   ├── asynchat_echo_client.py
│   │   │   ├── asynchat_echo_handler.py
│   │   │   ├── asynchat_echo_main.py
│   │   │   ├── asynchat_echo_server.py
│   │   │   └── lorem.txt
│   │   ├── asyncore
│   │   │   ├── __init__.py
│   │   │   ├── asyncore_echo_server.py
│   │   │   ├── asyncore_file_dispatcher.py
│   │   │   ├── asyncore_http_client.py
│   │   │   ├── asyncore_loop.py
│   │   │   └── lorem.txt
│   │   ├── atexit
│   │   │   ├── __init__.py
│   │   │   ├── atexit_exception.py
│   │   │   ├── atexit_keyboardinterrupt.py
│   │   │   ├── atexit_multiple.py
│   │   │   ├── atexit_os_exit.py
│   │   │   ├── atexit_signal_child.py
│   │   │   ├── atexit_signal_parent.py
│   │   │   ├── atexit_simple.py
│   │   │   └── atexit_sys_exit.py
│   │   ├── base64
│   │   │   ├── __init__.py
│   │   │   ├── base64_b64decode.py
│   │   │   ├── base64_b64encode.py
│   │   │   ├── base64_base16.py
│   │   │   ├── base64_base32.py
│   │   │   └── base64_urlsafe.py
│   │   ├── bisect
│   │   │   ├── __init__.py
│   │   │   ├── bisect_example.py
│   │   │   └── bisect_example2.py
│   │   ├── bz2
│   │   │   ├── __init__.py
│   │   │   ├── bz2_file_compresslevel.py
│   │   │   ├── bz2_file_read.py
│   │   │   ├── bz2_file_seek.py
│   │   │   ├── bz2_file_write.py
│   │   │   ├── bz2_file_writelines.py
│   │   │   ├── bz2_incremental.py
│   │   │   ├── bz2_lengths.py
│   │   │   ├── bz2_memory.py
│   │   │   ├── bz2_mixed.py
│   │   │   ├── bz2_server.py
│   │   │   └── lorem.txt
│   │   ├── calendar
│   │   │   ├── __init__.py
│   │   │   ├── calendar_formatyear.py
│   │   │   ├── calendar_htmlcalendar.py
│   │   │   ├── calendar_monthcalendar.py
│   │   │   ├── calendar_secondthursday.py
│   │   │   ├── calendar_textcalendar.py
│   │   │   └── calendar_yeardays2calendar.py
│   │   ├── cc-by-nc-sa.png
│   │   ├── cgitb
│   │   │   ├── __init__.py
│   │   │   ├── cgitb_basic_traceback.py
│   │   │   ├── cgitb_exception_properties.py
│   │   │   ├── cgitb_extended_traceback.py
│   │   │   ├── cgitb_html_output.py
│   │   │   ├── cgitb_local_vars.py
│   │   │   ├── cgitb_log_exception.py
│   │   │   ├── cgitb_more_context.py
│   │   │   └── cgitb_with_classes.py
│   │   ├── cmd
│   │   │   ├── __init__.py
│   │   │   ├── cmd_arg_completion.py
│   │   │   ├── cmd_arguments.py
│   │   │   ├── cmd_argv.py
│   │   │   ├── cmd_attributes.py
│   │   │   ├── cmd_do_help.py
│   │   │   ├── cmd_do_shell.py
│   │   │   ├── cmd_file.py
│   │   │   ├── cmd_file.txt
│   │   │   ├── cmd_illustrate_methods.py
│   │   │   └── cmd_simple.py
│   │   ├── codecs
│   │   │   ├── __init__.py
│   │   │   ├── codecs_bom.py
│   │   │   ├── codecs_bom_create_file.py
│   │   │   ├── codecs_bom_detection.py
│   │   │   ├── codecs_decode.py
│   │   │   ├── codecs_decode_error.py
│   │   │   ├── codecs_encode_error.py
│   │   │   ├── codecs_encodedfile.py
│   │   │   ├── codecs_encodings.py
│   │   │   ├── codecs_incremental_bz2.py
│   │   │   ├── codecs_invertcaps.py
│   │   │   ├── codecs_invertcaps_charmap.py
│   │   │   ├── codecs_invertcaps_error.py
│   │   │   ├── codecs_invertcaps_register.py
│   │   │   ├── codecs_open_read.py
│   │   │   ├── codecs_open_write.py
│   │   │   ├── codecs_register.py
│   │   │   ├── codecs_rot13.py
│   │   │   ├── codecs_socket.py
│   │   │   ├── codecs_socket_fail.py
│   │   │   ├── codecs_stdin.py
│   │   │   ├── codecs_stdout.py
│   │   │   ├── codecs_stdout_locale.py
│   │   │   ├── codecs_stdout_wrapped.py
│   │   │   ├── codecs_to_hex.py
│   │   │   └── codecs_zlib.py
│   │   ├── collections
│   │   │   ├── __init__.py
│   │   │   ├── collections_counter_arithmetic.py
│   │   │   ├── collections_counter_elements.py
│   │   │   ├── collections_counter_get_values.py
│   │   │   ├── collections_counter_init.py
│   │   │   ├── collections_counter_most_common.py
│   │   │   ├── collections_counter_update.py
│   │   │   ├── collections_defaultdict.py
│   │   │   ├── collections_deque.py
│   │   │   ├── collections_deque_both_ends.py
│   │   │   ├── collections_deque_consuming.py
│   │   │   ├── collections_deque_populating.py
│   │   │   ├── collections_deque_rotate.py
│   │   │   ├── collections_namedtuple_bad_fields.py
│   │   │   ├── collections_namedtuple_person.py
│   │   │   ├── collections_namedtuple_rename.py
│   │   │   ├── collections_ordereddict_equality.py
│   │   │   ├── collections_ordereddict_iter.py
│   │   │   └── collections_tuple.py
│   │   ├── compileall
│   │   │   ├── __init__.py
│   │   │   ├── compileall_compile_dir.py
│   │   │   ├── compileall_exclude_dirs.py
│   │   │   ├── compileall_path.py
│   │   │   └── compileall_recursion_depth.py
│   │   ├── contextlib
│   │   │   ├── __init__.py
│   │   │   ├── contextlib_api.py
│   │   │   ├── contextlib_api_error.py
│   │   │   ├── contextlib_api_other_object.py
│   │   │   ├── contextlib_closing.py
│   │   │   ├── contextlib_contextmanager.py
│   │   │   ├── contextlib_file.py
│   │   │   ├── contextlib_nested.py
│   │   │   └── contextlib_nested_with.py
│   │   ├── copy
│   │   │   ├── __init__.py
│   │   │   ├── copy_deep.py
│   │   │   ├── copy_hooks.py
│   │   │   ├── copy_recursion.py
│   │   │   └── copy_shallow.py
│   │   ├── csv
│   │   │   ├── __init__.py
│   │   │   ├── csv_dialect.py
│   │   │   ├── csv_dialect_sniffer.py
│   │   │   ├── csv_dialect_variations.py
│   │   │   ├── csv_dictreader.py
│   │   │   ├── csv_dictwriter.py
│   │   │   ├── csv_list_dialects.py
│   │   │   ├── csv_reader.py
│   │   │   ├── csv_writer.py
│   │   │   └── csv_writer_quoted.py
│   │   ├── datetime
│   │   │   ├── __init__.py
│   │   │   ├── datetime_comparing.py
│   │   │   ├── datetime_date.py
│   │   │   ├── datetime_date_fromordinal.py
│   │   │   ├── datetime_date_fromothervalue.py
│   │   │   ├── datetime_date_isocalendar.py
│   │   │   ├── datetime_date_math.py
│   │   │   ├── datetime_date_minmax.py
│   │   │   ├── datetime_date_replace.py
│   │   │   ├── datetime_datetime.py
│   │   │   ├── datetime_datetime_combine.py
│   │   │   ├── datetime_datetime_math.py
│   │   │   ├── datetime_datetime_minmax.py
│   │   │   ├── datetime_datetime_strptime.py
│   │   │   ├── datetime_time.py
│   │   │   ├── datetime_time_minmax.py
│   │   │   ├── datetime_time_resolution.py
│   │   │   ├── datetime_timedelta.py
│   │   │   └── datetime_timedelta_total_seconds.py
│   │   ├── decimal
│   │   │   ├── __init__.py
│   │   │   ├── decimal_context_manager.py
│   │   │   ├── decimal_create.py
│   │   │   ├── decimal_getcontext.py
│   │   │   ├── decimal_instance_context.py
│   │   │   ├── decimal_log.py
│   │   │   ├── decimal_operators.py
│   │   │   ├── decimal_precision.py
│   │   │   ├── decimal_rounding.py
│   │   │   ├── decimal_special.py
│   │   │   ├── decimal_thread_context.py
│   │   │   └── decimal_tuple.py
│   │   ├── difflib
│   │   │   ├── __init__.py
│   │   │   ├── difflib_context.py
│   │   │   ├── difflib_data.py
│   │   │   ├── difflib_differ.py
│   │   │   ├── difflib_html.py
│   │   │   ├── difflib_junk.py
│   │   │   ├── difflib_ndiff.py
│   │   │   ├── difflib_seq.py
│   │   │   └── difflib_unified.py
│   │   ├── dircache
│   │   │   ├── __init__.py
│   │   │   ├── dircache_annotate.py
│   │   │   ├── dircache_listdir.py
│   │   │   ├── dircache_listdir_file_added.py
│   │   │   └── dircache_reset.py
│   │   ├── dis
│   │   │   ├── __init__.py
│   │   │   ├── dis_class.py
│   │   │   ├── dis_constant_folding.py
│   │   │   ├── dis_eliminate_loop.py
│   │   │   ├── dis_faster_loop.py
│   │   │   ├── dis_fastest_loop.py
│   │   │   ├── dis_function.py
│   │   │   ├── dis_loops.py
│   │   │   ├── dis_simple.py
│   │   │   ├── dis_slow_loop.py
│   │   │   ├── dis_test_loop.py
│   │   │   └── dis_traceback.py
│   │   ├── doctest
│   │   │   ├── __init__.py
│   │   │   ├── doctest_blankline.py
│   │   │   ├── doctest_blankline_fail.py
│   │   │   ├── doctest_docstrings.py
│   │   │   ├── doctest_ellipsis.py
│   │   │   ├── doctest_extra_space.py
│   │   │   ├── doctest_hashed_values.py
│   │   │   ├── doctest_hashed_values_tests.py
│   │   │   ├── doctest_in_help.py
│   │   │   ├── doctest_mutable_globals.py
│   │   │   ├── doctest_ndiff.py
│   │   │   ├── doctest_normalize_whitespace.py
│   │   │   ├── doctest_private_tests.py
│   │   │   ├── doctest_private_tests_external.py
│   │   │   ├── doctest_simple.py
│   │   │   ├── doctest_simple_with_docs.py
│   │   │   ├── doctest_test_globals.py
│   │   │   ├── doctest_testfile.py
│   │   │   ├── doctest_testmod.py
│   │   │   ├── doctest_testmod_other_module.py
│   │   │   ├── doctest_tracebacks.py
│   │   │   ├── doctest_tracebacks_no_body.py
│   │   │   ├── doctest_unittest.py
│   │   │   └── doctest_unpredictable.py
│   │   ├── exceptions
│   │   │   ├── __init__.py
│   │   │   ├── exceptions_AssertionError_assert.py
│   │   │   ├── exceptions_AssertionError_unittest.py
│   │   │   ├── exceptions_AttributeError.py
│   │   │   ├── exceptions_AttributeError_assignment.py
│   │   │   ├── exceptions_AttributeError_slot.py
│   │   │   ├── exceptions_EOFError.py
│   │   │   ├── exceptions_FloatingPointError.py
│   │   │   ├── exceptions_GeneratorExit.py
│   │   │   ├── exceptions_IOError.py
│   │   │   ├── exceptions_ImportError_missingname.py
│   │   │   ├── exceptions_ImportError_nomodule.py
│   │   │   ├── exceptions_IndexError.py
│   │   │   ├── exceptions_KeyError.py
│   │   │   ├── exceptions_KeyboardInterrupt.py
│   │   │   ├── exceptions_MemoryError.py
│   │   │   ├── exceptions_NameError.py
│   │   │   ├── exceptions_NotImplementedError.py
│   │   │   ├── exceptions_OSError.py
│   │   │   ├── exceptions_OverflowError.py
│   │   │   ├── exceptions_ReferenceError.py
│   │   │   ├── exceptions_StopIteration.py
│   │   │   ├── exceptions_SyntaxError.py
│   │   │   ├── exceptions_SystemExit.py
│   │   │   ├── exceptions_TypeError.py
│   │   │   ├── exceptions_UnboundLocalError.py
│   │   │   ├── exceptions_ValueError.py
│   │   │   └── exceptions_ZeroDivisionError.py
│   │   ├── feed.png
│   │   ├── filecmp
│   │   │   ├── __init__.py
│   │   │   ├── filecmp_cmp.py
│   │   │   ├── filecmp_cmpfiles.py
│   │   │   ├── filecmp_dircmp_common.py
│   │   │   ├── filecmp_dircmp_diff.py
│   │   │   ├── filecmp_dircmp_list.py
│   │   │   ├── filecmp_dircmp_list_filter.py
│   │   │   ├── filecmp_dircmp_membership.py
│   │   │   ├── filecmp_dircmp_report.py
│   │   │   ├── filecmp_dircmp_report_full_closure.py
│   │   │   ├── filecmp_dircmp_subdirs.py
│   │   │   └── filecmp_mkexamples.py
│   │   ├── fileinput
│   │   │   ├── __init__.py
│   │   │   ├── etc_hosts.txt
│   │   │   ├── fileinput_change_subnet.py
│   │   │   ├── fileinput_change_subnet_noisy.py
│   │   │   ├── fileinput_example.py
│   │   │   ├── fileinput_grep.py
│   │   │   └── m3utorss.html
│   │   ├── fnmatch
│   │   │   ├── __init__.py
│   │   │   ├── fnmatch_filter.py
│   │   │   ├── fnmatch_fnmatch.py
│   │   │   ├── fnmatch_fnmatchcase.py
│   │   │   └── fnmatch_translate.py
│   │   ├── fractions
│   │   │   ├── __init__.py
│   │   │   ├── fractions_arithmetic.py
│   │   │   ├── fractions_create_integers.py
│   │   │   ├── fractions_create_strings.py
│   │   │   ├── fractions_create_strings_floats.py
│   │   │   ├── fractions_from_decimal.py
│   │   │   ├── fractions_from_float.py
│   │   │   └── fractions_limit_denominator.py
│   │   ├── functools
│   │   │   ├── __init__.py
│   │   │   ├── functools_cmp_to_key.py
│   │   │   ├── functools_method.py
│   │   │   ├── functools_partial.py
│   │   │   ├── functools_total_ordering.py
│   │   │   ├── functools_update_wrapper.py
│   │   │   └── functools_wraps.py
│   │   ├── gc
│   │   │   ├── __init__.py
│   │   │   ├── gc_collect.py
│   │   │   ├── gc_collect_break_cycle.py
│   │   │   ├── gc_collect_with_del.py
│   │   │   ├── gc_debug_collectable_instances.py
│   │   │   ├── gc_debug_collectable_objects.py
│   │   │   ├── gc_debug_leak.py
│   │   │   ├── gc_debug_saveall.py
│   │   │   ├── gc_debug_stats.py
│   │   │   ├── gc_get_objects.py
│   │   │   ├── gc_get_referents.py
│   │   │   ├── gc_get_referents_cycles.py
│   │   │   ├── gc_get_referrers.py
│   │   │   ├── gc_get_threshold.py
│   │   │   └── gc_threshold.py
│   │   ├── getopt
│   │   │   ├── __init__.py
│   │   │   ├── getopt_example.py
│   │   │   ├── getopt_gnu.py
│   │   │   ├── getopt_long.py
│   │   │   └── getopt_short.py
│   │   ├── getpass
│   │   │   ├── __init__.py
│   │   │   ├── getpass_defaults.py
│   │   │   ├── getpass_noterminal.py
│   │   │   ├── getpass_prompt.py
│   │   │   └── getpass_stream.py
│   │   ├── gettext
│   │   │   ├── __init__.py
│   │   │   ├── example.pot
│   │   │   ├── gettext_app_builtin.py
│   │   │   ├── gettext_example.py
│   │   │   ├── gettext_find.py
│   │   │   ├── gettext_module_global.py
│   │   │   ├── gettext_plural.py
│   │   │   └── plural.pot
│   │   ├── glob
│   │   │   ├── __init__.py
│   │   │   ├── glob_asterisk.py
│   │   │   ├── glob_charrange.py
│   │   │   ├── glob_extension.py
│   │   │   ├── glob_maketestdata.py
│   │   │   ├── glob_question.py
│   │   │   └── glob_subdir.py
│   │   ├── gzip
│   │   │   ├── __init__.py
│   │   │   ├── gzip_StringIO.py
│   │   │   ├── gzip_compresslevel.py
│   │   │   ├── gzip_read.py
│   │   │   ├── gzip_seek.py
│   │   │   ├── gzip_write.py
│   │   │   ├── gzip_writelines.py
│   │   │   └── lorem.txt
│   │   ├── hashlib
│   │   │   ├── __init__.py
│   │   │   ├── hashlib_data.py
│   │   │   ├── hashlib_md5.py
│   │   │   ├── hashlib_new.py
│   │   │   ├── hashlib_sha1.py
│   │   │   └── hashlib_update.py
│   │   ├── heapq
│   │   │   ├── __init__.py
│   │   │   ├── heapq_extremes.py
│   │   │   ├── heapq_heapdata.py
│   │   │   ├── heapq_heapify.py
│   │   │   ├── heapq_heappop.py
│   │   │   ├── heapq_heappush.py
│   │   │   ├── heapq_heapreplace.py
│   │   │   └── heapq_showtree.py
│   │   ├── hmac
│   │   │   ├── __init__.py
│   │   │   ├── hmac_base64.py
│   │   │   ├── hmac_pickle.py
│   │   │   ├── hmac_sha.py
│   │   │   ├── hmac_simple.py
│   │   │   └── lorem.txt
│   │   ├── imaplib
│   │   │   ├── __init__.py
│   │   │   ├── imaplib_append.py
│   │   │   ├── imaplib_archive_read.py
│   │   │   ├── imaplib_connect.py
│   │   │   ├── imaplib_connect_fail.py
│   │   │   ├── imaplib_delete_messages.py
│   │   │   ├── imaplib_fetch_body.py
│   │   │   ├── imaplib_fetch_raw.py
│   │   │   ├── imaplib_fetch_rfc822.py
│   │   │   ├── imaplib_fetch_separately.py
│   │   │   ├── imaplib_list.py
│   │   │   ├── imaplib_list_parse.py
│   │   │   ├── imaplib_list_pattern.py
│   │   │   ├── imaplib_list_subfolders.py
│   │   │   ├── imaplib_search_all.py
│   │   │   ├── imaplib_search_from.py
│   │   │   ├── imaplib_search_subject.py
│   │   │   ├── imaplib_select.py
│   │   │   ├── imaplib_select_invalid.py
│   │   │   └── imaplib_status.py
│   │   ├── imp
│   │   │   ├── __init__.py
│   │   │   ├── example
│   │   │   │   ├── __init__.py
│   │   │   │   └── submodule.py
│   │   │   ├── imp_find_module.py
│   │   │   ├── imp_find_module_error.py
│   │   │   ├── imp_get_suffixes.py
│   │   │   ├── imp_load_module.py
│   │   │   └── imp_load_module_reload.py
│   │   ├── inspect
│   │   │   ├── __init__.py
│   │   │   ├── example.py
│   │   │   ├── inspect_formatargspec.py
│   │   │   ├── inspect_getargspec_function.py
│   │   │   ├── inspect_getargvalues.py
│   │   │   ├── inspect_getcallargs.py
│   │   │   ├── inspect_getclasstree.py
│   │   │   ├── inspect_getclasstree_unique.py
│   │   │   ├── inspect_getcomments_method.py
│   │   │   ├── inspect_getcomments_module.py
│   │   │   ├── inspect_getdoc.py
│   │   │   ├── inspect_getmembers_class.py
│   │   │   ├── inspect_getmembers_class_methods.py
│   │   │   ├── inspect_getmembers_class_methods_b.py
│   │   │   ├── inspect_getmembers_instance.py
│   │   │   ├── inspect_getmembers_module.py
│   │   │   ├── inspect_getmembers_module_class.py
│   │   │   ├── inspect_getmoduleinfo.py
│   │   │   ├── inspect_getmro.py
│   │   │   ├── inspect_getsource_class.py
│   │   │   ├── inspect_getsource_method.py
│   │   │   ├── inspect_getsourcelines_method.py
│   │   │   └── inspect_stack.py
│   │   ├── itertools
│   │   │   ├── __init__.py
│   │   │   ├── itertools_chain.py
│   │   │   ├── itertools_count.py
│   │   │   ├── itertools_cycle.py
│   │   │   ├── itertools_dropwhile.py
│   │   │   ├── itertools_groupby.py
│   │   │   ├── itertools_groupby_seq.py
│   │   │   ├── itertools_ifilter.py
│   │   │   ├── itertools_ifilterfalse.py
│   │   │   ├── itertools_imap.py
│   │   │   ├── itertools_islice.py
│   │   │   ├── itertools_izip.py
│   │   │   ├── itertools_repeat.py
│   │   │   ├── itertools_repeat_imap.py
│   │   │   ├── itertools_repeat_izip.py
│   │   │   ├── itertools_starmap.py
│   │   │   ├── itertools_takewhile.py
│   │   │   ├── itertools_tee.py
│   │   │   └── itertools_tee_error.py
│   │   ├── json
│   │   │   ├── __init__.py
│   │   │   ├── json_compact_encoding.py
│   │   │   ├── json_decoder_object_hook.py
│   │   │   ├── json_dump_default.py
│   │   │   ├── json_dump_file.py
│   │   │   ├── json_encoder_default.py
│   │   │   ├── json_encoder_iterable.py
│   │   │   ├── json_indent.py
│   │   │   ├── json_load_file.py
│   │   │   ├── json_load_object_hook.py
│   │   │   ├── json_mixed_data.py
│   │   │   ├── json_myobj.py
│   │   │   ├── json_simple_types.py
│   │   │   ├── json_simple_types_decode.py
│   │   │   ├── json_skipkeys.py
│   │   │   └── json_sort_keys.py
│   │   ├── linecache
│   │   │   ├── __init__.py
│   │   │   ├── linecache_data.py
│   │   │   ├── linecache_empty_line.py
│   │   │   ├── linecache_example.py
│   │   │   ├── linecache_getline.py
│   │   │   ├── linecache_missing_file.py
│   │   │   ├── linecache_out_of_range.py
│   │   │   └── linecache_path_search.py
│   │   ├── locale
│   │   │   ├── __init__.py
│   │   │   ├── locale_atof_example.py
│   │   │   ├── locale_currency_example.py
│   │   │   ├── locale_date_example.py
│   │   │   ├── locale_env_example.py
│   │   │   ├── locale_grouping.py
│   │   │   └── locale_list.py
│   │   ├── logging
│   │   │   ├── __init__.py
│   │   │   ├── logging_file_example.py
│   │   │   ├── logging_level_example.py
│   │   │   ├── logging_modules_example.py
│   │   │   └── logging_rotatingfile_example.py
│   │   ├── mail.png
│   │   ├── mailbox
│   │   │   ├── __init__.py
│   │   │   ├── mailbox_maildir_create.py
│   │   │   ├── mailbox_maildir_folders.py
│   │   │   ├── mailbox_maildir_read.py
│   │   │   ├── mailbox_maildir_remove.py
│   │   │   ├── mailbox_mbox_create.py
│   │   │   ├── mailbox_mbox_read.py
│   │   │   └── mailbox_mbox_remove.py
│   │   ├── math
│   │   │   ├── __init__.py
│   │   │   ├── math_constants.py
│   │   │   ├── math_copysign.py
│   │   │   ├── math_degrees.py
│   │   │   ├── math_distance_2_points.py
│   │   │   ├── math_erf.py
│   │   │   ├── math_erfc.py
│   │   │   ├── math_exp.py
│   │   │   ├── math_expm1.py
│   │   │   ├── math_fabs.py
│   │   │   ├── math_factorial.py
│   │   │   ├── math_fmod.py
│   │   │   ├── math_frexp.py
│   │   │   ├── math_fsum.py
│   │   │   ├── math_gamma.py
│   │   │   ├── math_hyperbolic.py
│   │   │   ├── math_hypot.py
│   │   │   ├── math_integers.py
│   │   │   ├── math_inverse_trig.py
│   │   │   ├── math_isinf.py
│   │   │   ├── math_isnan.py
│   │   │   ├── math_ldexp.py
│   │   │   ├── math_lgamma.py
│   │   │   ├── math_log.py
│   │   │   ├── math_log10.py
│   │   │   ├── math_log1p.py
│   │   │   ├── math_modf.py
│   │   │   ├── math_overflow.py
│   │   │   ├── math_pow.py
│   │   │   ├── math_radians.py
│   │   │   ├── math_sqrt.py
│   │   │   └── math_trig.py
│   │   ├── mmap
│   │   │   ├── __init__.py
│   │   │   ├── lorem.txt
│   │   │   ├── mmap_read.py
│   │   │   ├── mmap_regex.py
│   │   │   ├── mmap_write_copy.py
│   │   │   └── mmap_write_slice.py
│   │   ├── multiprocessing
│   │   │   ├── __init__.py
│   │   │   ├── multiprocessing_condition.py
│   │   │   ├── multiprocessing_daemon.py
│   │   │   ├── multiprocessing_daemon_join.py
│   │   │   ├── multiprocessing_daemon_join_timeout.py
│   │   │   ├── multiprocessing_event.py
│   │   │   ├── multiprocessing_exitcode.py
│   │   │   ├── multiprocessing_get_logger.py
│   │   │   ├── multiprocessing_import_main.py
│   │   │   ├── multiprocessing_import_worker.py
│   │   │   ├── multiprocessing_lock.py
│   │   │   ├── multiprocessing_log_to_stderr.py
│   │   │   ├── multiprocessing_manager_dict.py
│   │   │   ├── multiprocessing_mapreduce.py
│   │   │   ├── multiprocessing_names.py
│   │   │   ├── multiprocessing_namespaces.py
│   │   │   ├── multiprocessing_namespaces_mutable.py
│   │   │   ├── multiprocessing_pool.py
│   │   │   ├── multiprocessing_pool_maxtasksperchild.py
│   │   │   ├── multiprocessing_producer_consumer.py
│   │   │   ├── multiprocessing_queue.py
│   │   │   ├── multiprocessing_semaphore.py
│   │   │   ├── multiprocessing_simple.py
│   │   │   ├── multiprocessing_simpleargs.py
│   │   │   ├── multiprocessing_subclass.py
│   │   │   ├── multiprocessing_terminate.py
│   │   │   └── multiprocessing_wordcount.py
│   │   ├── operator
│   │   │   ├── __init__.py
│   │   │   ├── operator_attrgetter.py
│   │   │   ├── operator_boolean.py
│   │   │   ├── operator_classes.py
│   │   │   ├── operator_comparisons.py
│   │   │   ├── operator_inplace.py
│   │   │   ├── operator_itemgetter.py
│   │   │   ├── operator_math.py
│   │   │   ├── operator_sequences.py
│   │   │   └── operator_typechecking.py
│   │   ├── optparse
│   │   │   ├── __init__.py
│   │   │   ├── optparse_append.py
│   │   │   ├── optparse_boolean.py
│   │   │   ├── optparse_callback.py
│   │   │   ├── optparse_callback_nargs.py
│   │   │   ├── optparse_choice.py
│   │   │   ├── optparse_count.py
│   │   │   ├── optparse_default.py
│   │   │   ├── optparse_getoptcomparison.py
│   │   │   ├── optparse_groups.py
│   │   │   ├── optparse_help.py
│   │   │   ├── optparse_long.py
│   │   │   ├── optparse_metavar.py
│   │   │   ├── optparse_no_default.py
│   │   │   ├── optparse_prog.py
│   │   │   ├── optparse_set_defaults.py
│   │   │   ├── optparse_short.py
│   │   │   ├── optparse_store_const.py
│   │   │   ├── optparse_types.py
│   │   │   ├── optparse_usage.py
│   │   │   └── optparse_version.py
│   │   ├── os
│   │   │   ├── __init__.py
│   │   │   ├── os_access.py
│   │   │   ├── os_cwd_example.py
│   │   │   ├── os_directories.py
│   │   │   ├── os_environ_example.py
│   │   │   ├── os_exec_example.py
│   │   │   ├── os_fork_example.py
│   │   │   ├── os_kill_example.py
│   │   │   ├── os_popen.py
│   │   │   ├── os_popen2.py
│   │   │   ├── os_popen2_seq.py
│   │   │   ├── os_popen3.py
│   │   │   ├── os_popen4.py
│   │   │   ├── os_process_id_example.py
│   │   │   ├── os_process_user_example.py
│   │   │   ├── os_spawn_example.py
│   │   │   ├── os_stat.py
│   │   │   ├── os_stat_chmod.py
│   │   │   ├── os_symlinks.py
│   │   │   ├── os_system_background.py
│   │   │   ├── os_system_example.py
│   │   │   ├── os_system_shell.py
│   │   │   ├── os_wait_example.py
│   │   │   ├── os_waitpid_example.py
│   │   │   └── os_walk.py
│   │   ├── ospath
│   │   │   ├── __init__.py
│   │   │   ├── ospath_abspath.py
│   │   │   ├── ospath_basename.py
│   │   │   ├── ospath_commonprefix.py
│   │   │   ├── ospath_dirname.py
│   │   │   ├── ospath_expanduser.py
│   │   │   ├── ospath_expandvars.py
│   │   │   ├── ospath_join.py
│   │   │   ├── ospath_normpath.py
│   │   │   ├── ospath_properties.py
│   │   │   ├── ospath_split.py
│   │   │   ├── ospath_splitext.py
│   │   │   ├── ospath_tests.py
│   │   │   └── ospath_walk.py
│   │   ├── pdb
│   │   │   ├── __init__.py
│   │   │   ├── lorem.txt
│   │   │   ├── pdb_break.py
│   │   │   ├── pdb_break_remote.py
│   │   │   ├── pdb_function_arguments.py
│   │   │   ├── pdb_jump.py
│   │   │   ├── pdb_next.py
│   │   │   ├── pdb_no_jump.py
│   │   │   ├── pdb_post_mortem.py
│   │   │   ├── pdb_pp.py
│   │   │   ├── pdb_run.py
│   │   │   ├── pdb_script.py
│   │   │   ├── pdb_set_trace.py
│   │   │   └── pdb_step.py
│   │   ├── pickle
│   │   │   ├── __init__.py
│   │   │   ├── pickle_cycle.py
│   │   │   ├── pickle_dump_to_file_1.py
│   │   │   ├── pickle_load_from_file_1.py
│   │   │   ├── pickle_load_from_file_2.py
│   │   │   ├── pickle_stream.py
│   │   │   ├── pickle_string.py
│   │   │   └── pickle_unpickle.py
│   │   ├── pkgutil
│   │   │   ├── __init__.py
│   │   │   ├── demopkg1
│   │   │   │   ├── __init__.py
│   │   │   │   └── shared.py
│   │   │   ├── demopkg2
│   │   │   │   ├── __init__.py
│   │   │   │   └── overloaded.py
│   │   │   ├── extension
│   │   │   │   ├── __init__.py
│   │   │   │   └── demopkg1
│   │   │   │       ├── __init__.py
│   │   │   │       └── not_shared.py
│   │   │   ├── nested
│   │   │   │   ├── __init__.py
│   │   │   │   ├── second
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── deep.py
│   │   │   │   └── shallow.py
│   │   │   ├── pkgutil_devel.py
│   │   │   ├── pkgutil_extend_path.py
│   │   │   ├── pkgutil_get_data.py
│   │   │   ├── pkgutil_get_data_zip.py
│   │   │   ├── pkgutil_nested.py
│   │   │   ├── pkgutil_os_specific.py
│   │   │   └── pkgwithdata
│   │   │       ├── __init__.py
│   │   │       └── templates
│   │   │           └── base.html
│   │   ├── platform
│   │   │   ├── __init__.py
│   │   │   ├── platform_architecture.py
│   │   │   ├── platform_os_info.py
│   │   │   ├── platform_platform.py
│   │   │   └── platform_python.py
│   │   ├── pprint
│   │   │   ├── __init__.py
│   │   │   ├── pprint_arbitrary_object.py
│   │   │   ├── pprint_data.py
│   │   │   ├── pprint_depth.py
│   │   │   ├── pprint_pformat.py
│   │   │   ├── pprint_pprint.py
│   │   │   ├── pprint_recursion.py
│   │   │   └── pprint_width.py
│   │   ├── profile
│   │   │   ├── __init__.py
│   │   │   ├── profile_fibonacci_memoized.py
│   │   │   ├── profile_fibonacci_raw.py
│   │   │   ├── profile_runctx.py
│   │   │   ├── profile_stats.py
│   │   │   ├── profile_stats_callers.py
│   │   │   └── profile_stats_restricted.py
│   │   ├── pyclbr
│   │   │   ├── __init__.py
│   │   │   ├── pyclbr_example.py
│   │   │   ├── pyclbr_readmodule.py
│   │   │   └── pyclbr_readmodule_ex.py
│   │   ├── pydoc
│   │   │   └── __init__.py
│   │   ├── random
│   │   │   ├── __init__.py
│   │   │   ├── random_choice.py
│   │   │   ├── random_jumpahead.py
│   │   │   ├── random_randint.py
│   │   │   ├── random_random.py
│   │   │   ├── random_random_class.py
│   │   │   ├── random_randrange.py
│   │   │   ├── random_sample.py
│   │   │   ├── random_seed.py
│   │   │   ├── random_shuffle.py
│   │   │   ├── random_state.py
│   │   │   ├── random_system_random.py
│   │   │   └── random_uniform.py
│   │   ├── re
│   │   │   ├── __init__.py
│   │   │   ├── re_anchoring.py
│   │   │   ├── re_charset.py
│   │   │   ├── re_charset_dot.py
│   │   │   ├── re_charset_exclude.py
│   │   │   ├── re_charset_ranges.py
│   │   │   ├── re_email_compact.py
│   │   │   ├── re_email_verbose.py
│   │   │   ├── re_email_with_name.py
│   │   │   ├── re_escape_codes.py
│   │   │   ├── re_escape_escapes.py
│   │   │   ├── re_findall.py
│   │   │   ├── re_finditer.py
│   │   │   ├── re_flags_dotall.py
│   │   │   ├── re_flags_embedded.py
│   │   │   ├── re_flags_ignorecase.py
│   │   │   ├── re_flags_multiline.py
│   │   │   ├── re_flags_unicode.py
│   │   │   ├── re_groups.py
│   │   │   ├── re_groups_alternative.py
│   │   │   ├── re_groups_individual.py
│   │   │   ├── re_groups_match.py
│   │   │   ├── re_groups_named.py
│   │   │   ├── re_groups_nested.py
│   │   │   ├── re_groups_noncapturing.py
│   │   │   ├── re_id.py
│   │   │   ├── re_look_ahead.py
│   │   │   ├── re_look_behind.py
│   │   │   ├── re_match.py
│   │   │   ├── re_negative_look_ahead.py
│   │   │   ├── re_negative_look_behind.py
│   │   │   ├── re_paragraphs_findall.py
│   │   │   ├── re_refer_to_group.py
│   │   │   ├── re_refer_to_named_group.py
│   │   │   ├── re_repetition.py
│   │   │   ├── re_repetition_non_greedy.py
│   │   │   ├── re_search_substring.py
│   │   │   ├── re_simple.py
│   │   │   ├── re_simple_compiled.py
│   │   │   ├── re_simple_match.py
│   │   │   ├── re_split.py
│   │   │   ├── re_split_groups.py
│   │   │   ├── re_sub.py
│   │   │   ├── re_sub_count.py
│   │   │   ├── re_sub_named_groups.py
│   │   │   ├── re_subn.py
│   │   │   ├── re_test_patterns.py
│   │   │   └── re_test_patterns_groups.py
│   │   ├── readline
│   │   │   ├── __init__.py
│   │   │   ├── readline_buffer.py
│   │   │   ├── readline_completer.py
│   │   │   ├── readline_history.py
│   │   │   ├── readline_hooks.py
│   │   │   ├── readline_parse_and_bind.py
│   │   │   └── readline_read_init_file.py
│   │   ├── resource
│   │   │   ├── __init__.py
│   │   │   ├── resource_getrlimit.py
│   │   │   ├── resource_getrusage.py
│   │   │   ├── resource_setrlimit_cpu.py
│   │   │   └── resource_setrlimit_nofile.py
│   │   ├── robotparser
│   │   │   ├── __init__.py
│   │   │   ├── robotparser_longlived.py
│   │   │   ├── robotparser_simple.py
│   │   │   └── robots.txt
│   │   ├── sched
│   │   │   ├── __init__.py
│   │   │   ├── sched_basic.py
│   │   │   ├── sched_cancel.py
│   │   │   ├── sched_overlap.py
│   │   │   └── sched_priority.py
│   │   ├── select
│   │   │   ├── __init__.py
│   │   │   ├── select_echo_multiclient.py
│   │   │   ├── select_echo_server.py
│   │   │   ├── select_echo_server_timeout.py
│   │   │   ├── select_echo_slow_client.py
│   │   │   └── select_poll_echo_server.py
│   │   ├── shelve
│   │   │   ├── __init__.py
│   │   │   ├── shelve_create.py
│   │   │   ├── shelve_existing.py
│   │   │   ├── shelve_readonly.py
│   │   │   ├── shelve_withoutwriteback.py
│   │   │   └── shelve_writeback.py
│   │   ├── shlex
│   │   │   ├── __init__.py
│   │   │   ├── apostrophe.txt
│   │   │   ├── comments.txt
│   │   │   ├── quotes.txt
│   │   │   ├── shlex_errors.py
│   │   │   ├── shlex_example.py
│   │   │   ├── shlex_posix.py
│   │   │   ├── shlex_source.py
│   │   │   ├── shlex_split.py
│   │   │   ├── shlex_table.py
│   │   │   └── shlex_whitespace.py
│   │   ├── shutil
│   │   │   ├── __init__.py
│   │   │   ├── shutil_copy.py
│   │   │   ├── shutil_copy2.py
│   │   │   ├── shutil_copyfile.py
│   │   │   ├── shutil_copyfileobj.py
│   │   │   ├── shutil_copymode.py
│   │   │   ├── shutil_copystat.py
│   │   │   ├── shutil_copytree.py
│   │   │   ├── shutil_move.py
│   │   │   └── shutil_rmtree.py
│   │   ├── signal
│   │   │   ├── __init__.py
│   │   │   ├── signal_alarm.py
│   │   │   ├── signal_getsignal.py
│   │   │   ├── signal_ignore.py
│   │   │   ├── signal_signal.py
│   │   │   ├── signal_threads.py
│   │   │   └── signal_threads_alarm.py
│   │   ├── site
│   │   │   ├── __init__.py
│   │   │   ├── site_addsitedir.py
│   │   │   ├── site_enable_user_site.py
│   │   │   ├── site_import_path.py
│   │   │   ├── site_user_base.py
│   │   │   └── with_sitecustomize
│   │   │       └── trace.txt
│   │   ├── smtpd
│   │   │   ├── __init__.py
│   │   │   ├── smtpd_custom.py
│   │   │   ├── smtpd_debug.py
│   │   │   ├── smtpd_proxy.py
│   │   │   └── smtpd_senddata.py
│   │   ├── smtplib
│   │   │   ├── __init__.py
│   │   │   ├── smtplib_authenticated.py
│   │   │   ├── smtplib_sendmail.py
│   │   │   └── smtplib_verify.py
│   │   ├── socket
│   │   │   ├── __init__.py
│   │   │   ├── socket_address_packing.py
│   │   │   ├── socket_binary_client.py
│   │   │   ├── socket_binary_server.py
│   │   │   ├── socket_echo_client.py
│   │   │   ├── socket_echo_client_dgram.py
│   │   │   ├── socket_echo_client_easy.py
│   │   │   ├── socket_echo_client_explicit.py
│   │   │   ├── socket_echo_client_uds.py
│   │   │   ├── socket_echo_server.py
│   │   │   ├── socket_echo_server_any.py
│   │   │   ├── socket_echo_server_dgram.py
│   │   │   ├── socket_echo_server_explicit.py
│   │   │   ├── socket_echo_server_uds.py
│   │   │   ├── socket_getaddrinfo.py
│   │   │   ├── socket_getaddrinfo_extra_args.py
│   │   │   ├── socket_getfqdn.py
│   │   │   ├── socket_gethostbyaddr.py
│   │   │   ├── socket_gethostbyname.py
│   │   │   ├── socket_gethostbyname_ex.py
│   │   │   ├── socket_gethostname.py
│   │   │   ├── socket_getprotobyname.py
│   │   │   ├── socket_getservbyname.py
│   │   │   ├── socket_getservbyport.py
│   │   │   ├── socket_ipv6_address_packing.py
│   │   │   ├── socket_multicast_receiver.py
│   │   │   ├── socket_multicast_sender.py
│   │   │   └── socket_socketpair.py
│   │   ├── sqlite3
│   │   │   ├── __init__.py
│   │   │   ├── sqlite3_argument_named.py
│   │   │   ├── sqlite3_argument_positional.py
│   │   │   ├── sqlite3_argument_update.py
│   │   │   ├── sqlite3_autocommit.py
│   │   │   ├── sqlite3_create_aggregate.py
│   │   │   ├── sqlite3_create_collation.py
│   │   │   ├── sqlite3_create_function.py
│   │   │   ├── sqlite3_create_schema.py
│   │   │   ├── sqlite3_createdb.py
│   │   │   ├── sqlite3_cursor_description.py
│   │   │   ├── sqlite3_custom_type.py
│   │   │   ├── sqlite3_custom_type_column.py
│   │   │   ├── sqlite3_date_types.py
│   │   │   ├── sqlite3_isolation_levels.py
│   │   │   ├── sqlite3_iterdump.py
│   │   │   ├── sqlite3_load_csv.py
│   │   │   ├── sqlite3_load_extension_fts3.py
│   │   │   ├── sqlite3_memory.py
│   │   │   ├── sqlite3_row_factory.py
│   │   │   ├── sqlite3_select_tasks.py
│   │   │   ├── sqlite3_select_variations.py
│   │   │   ├── sqlite3_set_authorizer.py
│   │   │   ├── sqlite3_threading.py
│   │   │   ├── sqlite3_transaction_commit.py
│   │   │   └── sqlite3_transaction_rollback.py
│   │   ├── string
│   │   │   ├── __init__.py
│   │   │   ├── string_capwords.py
│   │   │   ├── string_constants.py
│   │   │   ├── string_maketrans.py
│   │   │   ├── string_template.py
│   │   │   ├── string_template_advanced.py
│   │   │   ├── string_template_defaultpattern.py
│   │   │   ├── string_template_missing.py
│   │   │   └── string_template_newsyntax.py
│   │   ├── struct
│   │   │   ├── __init__.py
│   │   │   ├── struct_buffers.py
│   │   │   ├── struct_endianness.py
│   │   │   ├── struct_pack.py
│   │   │   └── struct_unpack.py
│   │   ├── subprocess
│   │   │   ├── __init__.py
│   │   │   ├── interaction.py
│   │   │   ├── repeater.py
│   │   │   ├── signal_child.py
│   │   │   ├── signal_parent.py
│   │   │   ├── subprocess_check_call.py
│   │   │   ├── subprocess_check_output.py
│   │   │   ├── subprocess_check_output_error.py
│   │   │   ├── subprocess_check_output_error_trap_output.py
│   │   │   ├── subprocess_os_system.py
│   │   │   ├── subprocess_pipes.py
│   │   │   ├── subprocess_popen2.py
│   │   │   ├── subprocess_popen3.py
│   │   │   ├── subprocess_popen4.py
│   │   │   ├── subprocess_popen_read.py
│   │   │   ├── subprocess_popen_write.py
│   │   │   ├── subprocess_shell_variables.py
│   │   │   ├── subprocess_signal_parent_shell.py
│   │   │   └── subprocess_signal_setsid.py
│   │   ├── sys
│   │   │   ├── __init__.py
│   │   │   ├── package_dir_a
│   │   │   │   ├── __init__.py
│   │   │   │   └── example.py
│   │   │   ├── package_dir_b
│   │   │   │   ├── __init__.py
│   │   │   │   └── example.py
│   │   │   ├── sys_argv.py
│   │   │   ├── sys_builtins.py
│   │   │   ├── sys_byteorder.py
│   │   │   ├── sys_checkinterval.py
│   │   │   ├── sys_checkinterval_io.py
│   │   │   ├── sys_current_frames.py
│   │   │   ├── sys_displayhook.py
│   │   │   ├── sys_exc_info.py
│   │   │   ├── sys_excepthook.py
│   │   │   ├── sys_exit.py
│   │   │   ├── sys_flags.py
│   │   │   ├── sys_float_info.py
│   │   │   ├── sys_getrefcount.py
│   │   │   ├── sys_getsizeof.py
│   │   │   ├── sys_getsizeof_custom.py
│   │   │   ├── sys_getsizeof_object.py
│   │   │   ├── sys_locations.py
│   │   │   ├── sys_maximums.py
│   │   │   ├── sys_meta_path.py
│   │   │   ├── sys_modules.py
│   │   │   ├── sys_path_hooks_noisy.py
│   │   │   ├── sys_path_importer_cache.py
│   │   │   ├── sys_path_modify.py
│   │   │   ├── sys_path_show.py
│   │   │   ├── sys_platform.py
│   │   │   ├── sys_ps1.py
│   │   │   ├── sys_recursionlimit.py
│   │   │   ├── sys_settrace_call.py
│   │   │   ├── sys_settrace_exception.py
│   │   │   ├── sys_settrace_line.py
│   │   │   ├── sys_settrace_return.py
│   │   │   ├── sys_shelve_importer.py
│   │   │   ├── sys_shelve_importer_create.py
│   │   │   ├── sys_shelve_importer_get_data.py
│   │   │   ├── sys_shelve_importer_missing.py
│   │   │   ├── sys_shelve_importer_module.py
│   │   │   ├── sys_shelve_importer_package.py
│   │   │   ├── sys_shelve_importer_reload.py
│   │   │   ├── sys_stdio.py
│   │   │   ├── sys_unicode.py
│   │   │   └── sys_version_values.py
│   │   ├── sysconfig
│   │   │   ├── __init__.py
│   │   │   ├── sysconfig_get_config_var.py
│   │   │   ├── sysconfig_get_config_vars.py
│   │   │   ├── sysconfig_get_config_vars_by_name.py
│   │   │   ├── sysconfig_get_path.py
│   │   │   ├── sysconfig_get_path_names.py
│   │   │   ├── sysconfig_get_paths.py
│   │   │   ├── sysconfig_get_platform.py
│   │   │   ├── sysconfig_get_python_version.py
│   │   │   └── sysconfig_get_scheme_names.py
│   │   ├── tarfile
│   │   │   ├── README.txt
│   │   │   ├── __init__.py
│   │   │   ├── bad_example.tar
│   │   │   ├── example.tar
│   │   │   ├── tarfile_add.py
│   │   │   ├── tarfile_addfile.py
│   │   │   ├── tarfile_addfile_string.py
│   │   │   ├── tarfile_append.py
│   │   │   ├── tarfile_compression.py
│   │   │   ├── tarfile_extract.py
│   │   │   ├── tarfile_extractall.py
│   │   │   ├── tarfile_extractall_members.py
│   │   │   ├── tarfile_extractfile.py
│   │   │   ├── tarfile_getmember.py
│   │   │   ├── tarfile_getmembers.py
│   │   │   ├── tarfile_getnames.py
│   │   │   └── tarfile_is_tarfile.py
│   │   ├── tempfile
│   │   │   ├── __init__.py
│   │   │   ├── tempfile_NamedTemporaryFile.py
│   │   │   ├── tempfile_NamedTemporaryFile_args.py
│   │   │   ├── tempfile_TemporaryFile.py
│   │   │   ├── tempfile_TemporaryFile_binary.py
│   │   │   ├── tempfile_TemporaryFile_text.py
│   │   │   ├── tempfile_mkdtemp.py
│   │   │   ├── tempfile_settings.py
│   │   │   └── tempfile_tempdir.py
│   │   ├── textwrap
│   │   │   ├── __init__.py
│   │   │   ├── textwrap_dedent.py
│   │   │   ├── textwrap_example.py
│   │   │   ├── textwrap_fill.py
│   │   │   ├── textwrap_fill_width.py
│   │   │   └── textwrap_hanging_indent.py
│   │   ├── threading
│   │   │   ├── __init__.py
│   │   │   ├── threading_condition.py
│   │   │   ├── threading_daemon.py
│   │   │   ├── threading_daemon_join.py
│   │   │   ├── threading_daemon_join_timeout.py
│   │   │   ├── threading_enumerate.py
│   │   │   ├── threading_event.py
│   │   │   ├── threading_local.py
│   │   │   ├── threading_local_defaults.py
│   │   │   ├── threading_lock.py
│   │   │   ├── threading_lock_noblock.py
│   │   │   ├── threading_lock_reacquire.py
│   │   │   ├── threading_lock_with.py
│   │   │   ├── threading_names.py
│   │   │   ├── threading_names_log.py
│   │   │   ├── threading_rlock.py
│   │   │   ├── threading_semaphore.py
│   │   │   ├── threading_simple.py
│   │   │   ├── threading_simpleargs.py
│   │   │   ├── threading_subclass.py
│   │   │   ├── threading_subclass_args.py
│   │   │   └── threading_timer.py
│   │   ├── time
│   │   │   ├── __init__.py
│   │   │   ├── time_clock.py
│   │   │   ├── time_clock_sleep.py
│   │   │   ├── time_ctime.py
│   │   │   ├── time_strptime.py
│   │   │   ├── time_struct.py
│   │   │   ├── time_time.py
│   │   │   └── time_timezone.py
│   │   ├── timeit
│   │   │   ├── __init__.py
│   │   │   ├── timeit_dictionary.py
│   │   │   ├── timeit_example.py
│   │   │   └── timeit_setitem.py
│   │   ├── trace
│   │   │   ├── __init__.py
│   │   │   ├── trace_CoverageResults.py
│   │   │   ├── trace_example
│   │   │   │   ├── __init__.py
│   │   │   │   ├── main.py
│   │   │   │   └── recurse.py
│   │   │   ├── trace_report.py
│   │   │   ├── trace_run.py
│   │   │   └── trace_runfunc.py
│   │   ├── traceback
│   │   │   ├── __init__.py
│   │   │   ├── traceback_example.py
│   │   │   ├── traceback_extract_stack.py
│   │   │   ├── traceback_extract_tb.py
│   │   │   ├── traceback_format_exc.py
│   │   │   ├── traceback_format_exception.py
│   │   │   ├── traceback_format_stack.py
│   │   │   ├── traceback_print_exc.py
│   │   │   ├── traceback_print_exception.py
│   │   │   ├── traceback_print_stack.py
│   │   │   └── traceback_print_tb.py
│   │   ├── unittest
│   │   │   ├── __init__.py
│   │   │   ├── unittest_almostequal.py
│   │   │   ├── unittest_equality.py
│   │   │   ├── unittest_exception.py
│   │   │   ├── unittest_failwithmessage.py
│   │   │   ├── unittest_fixtures.py
│   │   │   ├── unittest_outcomes.py
│   │   │   ├── unittest_simple.py
│   │   │   └── unittest_truth.py
│   │   ├── urllib
│   │   │   ├── __init__.py
│   │   │   ├── urllib_pathnames.py
│   │   │   ├── urllib_quote.py
│   │   │   ├── urllib_unquote.py
│   │   │   ├── urllib_urlencode.py
│   │   │   ├── urllib_urlencode_doseq.py
│   │   │   ├── urllib_urlopen.py
│   │   │   ├── urllib_urlopen_iterator.py
│   │   │   ├── urllib_urlopen_post.py
│   │   │   └── urllib_urlretrieve.py
│   │   ├── urllib2
│   │   │   ├── __init__.py
│   │   │   ├── urllib2_http_get_args.py
│   │   │   ├── urllib2_nfs_handler.py
│   │   │   ├── urllib2_request_header.py
│   │   │   ├── urllib2_request_post.py
│   │   │   ├── urllib2_upload_files.py
│   │   │   ├── urllib2_urlopen.py
│   │   │   ├── urllib2_urlopen_iterator.py
│   │   │   └── urllib2_urlopen_post.py
│   │   ├── urlparse
│   │   │   ├── __init__.py
│   │   │   ├── urlparse_geturl.py
│   │   │   ├── urlparse_urldefrag.py
│   │   │   ├── urlparse_urljoin.py
│   │   │   ├── urlparse_urljoin_with_path.py
│   │   │   ├── urlparse_urlparse.py
│   │   │   ├── urlparse_urlparseattrs.py
│   │   │   ├── urlparse_urlsplit.py
│   │   │   ├── urlparse_urlunparse.py
│   │   │   └── urlparse_urlunparseextra.py
│   │   ├── uuid
│   │   │   ├── __init__.py
│   │   │   ├── uuid_getnode.py
│   │   │   ├── uuid_uuid1.py
│   │   │   ├── uuid_uuid1_othermac.py
│   │   │   ├── uuid_uuid1_repeat.py
│   │   │   ├── uuid_uuid3_repeat.py
│   │   │   ├── uuid_uuid3_uuid5.py
│   │   │   ├── uuid_uuid4.py
│   │   │   └── uuid_uuid_objects.py
│   │   ├── warnings
│   │   │   ├── __init__.py
│   │   │   ├── warnings_filtering.py
│   │   │   ├── warnings_filterwarnings_lineno.py
│   │   │   ├── warnings_filterwarnings_message.py
│   │   │   ├── warnings_filterwarnings_module.py
│   │   │   ├── warnings_formatwarning.py
│   │   │   ├── warnings_once.py
│   │   │   ├── warnings_repeated.py
│   │   │   ├── warnings_showwarning.py
│   │   │   ├── warnings_warn.py
│   │   │   ├── warnings_warn_raise.py
│   │   │   └── warnings_warn_stacklevel.py
│   │   ├── weakref
│   │   │   ├── __init__.py
│   │   │   ├── weakref_cycle.py
│   │   │   ├── weakref_graph.py
│   │   │   ├── weakref_proxy.py
│   │   │   ├── weakref_ref.py
│   │   │   ├── weakref_ref_callback.py
│   │   │   ├── weakref_valuedict.py
│   │   │   └── weakref_weakgraph.py
│   │   ├── whichdb
│   │   │   ├── __init__.py
│   │   │   └── whichdb_whichdb.py
│   │   ├── xml
│   │   │   ├── __init__.py
│   │   │   └── etree
│   │   │       ├── ElementTree
│   │   │       │   ├── ElementTree_XML.py
│   │   │       │   ├── ElementTree_XMLID.py
│   │   │       │   ├── ElementTree_create.py
│   │   │       │   ├── ElementTree_create_pretty.py
│   │   │       │   ├── ElementTree_csv_to_xml.py
│   │   │       │   ├── ElementTree_dump_opml.py
│   │   │       │   ├── ElementTree_entity_references.py
│   │   │       │   ├── ElementTree_extend.py
│   │   │       │   ├── ElementTree_extend_node.py
│   │   │       │   ├── ElementTree_extend_node_copy.py
│   │   │       │   ├── ElementTree_find_feeds_by_structure.py
│   │   │       │   ├── ElementTree_find_feeds_by_tag.py
│   │   │       │   ├── ElementTree_node_attributes.py
│   │   │       │   ├── ElementTree_node_text.py
│   │   │       │   ├── ElementTree_parse_opml.py
│   │   │       │   ├── ElementTree_podcast_csv_treebuilder.py
│   │   │       │   ├── ElementTree_pretty.py
│   │   │       │   ├── ElementTree_show_all_events.py
│   │   │       │   ├── ElementTree_show_feed_urls.py
│   │   │       │   ├── ElementTree_write.py
│   │   │       │   ├── ElementTree_write_method.py
│   │   │       │   ├── ElementTree_write_podcast_csv.py
│   │   │       │   └── __init__.py
│   │   │       └── __init__.py
│   │   ├── xmlrpclib
│   │   │   ├── __init__.py
│   │   │   ├── xmlrpclib_Binary.py
│   │   │   ├── xmlrpclib_Binary_pickle.py
│   │   │   ├── xmlrpclib_MultiCall.py
│   │   │   ├── xmlrpclib_MultiCall_exception.py
│   │   │   ├── xmlrpclib_ServerProxy.py
│   │   │   ├── xmlrpclib_ServerProxy_allow_none.py
│   │   │   ├── xmlrpclib_ServerProxy_encoding.py
│   │   │   ├── xmlrpclib_ServerProxy_use_datetime.py
│   │   │   ├── xmlrpclib_ServerProxy_verbose.py
│   │   │   ├── xmlrpclib_exception.py
│   │   │   ├── xmlrpclib_server.py
│   │   │   ├── xmlrpclib_types.py
│   │   │   ├── xmlrpclib_types_nested.py
│   │   │   └── xmlrpclib_types_object.py
│   │   ├── zipfile
│   │   │   ├── README.txt
│   │   │   ├── __init__.py
│   │   │   ├── bad_example.zip
│   │   │   ├── example.zip
│   │   │   ├── zipfile_append.py
│   │   │   ├── zipfile_getinfo.py
│   │   │   ├── zipfile_infolist.py
│   │   │   ├── zipfile_is_zipfile.py
│   │   │   ├── zipfile_namelist.py
│   │   │   ├── zipfile_printdir.py
│   │   │   ├── zipfile_pyzipfile.py
│   │   │   ├── zipfile_read.py
│   │   │   ├── zipfile_write.py
│   │   │   ├── zipfile_write_arcname.py
│   │   │   ├── zipfile_write_compression.py
│   │   │   ├── zipfile_writestr.py
│   │   │   └── zipfile_writestr_zipinfo.py
│   │   ├── zipimport
│   │   │   ├── __init__.py
│   │   │   ├── example_package
│   │   │   │   ├── README.txt
│   │   │   │   └── __init__.py
│   │   │   ├── zipimport_find_module.py
│   │   │   ├── zipimport_get_code.py
│   │   │   ├── zipimport_get_data.py
│   │   │   ├── zipimport_get_data_nozip.py
│   │   │   ├── zipimport_get_data_zip.py
│   │   │   ├── zipimport_get_source.py
│   │   │   ├── zipimport_is_package.py
│   │   │   ├── zipimport_load_module.py
│   │   │   └── zipimport_make_example.py
│   │   └── zlib
│   │       ├── __init__.py
│   │       ├── lorem.txt
│   │       ├── zlib_checksum_tests.py
│   │       ├── zlib_checksums.py
│   │       ├── zlib_compresslevel.py
│   │       ├── zlib_incremental.py
│   │       ├── zlib_lengths.py
│   │       ├── zlib_memory.py
│   │       ├── zlib_mixed.py
│   │       └── zlib_server.py
│   ├── PyMOTW.egg-info
│   │   ├── PKG-INFO
│   │   ├── SOURCES.txt
│   │   ├── dependency_links.txt
│   │   ├── not-zip-safe
│   │   └── top_level.txt
│   ├── README.txt
│   ├── distribute_setup.py
│   ├── setup.cfg
│   └── setup.py
└── The Python Standard Library by Example(Doug Hellmann)示例源代码_PyMOTW-2.0.1.tar.gz

132 directories, 1313 files


实例下载地址

The Python Standard Library by Example(Doug Hellmann)示例源代码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警