实例介绍
【实例简介】pip-20.rar
可用,截止到2020-3-26最新版pip安装包。 解压后在setup.py路径进行cmd命令,输入python setup.py install,出现Finished……即完成。
文件清单
└── pip-20
├── AUTHORS.txt
├── docs
│ ├── html
│ │ ├── conf.py
│ │ ├── cookbook.rst
│ │ ├── development
│ │ │ ├── architecture
│ │ │ │ ├── anatomy.rst
│ │ │ │ ├── index.rst
│ │ │ │ ├── overview.rst
│ │ │ │ └── package-finding.rst
│ │ │ ├── ci.rst
│ │ │ ├── configuration.rst
│ │ │ ├── contributing.rst
│ │ │ ├── getting-started.rst
│ │ │ ├── index.rst
│ │ │ ├── issue-triage.rst
│ │ │ ├── release-process.rst
│ │ │ └── vendoring-policy.rst
│ │ ├── index.rst
│ │ ├── installing.rst
│ │ ├── logic.rst
│ │ ├── news.rst
│ │ ├── quickstart.rst
│ │ ├── reference
│ │ │ ├── index.rst
│ │ │ ├── pip_check.rst
│ │ │ ├── pip_config.rst
│ │ │ ├── pip_debug.rst
│ │ │ ├── pip_download.rst
│ │ │ ├── pip_freeze.rst
│ │ │ ├── pip_hash.rst
│ │ │ ├── pip_install.rst
│ │ │ ├── pip_list.rst
│ │ │ ├── pip.rst
│ │ │ ├── pip_search.rst
│ │ │ ├── pip_show.rst
│ │ │ ├── pip_uninstall.rst
│ │ │ └── pip_wheel.rst
│ │ ├── usage.rst
│ │ └── user_guide.rst
│ ├── man
│ │ ├── commands
│ │ │ ├── check.rst
│ │ │ ├── config.rst
│ │ │ ├── debug.rst
│ │ │ ├── download.rst
│ │ │ ├── freeze.rst
│ │ │ ├── hash.rst
│ │ │ ├── help.rst
│ │ │ ├── install.rst
│ │ │ ├── list.rst
│ │ │ ├── search.rst
│ │ │ ├── show.rst
│ │ │ ├── uninstall.rst
│ │ │ └── wheel.rst
│ │ └── index.rst
│ └── pip_sphinxext.py
├── LICENSE.txt
├── MANIFEST.in
├── NEWS.rst
├── PKG-INFO
├── pyproject.toml
├── README.rst
├── setup.cfg
├── setup.py
└── src
├── pip
│ ├── __init__.py
│ ├── _internal
│ │ ├── build_env.py
│ │ ├── cache.py
│ │ ├── cli
│ │ │ ├── autocompletion.py
│ │ │ ├── base_command.py
│ │ │ ├── cmdoptions.py
│ │ │ ├── command_context.py
│ │ │ ├── __init__.py
│ │ │ ├── main_parser.py
│ │ │ ├── main.py
│ │ │ ├── parser.py
│ │ │ ├── req_command.py
│ │ │ └── status_codes.py
│ │ ├── commands
│ │ │ ├── check.py
│ │ │ ├── completion.py
│ │ │ ├── configuration.py
│ │ │ ├── debug.py
│ │ │ ├── download.py
│ │ │ ├── freeze.py
│ │ │ ├── hash.py
│ │ │ ├── help.py
│ │ │ ├── __init__.py
│ │ │ ├── install.py
│ │ │ ├── list.py
│ │ │ ├── search.py
│ │ │ ├── show.py
│ │ │ ├── uninstall.py
│ │ │ └── wheel.py
│ │ ├── configuration.py
│ │ ├── distributions
│ │ │ ├── base.py
│ │ │ ├── __init__.py
│ │ │ ├── installed.py
│ │ │ ├── sdist.py
│ │ │ └── wheel.py
│ │ ├── exceptions.py
│ │ ├── index
│ │ │ ├── collector.py
│ │ │ ├── __init__.py
│ │ │ └── package_finder.py
│ │ ├── __init__.py
│ │ ├── legacy_resolve.py
│ │ ├── locations.py
│ │ ├── main.py
│ │ ├── models
│ │ │ ├── candidate.py
│ │ │ ├── format_control.py
│ │ │ ├── index.py
│ │ │ ├── __init__.py
│ │ │ ├── link.py
│ │ │ ├── scheme.py
│ │ │ ├── search_scope.py
│ │ │ ├── selection_prefs.py
│ │ │ ├── target_python.py
│ │ │ └── wheel.py
│ │ ├── network
│ │ │ ├── auth.py
│ │ │ ├── cache.py
│ │ │ ├── download.py
│ │ │ ├── __init__.py
│ │ │ ├── session.py
│ │ │ ├── utils.py
│ │ │ └── xmlrpc.py
│ │ ├── operations
│ │ │ ├── build
│ │ │ │ ├── __init__.py
│ │ │ │ ├── metadata_legacy.py
│ │ │ │ ├── metadata.py
│ │ │ │ ├── wheel_legacy.py
│ │ │ │ └── wheel.py
│ │ │ ├── check.py
│ │ │ ├── freeze.py
│ │ │ ├── __init__.py
│ │ │ ├── install
│ │ │ │ ├── editable_legacy.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── legacy.py
│ │ │ │ └── wheel.py
│ │ │ └── prepare.py
│ │ ├── pep425tags.py
│ │ ├── pyproject.py
│ │ ├── req
│ │ │ ├── constructors.py
│ │ │ ├── __init__.py
│ │ │ ├── req_file.py
│ │ │ ├── req_install.py
│ │ │ ├── req_set.py
│ │ │ ├── req_tracker.py
│ │ │ └── req_uninstall.py
│ │ ├── self_outdated_check.py
│ │ ├── utils
│ │ │ ├── appdirs.py
│ │ │ ├── compat.py
│ │ │ ├── deprecation.py
│ │ │ ├── distutils_args.py
│ │ │ ├── encoding.py
│ │ │ ├── entrypoints.py
│ │ │ ├── filesystem.py
│ │ │ ├── filetypes.py
│ │ │ ├── glibc.py
│ │ │ ├── hashes.py
│ │ │ ├── __init__.py
│ │ │ ├── inject_securetransport.py
│ │ │ ├── logging.py
│ │ │ ├── marker_files.py
│ │ │ ├── misc.py
│ │ │ ├── models.py
│ │ │ ├── packaging.py
│ │ │ ├── pkg_resources.py
│ │ │ ├── setuptools_build.py
│ │ │ ├── subprocess.py
│ │ │ ├── temp_dir.py
│ │ │ ├── typing.py
│ │ │ ├── ui.py
│ │ │ ├── unpacking.py
│ │ │ ├── urls.py
│ │ │ ├── virtualenv.py
│ │ │ └── wheel.py
│ │ ├── vcs
│ │ │ ├── bazaar.py
│ │ │ ├── git.py
│ │ │ ├── __init__.py
│ │ │ ├── mercurial.py
│ │ │ ├── subversion.py
│ │ │ └── versioncontrol.py
│ │ └── wheel_builder.py
│ ├── __main__.py
│ └── _vendor
│ ├── appdirs.LICENSE.txt
│ ├── appdirs.py
│ ├── cachecontrol
│ │ ├── adapter.py
│ │ ├── cache.py
│ │ ├── caches
│ │ │ ├── file_cache.py
│ │ │ ├── __init__.py
│ │ │ └── redis_cache.py
│ │ ├── _cmd.py
│ │ ├── compat.py
│ │ ├── controller.py
│ │ ├── filewrapper.py
│ │ ├── heuristics.py
│ │ ├── __init__.py
│ │ ├── LICENSE.txt
│ │ ├── serialize.py
│ │ └── wrapper.py
│ ├── certifi
│ │ ├── cacert.pem
│ │ ├── core.py
│ │ ├── __init__.py
│ │ ├── LICENSE
│ │ └── __main__.py
│ ├── chardet
│ │ ├── big5freq.py
│ │ ├── big5prober.py
│ │ ├── chardistribution.py
│ │ ├── charsetgroupprober.py
│ │ ├── charsetprober.py
│ │ ├── cli
│ │ │ ├── chardetect.py
│ │ │ └── __init__.py
│ │ ├── codingstatemachine.py
│ │ ├── compat.py
│ │ ├── cp949prober.py
│ │ ├── enums.py
│ │ ├── escprober.py
│ │ ├── escsm.py
│ │ ├── eucjpprober.py
│ │ ├── euckrfreq.py
│ │ ├── euckrprober.py
│ │ ├── euctwfreq.py
│ │ ├── euctwprober.py
│ │ ├── gb2312freq.py
│ │ ├── gb2312prober.py
│ │ ├── hebrewprober.py
│ │ ├── __init__.py
│ │ ├── jisfreq.py
│ │ ├── jpcntx.py
│ │ ├── langbulgarianmodel.py
│ │ ├── langcyrillicmodel.py
│ │ ├── langgreekmodel.py
│ │ ├── langhebrewmodel.py
│ │ ├── langhungarianmodel.py
│ │ ├── langthaimodel.py
│ │ ├── langturkishmodel.py
│ │ ├── latin1prober.py
│ │ ├── LICENSE
│ │ ├── mbcharsetprober.py
│ │ ├── mbcsgroupprober.py
│ │ ├── mbcssm.py
│ │ ├── sbcharsetprober.py
│ │ ├── sbcsgroupprober.py
│ │ ├── sjisprober.py
│ │ ├── universaldetector.py
│ │ ├── utf8prober.py
│ │ └── version.py
│ ├── colorama
│ │ ├── ansi.py
│ │ ├── ansitowin32.py
│ │ ├── initialise.py
│ │ ├── __init__.py
│ │ ├── LICENSE.txt
│ │ ├── win32.py
│ │ └── winterm.py
│ ├── contextlib2.LICENSE.txt
│ ├── contextlib2.py
│ ├── distlib
│ │ ├── _backport
│ │ │ ├── __init__.py
│ │ │ ├── misc.py
│ │ │ ├── shutil.py
│ │ │ ├── sysconfig.cfg
│ │ │ ├── sysconfig.py
│ │ │ └── tarfile.py
│ │ ├── compat.py
│ │ ├── database.py
│ │ ├── index.py
│ │ ├── __init__.py
│ │ ├── LICENSE.txt
│ │ ├── locators.py
│ │ ├── manifest.py
│ │ ├── markers.py
│ │ ├── metadata.py
│ │ ├── resources.py
│ │ ├── scripts.py
│ │ ├── t32.exe
│ │ ├── t64.exe
│ │ ├── util.py
│ │ ├── version.py
│ │ ├── w32.exe
│ │ ├── w64.exe
│ │ └── wheel.py
│ ├── distro.LICENSE
│ ├── distro.py
│ ├── html5lib
│ │ ├── constants.py
│ │ ├── filters
│ │ │ ├── alphabeticalattributes.py
│ │ │ ├── base.py
│ │ │ ├── __init__.py
│ │ │ ├── inject_meta_charset.py
│ │ │ ├── lint.py
│ │ │ ├── optionaltags.py
│ │ │ ├── sanitizer.py
│ │ │ └── whitespace.py
│ │ ├── html5parser.py
│ │ ├── _ihatexml.py
│ │ ├── __init__.py
│ │ ├── _inputstream.py
│ │ ├── LICENSE
│ │ ├── serializer.py
│ │ ├── _tokenizer.py
│ │ ├── treeadapters
│ │ │ ├── genshi.py
│ │ │ ├── __init__.py
│ │ │ └── sax.py
│ │ ├── treebuilders
│ │ │ ├── base.py
│ │ │ ├── dom.py
│ │ │ ├── etree_lxml.py
│ │ │ ├── etree.py
│ │ │ └── __init__.py
│ │ ├── treewalkers
│ │ │ ├── base.py
│ │ │ ├── dom.py
│ │ │ ├── etree_lxml.py
│ │ │ ├── etree.py
│ │ │ ├── genshi.py
│ │ │ └── __init__.py
│ │ ├── _trie
│ │ │ ├── _base.py
│ │ │ ├── datrie.py
│ │ │ ├── __init__.py
│ │ │ └── py.py
│ │ └── _utils.py
│ ├── idna
│ │ ├── codec.py
│ │ ├── compat.py
│ │ ├── core.py
│ │ ├── idnadata.py
│ │ ├── __init__.py
│ │ ├── intranges.py
│ │ ├── LICENSE.rst
│ │ ├── package_data.py
│ │ └── uts46data.py
│ ├── __init__.py
│ ├── ipaddress.LICENSE
│ ├── ipaddress.py
│ ├── msgpack
│ │ ├── COPYING
│ │ ├── exceptions.py
│ │ ├── fallback.py
│ │ ├── __init__.py
│ │ └── _version.py
│ ├── packaging
│ │ ├── __about__.py
│ │ ├── _compat.py
│ │ ├── __init__.py
│ │ ├── LICENSE
│ │ ├── LICENSE.APACHE
│ │ ├── LICENSE.BSD
│ │ ├── markers.py
│ │ ├── py.typed
│ │ ├── requirements.py
│ │ ├── specifiers.py
│ │ ├── _structures.py
│ │ ├── tags.py
│ │ ├── _typing.py
│ │ ├── utils.py
│ │ └── version.py
│ ├── pep517
│ │ ├── build.py
│ │ ├── check.py
│ │ ├── colorlog.py
│ │ ├── compat.py
│ │ ├── dirtools.py
│ │ ├── envbuild.py
│ │ ├── __init__.py
│ │ ├── _in_process.py
│ │ ├── LICENSE
│ │ ├── meta.py
│ │ └── wrappers.py
│ ├── pkg_resources
│ │ ├── __init__.py
│ │ ├── LICENSE
│ │ └── py31compat.py
│ ├── progress
│ │ ├── bar.py
│ │ ├── counter.py
│ │ ├── __init__.py
│ │ ├── LICENSE
│ │ └── spinner.py
│ ├── pyparsing.LICENSE
│ ├── pyparsing.py
│ ├── pytoml
│ │ ├── core.py
│ │ ├── __init__.py
│ │ ├── LICENSE
│ │ ├── parser.py
│ │ ├── test.py
│ │ ├── utils.py
│ │ └── writer.py
│ ├── README.rst
│ ├── requests
│ │ ├── adapters.py
│ │ ├── api.py
│ │ ├── auth.py
│ │ ├── certs.py
│ │ ├── compat.py
│ │ ├── cookies.py
│ │ ├── exceptions.py
│ │ ├── help.py
│ │ ├── hooks.py
│ │ ├── __init__.py
│ │ ├── _internal_utils.py
│ │ ├── LICENSE
│ │ ├── models.py
│ │ ├── packages.py
│ │ ├── sessions.py
│ │ ├── status_codes.py
│ │ ├── structures.py
│ │ ├── utils.py
│ │ └── __version__.py
│ ├── retrying.LICENSE
│ ├── retrying.py
│ ├── six.LICENSE
│ ├── six.py
│ ├── urllib3
│ │ ├── _collections.py
│ │ ├── connectionpool.py
│ │ ├── connection.py
│ │ ├── contrib
│ │ │ ├── _appengine_environ.py
│ │ │ ├── appengine.py
│ │ │ ├── __init__.py
│ │ │ ├── ntlmpool.py
│ │ │ ├── pyopenssl.py
│ │ │ ├── _securetransport
│ │ │ │ ├── bindings.py
│ │ │ │ ├── __init__.py
│ │ │ │ └── low_level.py
│ │ │ ├── securetransport.py
│ │ │ └── socks.py
│ │ ├── exceptions.py
│ │ ├── fields.py
│ │ ├── filepost.py
│ │ ├── __init__.py
│ │ ├── LICENSE.txt
│ │ ├── packages
│ │ │ ├── backports
│ │ │ │ ├── __init__.py
│ │ │ │ └── makefile.py
│ │ │ ├── __init__.py
│ │ │ ├── six.py
│ │ │ └── ssl_match_hostname
│ │ │ ├── _implementation.py
│ │ │ └── __init__.py
│ │ ├── poolmanager.py
│ │ ├── request.py
│ │ ├── response.py
│ │ └── util
│ │ ├── connection.py
│ │ ├── __init__.py
│ │ ├── queue.py
│ │ ├── request.py
│ │ ├── response.py
│ │ ├── retry.py
│ │ ├── ssl_.py
│ │ ├── timeout.py
│ │ ├── url.py
│ │ └── wait.py
│ ├── vendor.txt
│ └── webencodings
│ ├── __init__.py
│ ├── labels.py
│ ├── LICENSE
│ ├── mklabels.py
│ ├── tests.py
│ └── x_user_defined.py
└── pip.egg-info
├── dependency_links.txt
├── entry_points.txt
├── not-zip-safe
├── PKG-INFO
├── SOURCES.txt
└── top_level.txt
55 directories, 443 files
可用,截止到2020-3-26最新版pip安装包。 解压后在setup.py路径进行cmd命令,输入python setup.py install,出现Finished……即完成。
【实例截图】
文件清单
└── pip-20
├── AUTHORS.txt
├── docs
│ ├── html
│ │ ├── conf.py
│ │ ├── cookbook.rst
│ │ ├── development
│ │ │ ├── architecture
│ │ │ │ ├── anatomy.rst
│ │ │ │ ├── index.rst
│ │ │ │ ├── overview.rst
│ │ │ │ └── package-finding.rst
│ │ │ ├── ci.rst
│ │ │ ├── configuration.rst
│ │ │ ├── contributing.rst
│ │ │ ├── getting-started.rst
│ │ │ ├── index.rst
│ │ │ ├── issue-triage.rst
│ │ │ ├── release-process.rst
│ │ │ └── vendoring-policy.rst
│ │ ├── index.rst
│ │ ├── installing.rst
│ │ ├── logic.rst
│ │ ├── news.rst
│ │ ├── quickstart.rst
│ │ ├── reference
│ │ │ ├── index.rst
│ │ │ ├── pip_check.rst
│ │ │ ├── pip_config.rst
│ │ │ ├── pip_debug.rst
│ │ │ ├── pip_download.rst
│ │ │ ├── pip_freeze.rst
│ │ │ ├── pip_hash.rst
│ │ │ ├── pip_install.rst
│ │ │ ├── pip_list.rst
│ │ │ ├── pip.rst
│ │ │ ├── pip_search.rst
│ │ │ ├── pip_show.rst
│ │ │ ├── pip_uninstall.rst
│ │ │ └── pip_wheel.rst
│ │ ├── usage.rst
│ │ └── user_guide.rst
│ ├── man
│ │ ├── commands
│ │ │ ├── check.rst
│ │ │ ├── config.rst
│ │ │ ├── debug.rst
│ │ │ ├── download.rst
│ │ │ ├── freeze.rst
│ │ │ ├── hash.rst
│ │ │ ├── help.rst
│ │ │ ├── install.rst
│ │ │ ├── list.rst
│ │ │ ├── search.rst
│ │ │ ├── show.rst
│ │ │ ├── uninstall.rst
│ │ │ └── wheel.rst
│ │ └── index.rst
│ └── pip_sphinxext.py
├── LICENSE.txt
├── MANIFEST.in
├── NEWS.rst
├── PKG-INFO
├── pyproject.toml
├── README.rst
├── setup.cfg
├── setup.py
└── src
├── pip
│ ├── __init__.py
│ ├── _internal
│ │ ├── build_env.py
│ │ ├── cache.py
│ │ ├── cli
│ │ │ ├── autocompletion.py
│ │ │ ├── base_command.py
│ │ │ ├── cmdoptions.py
│ │ │ ├── command_context.py
│ │ │ ├── __init__.py
│ │ │ ├── main_parser.py
│ │ │ ├── main.py
│ │ │ ├── parser.py
│ │ │ ├── req_command.py
│ │ │ └── status_codes.py
│ │ ├── commands
│ │ │ ├── check.py
│ │ │ ├── completion.py
│ │ │ ├── configuration.py
│ │ │ ├── debug.py
│ │ │ ├── download.py
│ │ │ ├── freeze.py
│ │ │ ├── hash.py
│ │ │ ├── help.py
│ │ │ ├── __init__.py
│ │ │ ├── install.py
│ │ │ ├── list.py
│ │ │ ├── search.py
│ │ │ ├── show.py
│ │ │ ├── uninstall.py
│ │ │ └── wheel.py
│ │ ├── configuration.py
│ │ ├── distributions
│ │ │ ├── base.py
│ │ │ ├── __init__.py
│ │ │ ├── installed.py
│ │ │ ├── sdist.py
│ │ │ └── wheel.py
│ │ ├── exceptions.py
│ │ ├── index
│ │ │ ├── collector.py
│ │ │ ├── __init__.py
│ │ │ └── package_finder.py
│ │ ├── __init__.py
│ │ ├── legacy_resolve.py
│ │ ├── locations.py
│ │ ├── main.py
│ │ ├── models
│ │ │ ├── candidate.py
│ │ │ ├── format_control.py
│ │ │ ├── index.py
│ │ │ ├── __init__.py
│ │ │ ├── link.py
│ │ │ ├── scheme.py
│ │ │ ├── search_scope.py
│ │ │ ├── selection_prefs.py
│ │ │ ├── target_python.py
│ │ │ └── wheel.py
│ │ ├── network
│ │ │ ├── auth.py
│ │ │ ├── cache.py
│ │ │ ├── download.py
│ │ │ ├── __init__.py
│ │ │ ├── session.py
│ │ │ ├── utils.py
│ │ │ └── xmlrpc.py
│ │ ├── operations
│ │ │ ├── build
│ │ │ │ ├── __init__.py
│ │ │ │ ├── metadata_legacy.py
│ │ │ │ ├── metadata.py
│ │ │ │ ├── wheel_legacy.py
│ │ │ │ └── wheel.py
│ │ │ ├── check.py
│ │ │ ├── freeze.py
│ │ │ ├── __init__.py
│ │ │ ├── install
│ │ │ │ ├── editable_legacy.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── legacy.py
│ │ │ │ └── wheel.py
│ │ │ └── prepare.py
│ │ ├── pep425tags.py
│ │ ├── pyproject.py
│ │ ├── req
│ │ │ ├── constructors.py
│ │ │ ├── __init__.py
│ │ │ ├── req_file.py
│ │ │ ├── req_install.py
│ │ │ ├── req_set.py
│ │ │ ├── req_tracker.py
│ │ │ └── req_uninstall.py
│ │ ├── self_outdated_check.py
│ │ ├── utils
│ │ │ ├── appdirs.py
│ │ │ ├── compat.py
│ │ │ ├── deprecation.py
│ │ │ ├── distutils_args.py
│ │ │ ├── encoding.py
│ │ │ ├── entrypoints.py
│ │ │ ├── filesystem.py
│ │ │ ├── filetypes.py
│ │ │ ├── glibc.py
│ │ │ ├── hashes.py
│ │ │ ├── __init__.py
│ │ │ ├── inject_securetransport.py
│ │ │ ├── logging.py
│ │ │ ├── marker_files.py
│ │ │ ├── misc.py
│ │ │ ├── models.py
│ │ │ ├── packaging.py
│ │ │ ├── pkg_resources.py
│ │ │ ├── setuptools_build.py
│ │ │ ├── subprocess.py
│ │ │ ├── temp_dir.py
│ │ │ ├── typing.py
│ │ │ ├── ui.py
│ │ │ ├── unpacking.py
│ │ │ ├── urls.py
│ │ │ ├── virtualenv.py
│ │ │ └── wheel.py
│ │ ├── vcs
│ │ │ ├── bazaar.py
│ │ │ ├── git.py
│ │ │ ├── __init__.py
│ │ │ ├── mercurial.py
│ │ │ ├── subversion.py
│ │ │ └── versioncontrol.py
│ │ └── wheel_builder.py
│ ├── __main__.py
│ └── _vendor
│ ├── appdirs.LICENSE.txt
│ ├── appdirs.py
│ ├── cachecontrol
│ │ ├── adapter.py
│ │ ├── cache.py
│ │ ├── caches
│ │ │ ├── file_cache.py
│ │ │ ├── __init__.py
│ │ │ └── redis_cache.py
│ │ ├── _cmd.py
│ │ ├── compat.py
│ │ ├── controller.py
│ │ ├── filewrapper.py
│ │ ├── heuristics.py
│ │ ├── __init__.py
│ │ ├── LICENSE.txt
│ │ ├── serialize.py
│ │ └── wrapper.py
│ ├── certifi
│ │ ├── cacert.pem
│ │ ├── core.py
│ │ ├── __init__.py
│ │ ├── LICENSE
│ │ └── __main__.py
│ ├── chardet
│ │ ├── big5freq.py
│ │ ├── big5prober.py
│ │ ├── chardistribution.py
│ │ ├── charsetgroupprober.py
│ │ ├── charsetprober.py
│ │ ├── cli
│ │ │ ├── chardetect.py
│ │ │ └── __init__.py
│ │ ├── codingstatemachine.py
│ │ ├── compat.py
│ │ ├── cp949prober.py
│ │ ├── enums.py
│ │ ├── escprober.py
│ │ ├── escsm.py
│ │ ├── eucjpprober.py
│ │ ├── euckrfreq.py
│ │ ├── euckrprober.py
│ │ ├── euctwfreq.py
│ │ ├── euctwprober.py
│ │ ├── gb2312freq.py
│ │ ├── gb2312prober.py
│ │ ├── hebrewprober.py
│ │ ├── __init__.py
│ │ ├── jisfreq.py
│ │ ├── jpcntx.py
│ │ ├── langbulgarianmodel.py
│ │ ├── langcyrillicmodel.py
│ │ ├── langgreekmodel.py
│ │ ├── langhebrewmodel.py
│ │ ├── langhungarianmodel.py
│ │ ├── langthaimodel.py
│ │ ├── langturkishmodel.py
│ │ ├── latin1prober.py
│ │ ├── LICENSE
│ │ ├── mbcharsetprober.py
│ │ ├── mbcsgroupprober.py
│ │ ├── mbcssm.py
│ │ ├── sbcharsetprober.py
│ │ ├── sbcsgroupprober.py
│ │ ├── sjisprober.py
│ │ ├── universaldetector.py
│ │ ├── utf8prober.py
│ │ └── version.py
│ ├── colorama
│ │ ├── ansi.py
│ │ ├── ansitowin32.py
│ │ ├── initialise.py
│ │ ├── __init__.py
│ │ ├── LICENSE.txt
│ │ ├── win32.py
│ │ └── winterm.py
│ ├── contextlib2.LICENSE.txt
│ ├── contextlib2.py
│ ├── distlib
│ │ ├── _backport
│ │ │ ├── __init__.py
│ │ │ ├── misc.py
│ │ │ ├── shutil.py
│ │ │ ├── sysconfig.cfg
│ │ │ ├── sysconfig.py
│ │ │ └── tarfile.py
│ │ ├── compat.py
│ │ ├── database.py
│ │ ├── index.py
│ │ ├── __init__.py
│ │ ├── LICENSE.txt
│ │ ├── locators.py
│ │ ├── manifest.py
│ │ ├── markers.py
│ │ ├── metadata.py
│ │ ├── resources.py
│ │ ├── scripts.py
│ │ ├── t32.exe
│ │ ├── t64.exe
│ │ ├── util.py
│ │ ├── version.py
│ │ ├── w32.exe
│ │ ├── w64.exe
│ │ └── wheel.py
│ ├── distro.LICENSE
│ ├── distro.py
│ ├── html5lib
│ │ ├── constants.py
│ │ ├── filters
│ │ │ ├── alphabeticalattributes.py
│ │ │ ├── base.py
│ │ │ ├── __init__.py
│ │ │ ├── inject_meta_charset.py
│ │ │ ├── lint.py
│ │ │ ├── optionaltags.py
│ │ │ ├── sanitizer.py
│ │ │ └── whitespace.py
│ │ ├── html5parser.py
│ │ ├── _ihatexml.py
│ │ ├── __init__.py
│ │ ├── _inputstream.py
│ │ ├── LICENSE
│ │ ├── serializer.py
│ │ ├── _tokenizer.py
│ │ ├── treeadapters
│ │ │ ├── genshi.py
│ │ │ ├── __init__.py
│ │ │ └── sax.py
│ │ ├── treebuilders
│ │ │ ├── base.py
│ │ │ ├── dom.py
│ │ │ ├── etree_lxml.py
│ │ │ ├── etree.py
│ │ │ └── __init__.py
│ │ ├── treewalkers
│ │ │ ├── base.py
│ │ │ ├── dom.py
│ │ │ ├── etree_lxml.py
│ │ │ ├── etree.py
│ │ │ ├── genshi.py
│ │ │ └── __init__.py
│ │ ├── _trie
│ │ │ ├── _base.py
│ │ │ ├── datrie.py
│ │ │ ├── __init__.py
│ │ │ └── py.py
│ │ └── _utils.py
│ ├── idna
│ │ ├── codec.py
│ │ ├── compat.py
│ │ ├── core.py
│ │ ├── idnadata.py
│ │ ├── __init__.py
│ │ ├── intranges.py
│ │ ├── LICENSE.rst
│ │ ├── package_data.py
│ │ └── uts46data.py
│ ├── __init__.py
│ ├── ipaddress.LICENSE
│ ├── ipaddress.py
│ ├── msgpack
│ │ ├── COPYING
│ │ ├── exceptions.py
│ │ ├── fallback.py
│ │ ├── __init__.py
│ │ └── _version.py
│ ├── packaging
│ │ ├── __about__.py
│ │ ├── _compat.py
│ │ ├── __init__.py
│ │ ├── LICENSE
│ │ ├── LICENSE.APACHE
│ │ ├── LICENSE.BSD
│ │ ├── markers.py
│ │ ├── py.typed
│ │ ├── requirements.py
│ │ ├── specifiers.py
│ │ ├── _structures.py
│ │ ├── tags.py
│ │ ├── _typing.py
│ │ ├── utils.py
│ │ └── version.py
│ ├── pep517
│ │ ├── build.py
│ │ ├── check.py
│ │ ├── colorlog.py
│ │ ├── compat.py
│ │ ├── dirtools.py
│ │ ├── envbuild.py
│ │ ├── __init__.py
│ │ ├── _in_process.py
│ │ ├── LICENSE
│ │ ├── meta.py
│ │ └── wrappers.py
│ ├── pkg_resources
│ │ ├── __init__.py
│ │ ├── LICENSE
│ │ └── py31compat.py
│ ├── progress
│ │ ├── bar.py
│ │ ├── counter.py
│ │ ├── __init__.py
│ │ ├── LICENSE
│ │ └── spinner.py
│ ├── pyparsing.LICENSE
│ ├── pyparsing.py
│ ├── pytoml
│ │ ├── core.py
│ │ ├── __init__.py
│ │ ├── LICENSE
│ │ ├── parser.py
│ │ ├── test.py
│ │ ├── utils.py
│ │ └── writer.py
│ ├── README.rst
│ ├── requests
│ │ ├── adapters.py
│ │ ├── api.py
│ │ ├── auth.py
│ │ ├── certs.py
│ │ ├── compat.py
│ │ ├── cookies.py
│ │ ├── exceptions.py
│ │ ├── help.py
│ │ ├── hooks.py
│ │ ├── __init__.py
│ │ ├── _internal_utils.py
│ │ ├── LICENSE
│ │ ├── models.py
│ │ ├── packages.py
│ │ ├── sessions.py
│ │ ├── status_codes.py
│ │ ├── structures.py
│ │ ├── utils.py
│ │ └── __version__.py
│ ├── retrying.LICENSE
│ ├── retrying.py
│ ├── six.LICENSE
│ ├── six.py
│ ├── urllib3
│ │ ├── _collections.py
│ │ ├── connectionpool.py
│ │ ├── connection.py
│ │ ├── contrib
│ │ │ ├── _appengine_environ.py
│ │ │ ├── appengine.py
│ │ │ ├── __init__.py
│ │ │ ├── ntlmpool.py
│ │ │ ├── pyopenssl.py
│ │ │ ├── _securetransport
│ │ │ │ ├── bindings.py
│ │ │ │ ├── __init__.py
│ │ │ │ └── low_level.py
│ │ │ ├── securetransport.py
│ │ │ └── socks.py
│ │ ├── exceptions.py
│ │ ├── fields.py
│ │ ├── filepost.py
│ │ ├── __init__.py
│ │ ├── LICENSE.txt
│ │ ├── packages
│ │ │ ├── backports
│ │ │ │ ├── __init__.py
│ │ │ │ └── makefile.py
│ │ │ ├── __init__.py
│ │ │ ├── six.py
│ │ │ └── ssl_match_hostname
│ │ │ ├── _implementation.py
│ │ │ └── __init__.py
│ │ ├── poolmanager.py
│ │ ├── request.py
│ │ ├── response.py
│ │ └── util
│ │ ├── connection.py
│ │ ├── __init__.py
│ │ ├── queue.py
│ │ ├── request.py
│ │ ├── response.py
│ │ ├── retry.py
│ │ ├── ssl_.py
│ │ ├── timeout.py
│ │ ├── url.py
│ │ └── wait.py
│ ├── vendor.txt
│ └── webencodings
│ ├── __init__.py
│ ├── labels.py
│ ├── LICENSE
│ ├── mklabels.py
│ ├── tests.py
│ └── x_user_defined.py
└── pip.egg-info
├── dependency_links.txt
├── entry_points.txt
├── not-zip-safe
├── PKG-INFO
├── SOURCES.txt
└── top_level.txt
55 directories, 443 files
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论