实例介绍
【实例简介】Python操作CAD绘图
.
├── DuanMianCAD
│ ├── DuanMianCad
│ │ ├── Lib
│ │ │ └── site-packages
│ │ │ ├── PyWin32.chm
│ │ │ ├── __pycache__
│ │ │ │ ├── _virtualenv.cpython-38.pyc
│ │ │ │ └── pythoncom.cpython-38.pyc
│ │ │ ├── _distutils_hack
│ │ │ │ ├── __init__.py
│ │ │ │ └── override.py
│ │ │ ├── _virtualenv.pth
│ │ │ ├── _virtualenv.py
│ │ │ ├── adodbapi
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ ├── ado_consts.cpython-38.pyc
│ │ │ │ │ ├── adodbapi.cpython-38.pyc
│ │ │ │ │ ├── apibase.cpython-38.pyc
│ │ │ │ │ ├── is64bit.cpython-38.pyc
│ │ │ │ │ ├── process_connect_string.cpython-38.pyc
│ │ │ │ │ ├── remote.cpython-38.pyc
│ │ │ │ │ ├── schema_table.cpython-38.pyc
│ │ │ │ │ └── setup.cpython-38.pyc
│ │ │ │ ├── ado_consts.py
│ │ │ │ ├── adodbapi.py
│ │ │ │ ├── apibase.py
│ │ │ │ ├── examples
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── db_print.cpython-38.pyc
│ │ │ │ │ │ ├── db_table_names.cpython-38.pyc
│ │ │ │ │ │ ├── xls_read.cpython-38.pyc
│ │ │ │ │ │ └── xls_write.cpython-38.pyc
│ │ │ │ │ ├── db_print.py
│ │ │ │ │ ├── db_table_names.py
│ │ │ │ │ ├── xls_read.py
│ │ │ │ │ └── xls_write.py
│ │ │ │ ├── is64bit.py
│ │ │ │ ├── license.txt
│ │ │ │ ├── process_connect_string.py
│ │ │ │ ├── readme.txt
│ │ │ │ ├── remote.py
│ │ │ │ ├── schema_table.py
│ │ │ │ ├── setup.py
│ │ │ │ └── test
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── adodbapitest.cpython-38.pyc
│ │ │ │ │ ├── adodbapitestconfig.cpython-38.pyc
│ │ │ │ │ ├── dbapi20.cpython-38.pyc
│ │ │ │ │ ├── is64bit.cpython-38.pyc
│ │ │ │ │ ├── setuptestframework.cpython-38.pyc
│ │ │ │ │ ├── test_adodbapi_dbapi20.cpython-38.pyc
│ │ │ │ │ └── tryconnection.cpython-38.pyc
│ │ │ │ ├── adodbapitest.py
│ │ │ │ ├── adodbapitestconfig.py
│ │ │ │ ├── dbapi20.py
│ │ │ │ ├── is64bit.py
│ │ │ │ ├── setuptestframework.py
│ │ │ │ ├── test_adodbapi_dbapi20.py
│ │ │ │ └── tryconnection.py
│ │ │ ├── comtypes
│ │ │ │ ├── GUID.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── GUID.cpython-38.pyc
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ ├── _comobject.cpython-38.pyc
│ │ │ │ │ ├── _meta.cpython-38.pyc
│ │ │ │ │ ├── _safearray.cpython-38.pyc
│ │ │ │ │ ├── automation.cpython-38.pyc
│ │ │ │ │ ├── connectionpoints.cpython-38.pyc
│ │ │ │ │ ├── errorinfo.cpython-38.pyc
│ │ │ │ │ ├── git.cpython-38.pyc
│ │ │ │ │ ├── hresult.cpython-38.pyc
│ │ │ │ │ ├── logutil.cpython-38.pyc
│ │ │ │ │ ├── messageloop.cpython-38.pyc
│ │ │ │ │ ├── npsupport.cpython-38.pyc
│ │ │ │ │ ├── patcher.cpython-38.pyc
│ │ │ │ │ ├── persist.cpython-38.pyc
│ │ │ │ │ ├── safearray.cpython-38.pyc
│ │ │ │ │ ├── shelllink.cpython-38.pyc
│ │ │ │ │ ├── typeinfo.cpython-38.pyc
│ │ │ │ │ ├── util.cpython-38.pyc
│ │ │ │ │ └── viewobject.cpython-38.pyc
│ │ │ │ ├── _comobject.py
│ │ │ │ ├── _meta.py
│ │ │ │ ├── _safearray.py
│ │ │ │ ├── automation.py
│ │ │ │ ├── client
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── _code_cache.cpython-38.pyc
│ │ │ │ │ │ ├── _events.cpython-38.pyc
│ │ │ │ │ │ ├── _generate.cpython-38.pyc
│ │ │ │ │ │ ├── dynamic.cpython-38.pyc
│ │ │ │ │ │ └── lazybind.cpython-38.pyc
│ │ │ │ │ ├── _code_cache.py
│ │ │ │ │ ├── _events.py
│ │ │ │ │ ├── _generate.py
│ │ │ │ │ ├── dynamic.py
│ │ │ │ │ └── lazybind.py
│ │ │ │ ├── connectionpoints.py
│ │ │ │ ├── errorinfo.py
│ │ │ │ ├── gen
│ │ │ │ │ ├── AXDBLib.py
│ │ │ │ │ ├── AutoCAD.py
│ │ │ │ │ ├── _00020430_0000_0000_C000_000000000046_0_2_0.py
│ │ │ │ │ ├── _E072BCE4_9027_4F86_BAE2_EF119FD0A0D3_0_1_0.py
│ │ │ │ │ ├── _FFC2A8DB_A497_4087_941C_C5B5462237EA_0_1_0.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── AXDBLib.cpython-38.pyc
│ │ │ │ │ │ ├── AutoCAD.cpython-38.pyc
│ │ │ │ │ │ ├── _00020430_0000_0000_C000_000000000046_0_2_0.cpython-38.pyc
│ │ │ │ │ │ ├── _E072BCE4_9027_4F86_BAE2_EF119FD0A0D3_0_1_0.cpython-38.pyc
│ │ │ │ │ │ ├── _FFC2A8DB_A497_4087_941C_C5B5462237EA_0_1_0.cpython-38.pyc
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ └── stdole.cpython-38.pyc
│ │ │ │ │ └── stdole.py
│ │ │ │ ├── git.py
│ │ │ │ ├── hresult.py
│ │ │ │ ├── logutil.py
│ │ │ │ ├── messageloop.py
│ │ │ │ ├── npsupport.py
│ │ │ │ ├── patcher.py
│ │ │ │ ├── persist.py
│ │ │ │ ├── safearray.py
│ │ │ │ ├── server
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── automation.cpython-38.pyc
│ │ │ │ │ │ ├── connectionpoints.cpython-38.pyc
│ │ │ │ │ │ ├── inprocserver.cpython-38.pyc
│ │ │ │ │ │ ├── localserver.cpython-38.pyc
│ │ │ │ │ │ ├── register.cpython-38.pyc
│ │ │ │ │ │ └── w_getopt.cpython-38.pyc
│ │ │ │ │ ├── automation.py
│ │ │ │ │ ├── connectionpoints.py
│ │ │ │ │ ├── inprocserver.py
│ │ │ │ │ ├── localserver.py
│ │ │ │ │ ├── register.py
│ │ │ │ │ └── w_getopt.py
│ │ │ │ ├── shelllink.py
│ │ │ │ ├── test
│ │ │ │ │ ├── TestComServer.idl
│ │ │ │ │ ├── TestComServer.py
│ │ │ │ │ ├── TestComServer.tlb
│ │ │ │ │ ├── TestDispServer.idl
│ │ │ │ │ ├── TestDispServer.py
│ │ │ │ │ ├── TestDispServer.tlb
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── TestComServer.cpython-38.pyc
│ │ │ │ │ │ ├── TestDispServer.cpython-38.pyc
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── find_memleak.cpython-38.pyc
│ │ │ │ │ │ ├── runtests.cpython-38.pyc
│ │ │ │ │ │ ├── setup.cpython-38.pyc
│ │ │ │ │ │ ├── test_BSTR.cpython-38.pyc
│ │ │ │ │ │ ├── test_DISPPARAMS.cpython-38.pyc
│ │ │ │ │ │ ├── test_GUID.cpython-38.pyc
│ │ │ │ │ │ ├── test_QueryService.cpython-38.pyc
│ │ │ │ │ │ ├── test_agilent.cpython-38.pyc
│ │ │ │ │ │ ├── test_avmc.cpython-38.pyc
│ │ │ │ │ │ ├── test_basic.cpython-38.pyc
│ │ │ │ │ │ ├── test_casesensitivity.cpython-38.pyc
│ │ │ │ │ │ ├── test_client.cpython-38.pyc
│ │ │ │ │ │ ├── test_collections.cpython-38.pyc
│ │ │ │ │ │ ├── test_comserver.cpython-38.pyc
│ │ │ │ │ │ ├── test_createwrappers.cpython-38.pyc
│ │ │ │ │ │ ├── test_dict.cpython-38.pyc
│ │ │ │ │ │ ├── test_dispinterface.cpython-38.pyc
│ │ │ │ │ │ ├── test_dyndispatch.cpython-38.pyc
│ │ │ │ │ │ ├── test_excel.cpython-38.pyc
│ │ │ │ │ │ ├── test_findgendir.cpython-38.pyc
│ │ │ │ │ │ ├── test_getactiveobj.cpython-38.pyc
│ │ │ │ │ │ ├── test_ie.cpython-38.pyc
│ │ │ │ │ │ ├── test_msscript.cpython-38.pyc
│ │ │ │ │ │ ├── test_outparam.cpython-38.pyc
│ │ │ │ │ │ ├── test_propputref.cpython-38.pyc
│ │ │ │ │ │ ├── test_pump_events.cpython-38.pyc
│ │ │ │ │ │ ├── test_safearray.cpython-38.pyc
│ │ │ │ │ │ ├── test_sapi.cpython-38.pyc
│ │ │ │ │ │ ├── test_server.cpython-38.pyc
│ │ │ │ │ │ ├── test_showevents.cpython-38.pyc
│ │ │ │ │ │ ├── test_subinterface.cpython-38.pyc
│ │ │ │ │ │ ├── test_typeinfo.cpython-38.pyc
│ │ │ │ │ │ ├── test_urlhistory.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32com_interop.cpython-38.pyc
│ │ │ │ │ │ ├── test_wmi.cpython-38.pyc
│ │ │ │ │ │ └── test_word.cpython-38.pyc
│ │ │ │ │ ├── find_memleak.py
│ │ │ │ │ ├── mylib.idl
│ │ │ │ │ ├── mytypelib.idl
│ │ │ │ │ ├── runtests.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ ├── test_BSTR.py
│ │ │ │ │ ├── test_DISPPARAMS.py
│ │ │ │ │ ├── test_GUID.py
│ │ │ │ │ ├── test_QueryService.py
│ │ │ │ │ ├── test_agilent.py
│ │ │ │ │ ├── test_avmc.py
│ │ │ │ │ ├── test_basic.py
│ │ │ │ │ ├── test_casesensitivity.py
│ │ │ │ │ ├── test_client.py
│ │ │ │ │ ├── test_collections.py
│ │ │ │ │ ├── test_comserver.py
│ │ │ │ │ ├── test_createwrappers.py
│ │ │ │ │ ├── test_dict.py
│ │ │ │ │ ├── test_dispinterface.py
│ │ │ │ │ ├── test_dyndispatch.py
│ │ │ │ │ ├── test_excel.py
│ │ │ │ │ ├── test_findgendir.py
│ │ │ │ │ ├── test_getactiveobj.py
│ │ │ │ │ ├── test_ie.py
│ │ │ │ │ ├── test_jscript.js
│ │ │ │ │ ├── test_msscript.py
│ │ │ │ │ ├── test_outparam.py
│ │ │ │ │ ├── test_propputref.py
│ │ │ │ │ ├── test_pump_events.py
│ │ │ │ │ ├── test_safearray.py
│ │ │ │ │ ├── test_sapi.py
│ │ │ │ │ ├── test_server.py
│ │ │ │ │ ├── test_showevents.py
│ │ │ │ │ ├── test_subinterface.py
│ │ │ │ │ ├── test_typeinfo.py
│ │ │ │ │ ├── test_urlhistory.py
│ │ │ │ │ ├── test_variant.py
│ │ │ │ │ ├── test_win32com_interop.py
│ │ │ │ │ ├── test_wmi.py
│ │ │ │ │ └── test_word.py
│ │ │ │ ├── tools
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── codegenerator.cpython-38.pyc
│ │ │ │ │ │ ├── tlbparser.cpython-38.pyc
│ │ │ │ │ │ ├── typedesc.cpython-38.pyc
│ │ │ │ │ │ └── typedesc_base.cpython-38.pyc
│ │ │ │ │ ├── codegenerator.py
│ │ │ │ │ ├── tlbparser.py
│ │ │ │ │ ├── typedesc.py
│ │ │ │ │ └── typedesc_base.py
│ │ │ │ ├── typeinfo.py
│ │ │ │ ├── util.py
│ │ │ │ └── viewobject.py
│ │ │ ├── comtypes-1.1.11.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ └── top_level.txt
│ │ │ ├── distutils-precedence.pth
│ │ │ ├── isapi
│ │ │ │ ├── PyISAPI_loader.dll
│ │ │ │ ├── README.txt
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ ├── install.cpython-38.pyc
│ │ │ │ │ ├── isapicon.cpython-38.pyc
│ │ │ │ │ ├── simple.cpython-38.pyc
│ │ │ │ │ └── threaded_extension.cpython-38.pyc
│ │ │ │ ├── doc
│ │ │ │ │ └── isapi.html
│ │ │ │ ├── install.py
│ │ │ │ ├── isapicon.py
│ │ │ │ ├── samples
│ │ │ │ │ ├── README.txt
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── advanced.cpython-38.pyc
│ │ │ │ │ │ ├── redirector.cpython-38.pyc
│ │ │ │ │ │ ├── redirector_asynch.cpython-38.pyc
│ │ │ │ │ │ ├── redirector_with_filter.cpython-38.pyc
│ │ │ │ │ │ └── test.cpython-38.pyc
│ │ │ │ │ ├── advanced.py
│ │ │ │ │ ├── redirector.py
│ │ │ │ │ ├── redirector_asynch.py
│ │ │ │ │ ├── redirector_with_filter.py
│ │ │ │ │ └── test.py
│ │ │ │ ├── simple.py
│ │ │ │ ├── test
│ │ │ │ │ ├── README.txt
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ └── extension_simple.cpython-38.pyc
│ │ │ │ │ └── extension_simple.py
│ │ │ │ └── threaded_extension.py
│ │ │ ├── pip
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __main__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ ├── _internal
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── build_env.cpython-38.pyc
│ │ │ │ │ │ ├── cache.cpython-38.pyc
│ │ │ │ │ │ ├── configuration.cpython-38.pyc
│ │ │ │ │ │ ├── exceptions.cpython-38.pyc
│ │ │ │ │ │ ├── pyproject.cpython-38.pyc
│ │ │ │ │ │ ├── self_outdated_check.cpython-38.pyc
│ │ │ │ │ │ └── wheel_builder.cpython-38.pyc
│ │ │ │ │ ├── build_env.py
│ │ │ │ │ ├── cache.py
│ │ │ │ │ ├── cli
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── autocompletion.cpython-38.pyc
│ │ │ │ │ │ │ ├── base_command.cpython-38.pyc
│ │ │ │ │ │ │ ├── cmdoptions.cpython-38.pyc
│ │ │ │ │ │ │ ├── command_context.cpython-38.pyc
│ │ │ │ │ │ │ ├── main.cpython-38.pyc
│ │ │ │ │ │ │ ├── main_parser.cpython-38.pyc
│ │ │ │ │ │ │ ├── parser.cpython-38.pyc
│ │ │ │ │ │ │ ├── progress_bars.cpython-38.pyc
│ │ │ │ │ │ │ ├── req_command.cpython-38.pyc
│ │ │ │ │ │ │ ├── spinners.cpython-38.pyc
│ │ │ │ │ │ │ └── status_codes.cpython-38.pyc
│ │ │ │ │ │ ├── autocompletion.py
│ │ │ │ │ │ ├── base_command.py
│ │ │ │ │ │ ├── cmdoptions.py
│ │ │ │ │ │ ├── command_context.py
│ │ │ │ │ │ ├── main.py
│ │ │ │ │ │ ├── main_parser.py
│ │ │ │ │ │ ├── parser.py
│ │ │ │ │ │ ├── progress_bars.py
│ │ │ │ │ │ ├── req_command.py
│ │ │ │ │ │ ├── spinners.py
│ │ │ │ │ │ └── status_codes.py
│ │ │ │ │ ├── commands
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ └── install.cpython-38.pyc
│ │ │ │ │ │ ├── cache.py
│ │ │ │ │ │ ├── check.py
│ │ │ │ │ │ ├── completion.py
│ │ │ │ │ │ ├── configuration.py
│ │ │ │ │ │ ├── debug.py
│ │ │ │ │ │ ├── download.py
│ │ │ │ │ │ ├── freeze.py
│ │ │ │ │ │ ├── hash.py
│ │ │ │ │ │ ├── help.py
│ │ │ │ │ │ ├── install.py
│ │ │ │ │ │ ├── list.py
│ │ │ │ │ │ ├── search.py
│ │ │ │ │ │ ├── show.py
│ │ │ │ │ │ ├── uninstall.py
│ │ │ │ │ │ └── wheel.py
│ │ │ │ │ ├── configuration.py
│ │ │ │ │ ├── distributions
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── base.cpython-38.pyc
│ │ │ │ │ │ │ ├── installed.cpython-38.pyc
│ │ │ │ │ │ │ ├── sdist.cpython-38.pyc
│ │ │ │ │ │ │ └── wheel.cpython-38.pyc
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── installed.py
│ │ │ │ │ │ ├── sdist.py
│ │ │ │ │ │ └── wheel.py
│ │ │ │ │ ├── exceptions.py
│ │ │ │ │ ├── index
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── collector.cpython-38.pyc
│ │ │ │ │ │ │ ├── package_finder.cpython-38.pyc
│ │ │ │ │ │ │ └── sources.cpython-38.pyc
│ │ │ │ │ │ ├── collector.py
│ │ │ │ │ │ ├── package_finder.py
│ │ │ │ │ │ └── sources.py
│ │ │ │ │ ├── locations
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── _distutils.cpython-38.pyc
│ │ │ │ │ │ │ ├── _sysconfig.cpython-38.pyc
│ │ │ │ │ │ │ └── base.cpython-38.pyc
│ │ │ │ │ │ ├── _distutils.py
│ │ │ │ │ │ ├── _sysconfig.py
│ │ │ │ │ │ └── base.py
│ │ │ │ │ ├── main.py
│ │ │ │ │ ├── metadata
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── base.cpython-38.pyc
│ │ │ │ │ │ │ └── pkg_resources.cpython-38.pyc
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ └── pkg_resources.py
│ │ │ │ │ ├── models
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── candidate.cpython-38.pyc
│ │ │ │ │ │ │ ├── direct_url.cpython-38.pyc
│ │ │ │ │ │ │ ├── format_control.cpython-38.pyc
│ │ │ │ │ │ │ ├── index.cpython-38.pyc
│ │ │ │ │ │ │ ├── link.cpython-38.pyc
│ │ │ │ │ │ │ ├── scheme.cpython-38.pyc
│ │ │ │ │ │ │ ├── search_scope.cpython-38.pyc
│ │ │ │ │ │ │ ├── selection_prefs.cpython-38.pyc
│ │ │ │ │ │ │ ├── target_python.cpython-38.pyc
│ │ │ │ │ │ │ └── wheel.cpython-38.pyc
│ │ │ │ │ │ ├── candidate.py
│ │ │ │ │ │ ├── direct_url.py
│ │ │ │ │ │ ├── format_control.py
│ │ │ │ │ │ ├── index.py
│ │ │ │ │ │ ├── link.py
│ │ │ │ │ │ ├── scheme.py
│ │ │ │ │ │ ├── search_scope.py
│ │ │ │ │ │ ├── selection_prefs.py
│ │ │ │ │ │ ├── target_python.py
│ │ │ │ │ │ └── wheel.py
│ │ │ │ │ ├── network
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── auth.cpython-38.pyc
│ │ │ │ │ │ │ ├── cache.cpython-38.pyc
│ │ │ │ │ │ │ ├── download.cpython-38.pyc
│ │ │ │ │ │ │ ├── lazy_wheel.cpython-38.pyc
│ │ │ │ │ │ │ ├── session.cpython-38.pyc
│ │ │ │ │ │ │ └── utils.cpython-38.pyc
│ │ │ │ │ │ ├── auth.py
│ │ │ │ │ │ ├── cache.py
│ │ │ │ │ │ ├── download.py
│ │ │ │ │ │ ├── lazy_wheel.py
│ │ │ │ │ │ ├── session.py
│ │ │ │ │ │ ├── utils.py
│ │ │ │ │ │ └── xmlrpc.py
│ │ │ │ │ ├── operations
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── check.cpython-38.pyc
│ │ │ │ │ │ │ └── prepare.cpython-38.pyc
│ │ │ │ │ │ ├── build
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── metadata.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── metadata_legacy.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── wheel.cpython-38.pyc
│ │ │ │ │ │ │ │ └── wheel_legacy.cpython-38.pyc
│ │ │ │ │ │ │ ├── metadata.py
│ │ │ │ │ │ │ ├── metadata_legacy.py
│ │ │ │ │ │ │ ├── wheel.py
│ │ │ │ │ │ │ └── wheel_legacy.py
│ │ │ │ │ │ ├── check.py
│ │ │ │ │ │ ├── freeze.py
│ │ │ │ │ │ ├── install
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── editable_legacy.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── legacy.cpython-38.pyc
│ │ │ │ │ │ │ │ └── wheel.cpython-38.pyc
│ │ │ │ │ │ │ ├── editable_legacy.py
│ │ │ │ │ │ │ ├── legacy.py
│ │ │ │ │ │ │ └── wheel.py
│ │ │ │ │ │ └── prepare.py
│ │ │ │ │ ├── pyproject.py
│ │ │ │ │ ├── req
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── constructors.cpython-38.pyc
│ │ │ │ │ │ │ ├── req_file.cpython-38.pyc
│ │ │ │ │ │ │ ├── req_install.cpython-38.pyc
│ │ │ │ │ │ │ ├── req_set.cpython-38.pyc
│ │ │ │ │ │ │ ├── req_tracker.cpython-38.pyc
│ │ │ │ │ │ │ └── req_uninstall.cpython-38.pyc
│ │ │ │ │ │ ├── constructors.py
│ │ │ │ │ │ ├── req_file.py
│ │ │ │ │ │ ├── req_install.py
│ │ │ │ │ │ ├── req_set.py
│ │ │ │ │ │ ├── req_tracker.py
│ │ │ │ │ │ └── req_uninstall.py
│ │ │ │ │ ├── resolution
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ └── base.cpython-38.pyc
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── legacy
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ └── resolver.py
│ │ │ │ │ │ └── resolvelib
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── base.cpython-38.pyc
│ │ │ │ │ │ │ ├── candidates.cpython-38.pyc
│ │ │ │ │ │ │ ├── factory.cpython-38.pyc
│ │ │ │ │ │ │ ├── found_candidates.cpython-38.pyc
│ │ │ │ │ │ │ ├── provider.cpython-38.pyc
│ │ │ │ │ │ │ ├── reporter.cpython-38.pyc
│ │ │ │ │ │ │ ├── requirements.cpython-38.pyc
│ │ │ │ │ │ │ └── resolver.cpython-38.pyc
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── candidates.py
│ │ │ │ │ │ ├── factory.py
│ │ │ │ │ │ ├── found_candidates.py
│ │ │ │ │ │ ├── provider.py
│ │ │ │ │ │ ├── reporter.py
│ │ │ │ │ │ ├── requirements.py
│ │ │ │ │ │ └── resolver.py
│ │ │ │ │ ├── self_outdated_check.py
│ │ │ │ │ ├── utils
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── appdirs.cpython-38.pyc
│ │ │ │ │ │ │ ├── compat.cpython-38.pyc
│ │ │ │ │ │ │ ├── compatibility_tags.cpython-38.pyc
│ │ │ │ │ │ │ ├── deprecation.cpython-38.pyc
│ │ │ │ │ │ │ ├── direct_url_helpers.cpython-38.pyc
│ │ │ │ │ │ │ ├── distutils_args.cpython-38.pyc
│ │ │ │ │ │ │ ├── encoding.cpython-38.pyc
│ │ │ │ │ │ │ ├── filesystem.cpython-38.pyc
│ │ │ │ │ │ │ ├── filetypes.cpython-38.pyc
│ │ │ │ │ │ │ ├── glibc.cpython-38.pyc
│ │ │ │ │ │ │ ├── hashes.cpython-38.pyc
│ │ │ │ │ │ │ ├── inject_securetransport.cpython-38.pyc
│ │ │ │ │ │ │ ├── logging.cpython-38.pyc
│ │ │ │ │ │ │ ├── misc.cpython-38.pyc
│ │ │ │ │ │ │ ├── models.cpython-38.pyc
│ │ │ │ │ │ │ ├── packaging.cpython-38.pyc
│ │ │ │ │ │ │ ├── pkg_resources.cpython-38.pyc
│ │ │ │ │ │ │ ├── setuptools_build.cpython-38.pyc
│ │ │ │ │ │ │ ├── subprocess.cpython-38.pyc
│ │ │ │ │ │ │ ├── temp_dir.cpython-38.pyc
│ │ │ │ │ │ │ ├── unpacking.cpython-38.pyc
│ │ │ │ │ │ │ ├── urls.cpython-38.pyc
│ │ │ │ │ │ │ ├── virtualenv.cpython-38.pyc
│ │ │ │ │ │ │ └── wheel.cpython-38.pyc
│ │ │ │ │ │ ├── appdirs.py
│ │ │ │ │ │ ├── compat.py
│ │ │ │ │ │ ├── compatibility_tags.py
│ │ │ │ │ │ ├── datetime.py
│ │ │ │ │ │ ├── deprecation.py
│ │ │ │ │ │ ├── direct_url_helpers.py
│ │ │ │ │ │ ├── distutils_args.py
│ │ │ │ │ │ ├── encoding.py
│ │ │ │ │ │ ├── entrypoints.py
│ │ │ │ │ │ ├── filesystem.py
│ │ │ │ │ │ ├── filetypes.py
│ │ │ │ │ │ ├── glibc.py
│ │ │ │ │ │ ├── hashes.py
│ │ │ │ │ │ ├── inject_securetransport.py
│ │ │ │ │ │ ├── logging.py
│ │ │ │ │ │ ├── misc.py
│ │ │ │ │ │ ├── models.py
│ │ │ │ │ │ ├── packaging.py
│ │ │ │ │ │ ├── parallel.py
│ │ │ │ │ │ ├── pkg_resources.py
│ │ │ │ │ │ ├── setuptools_build.py
│ │ │ │ │ │ ├── subprocess.py
│ │ │ │ │ │ ├── temp_dir.py
│ │ │ │ │ │ ├── unpacking.py
│ │ │ │ │ │ ├── urls.py
│ │ │ │ │ │ ├── virtualenv.py
│ │ │ │ │ │ └── wheel.py
│ │ │ │ │ ├── vcs
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── bazaar.cpython-38.pyc
│ │ │ │ │ │ │ ├── git.cpython-38.pyc
│ │ │ │ │ │ │ ├── mercurial.cpython-38.pyc
│ │ │ │ │ │ │ ├── subversion.cpython-38.pyc
│ │ │ │ │ │ │ └── versioncontrol.cpython-38.pyc
│ │ │ │ │ │ ├── bazaar.py
│ │ │ │ │ │ ├── git.py
│ │ │ │ │ │ ├── mercurial.py
│ │ │ │ │ │ ├── subversion.py
│ │ │ │ │ │ └── versioncontrol.py
│ │ │ │ │ └── wheel_builder.py
│ │ │ │ ├── _vendor
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── appdirs.cpython-38.pyc
│ │ │ │ │ │ ├── pyparsing.cpython-38.pyc
│ │ │ │ │ │ └── six.cpython-38.pyc
│ │ │ │ │ ├── appdirs.py
│ │ │ │ │ ├── cachecontrol
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── adapter.cpython-38.pyc
│ │ │ │ │ │ │ ├── cache.cpython-38.pyc
│ │ │ │ │ │ │ ├── compat.cpython-38.pyc
│ │ │ │ │ │ │ ├── controller.cpython-38.pyc
│ │ │ │ │ │ │ ├── filewrapper.cpython-38.pyc
│ │ │ │ │ │ │ ├── serialize.cpython-38.pyc
│ │ │ │ │ │ │ └── wrapper.cpython-38.pyc
│ │ │ │ │ │ ├── _cmd.py
│ │ │ │ │ │ ├── adapter.py
│ │ │ │ │ │ ├── cache.py
│ │ │ │ │ │ ├── caches
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── file_cache.cpython-38.pyc
│ │ │ │ │ │ │ │ └── redis_cache.cpython-38.pyc
│ │ │ │ │ │ │ ├── file_cache.py
│ │ │ │ │ │ │ └── redis_cache.py
│ │ │ │ │ │ ├── compat.py
│ │ │ │ │ │ ├── controller.py
│ │ │ │ │ │ ├── filewrapper.py
│ │ │ │ │ │ ├── heuristics.py
│ │ │ │ │ │ ├── serialize.py
│ │ │ │ │ │ └── wrapper.py
│ │ │ │ │ ├── certifi
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __main__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ └── core.cpython-38.pyc
│ │ │ │ │ │ ├── cacert.pem
│ │ │ │ │ │ └── core.py
│ │ │ │ │ ├── chardet
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── big5freq.cpython-38.pyc
│ │ │ │ │ │ │ ├── big5prober.cpython-38.pyc
│ │ │ │ │ │ │ ├── chardistribution.cpython-38.pyc
│ │ │ │ │ │ │ ├── charsetgroupprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── charsetprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── codingstatemachine.cpython-38.pyc
│ │ │ │ │ │ │ ├── cp949prober.cpython-38.pyc
│ │ │ │ │ │ │ ├── enums.cpython-38.pyc
│ │ │ │ │ │ │ ├── escprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── escsm.cpython-38.pyc
│ │ │ │ │ │ │ ├── eucjpprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── euckrfreq.cpython-38.pyc
│ │ │ │ │ │ │ ├── euckrprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── euctwfreq.cpython-38.pyc
│ │ │ │ │ │ │ ├── euctwprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── gb2312freq.cpython-38.pyc
│ │ │ │ │ │ │ ├── gb2312prober.cpython-38.pyc
│ │ │ │ │ │ │ ├── hebrewprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── jisfreq.cpython-38.pyc
│ │ │ │ │ │ │ ├── jpcntx.cpython-38.pyc
│ │ │ │ │ │ │ ├── langbulgarianmodel.cpython-38.pyc
│ │ │ │ │ │ │ ├── langgreekmodel.cpython-38.pyc
│ │ │ │ │ │ │ ├── langhebrewmodel.cpython-38.pyc
│ │ │ │ │ │ │ ├── langrussianmodel.cpython-38.pyc
│ │ │ │ │ │ │ ├── langthaimodel.cpython-38.pyc
│ │ │ │ │ │ │ ├── langturkishmodel.cpython-38.pyc
│ │ │ │ │ │ │ ├── latin1prober.cpython-38.pyc
│ │ │ │ │ │ │ ├── mbcharsetprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── mbcsgroupprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── mbcssm.cpython-38.pyc
│ │ │ │ │ │ │ ├── sbcharsetprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── sbcsgroupprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── sjisprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── universaldetector.cpython-38.pyc
│ │ │ │ │ │ │ ├── utf8prober.cpython-38.pyc
│ │ │ │ │ │ │ └── version.cpython-38.pyc
│ │ │ │ │ │ ├── big5freq.py
│ │ │ │ │ │ ├── big5prober.py
│ │ │ │ │ │ ├── chardistribution.py
│ │ │ │ │ │ ├── charsetgroupprober.py
│ │ │ │ │ │ ├── charsetprober.py
│ │ │ │ │ │ ├── cli
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ └── chardetect.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
│ │ │ │ │ │ ├── jisfreq.py
│ │ │ │ │ │ ├── jpcntx.py
│ │ │ │ │ │ ├── langbulgarianmodel.py
│ │ │ │ │ │ ├── langgreekmodel.py
│ │ │ │ │ │ ├── langhebrewmodel.py
│ │ │ │ │ │ ├── langhungarianmodel.py
│ │ │ │ │ │ ├── langrussianmodel.py
│ │ │ │ │ │ ├── langthaimodel.py
│ │ │ │ │ │ ├── langturkishmodel.py
│ │ │ │ │ │ ├── latin1prober.py
│ │ │ │ │ │ ├── mbcharsetprober.py
│ │ │ │ │ │ ├── mbcsgroupprober.py
│ │ │ │ │ │ ├── mbcssm.py
│ │ │ │ │ │ ├── metadata
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ └── languages.py
│ │ │ │ │ │ ├── sbcharsetprober.py
│ │ │ │ │ │ ├── sbcsgroupprober.py
│ │ │ │ │ │ ├── sjisprober.py
│ │ │ │ │ │ ├── universaldetector.py
│ │ │ │ │ │ ├── utf8prober.py
│ │ │ │ │ │ └── version.py
│ │ │ │ │ ├── colorama
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── ansi.cpython-38.pyc
│ │ │ │ │ │ │ ├── ansitowin32.cpython-38.pyc
│ │ │ │ │ │ │ ├── initialise.cpython-38.pyc
│ │ │ │ │ │ │ ├── win32.cpython-38.pyc
│ │ │ │ │ │ │ └── winterm.cpython-38.pyc
│ │ │ │ │ │ ├── ansi.py
│ │ │ │ │ │ ├── ansitowin32.py
│ │ │ │ │ │ ├── initialise.py
│ │ │ │ │ │ ├── win32.py
│ │ │ │ │ │ └── winterm.py
│ │ │ │ │ ├── distlib
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── compat.cpython-38.pyc
│ │ │ │ │ │ │ ├── resources.cpython-38.pyc
│ │ │ │ │ │ │ ├── scripts.cpython-38.pyc
│ │ │ │ │ │ │ └── util.cpython-38.pyc
│ │ │ │ │ │ ├── _backport
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── misc.py
│ │ │ │ │ │ │ ├── shutil.py
│ │ │ │ │ │ │ ├── sysconfig.cfg
│ │ │ │ │ │ │ ├── sysconfig.py
│ │ │ │ │ │ │ └── tarfile.py
│ │ │ │ │ │ ├── compat.py
│ │ │ │ │ │ ├── database.py
│ │ │ │ │ │ ├── index.py
│ │ │ │ │ │ ├── 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.py
│ │ │ │ │ ├── html5lib
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── _inputstream.cpython-38.pyc
│ │ │ │ │ │ │ ├── _tokenizer.cpython-38.pyc
│ │ │ │ │ │ │ ├── _utils.cpython-38.pyc
│ │ │ │ │ │ │ ├── constants.cpython-38.pyc
│ │ │ │ │ │ │ ├── html5parser.cpython-38.pyc
│ │ │ │ │ │ │ └── serializer.cpython-38.pyc
│ │ │ │ │ │ ├── _ihatexml.py
│ │ │ │ │ │ ├── _inputstream.py
│ │ │ │ │ │ ├── _tokenizer.py
│ │ │ │ │ │ ├── _trie
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── _base.cpython-38.pyc
│ │ │ │ │ │ │ │ └── py.cpython-38.pyc
│ │ │ │ │ │ │ ├── _base.py
│ │ │ │ │ │ │ └── py.py
│ │ │ │ │ │ ├── _utils.py
│ │ │ │ │ │ ├── constants.py
│ │ │ │ │ │ ├── filters
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── alphabeticalattributes.py
│ │ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ │ ├── inject_meta_charset.py
│ │ │ │ │ │ │ ├── lint.py
│ │ │ │ │ │ │ ├── optionaltags.py
│ │ │ │ │ │ │ ├── sanitizer.py
│ │ │ │ │ │ │ └── whitespace.py
│ │ │ │ │ │ ├── html5parser.py
│ │ │ │ │ │ ├── serializer.py
│ │ │ │ │ │ ├── treeadapters
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── genshi.py
│ │ │ │ │ │ │ └── sax.py
│ │ │ │ │ │ ├── treebuilders
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ └── base.cpython-38.pyc
│ │ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ │ ├── dom.py
│ │ │ │ │ │ │ ├── etree.py
│ │ │ │ │ │ │ └── etree_lxml.py
│ │ │ │ │ │ └── treewalkers
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── dom.py
│ │ │ │ │ │ ├── etree.py
│ │ │ │ │ │ ├── etree_lxml.py
│ │ │ │ │ │ └── genshi.py
│ │ │ │ │ ├── idna
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── core.cpython-38.pyc
│ │ │ │ │ │ │ ├── idnadata.cpython-38.pyc
│ │ │ │ │ │ │ ├── intranges.cpython-38.pyc
│ │ │ │ │ │ │ └── package_data.cpython-38.pyc
│ │ │ │ │ │ ├── codec.py
│ │ │ │ │ │ ├── compat.py
│ │ │ │ │ │ ├── core.py
│ │ │ │ │ │ ├── idnadata.py
│ │ │ │ │ │ ├── intranges.py
│ │ │ │ │ │ ├── package_data.py
│ │ │ │ │ │ └── uts46data.py
│ │ │ │ │ ├── msgpack
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── _version.cpython-38.pyc
│ │ │ │ │ │ │ ├── exceptions.cpython-38.pyc
│ │ │ │ │ │ │ ├── ext.cpython-38.pyc
│ │ │ │ │ │ │ └── fallback.cpython-38.pyc
│ │ │ │ │ │ ├── _version.py
│ │ │ │ │ │ ├── exceptions.py
│ │ │ │ │ │ ├── ext.py
│ │ │ │ │ │ └── fallback.py
│ │ │ │ │ ├── packaging
│ │ │ │ │ │ ├── __about__.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __about__.cpython-38.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── _compat.cpython-38.pyc
│ │ │ │ │ │ │ ├── _structures.cpython-38.pyc
│ │ │ │ │ │ │ ├── _typing.cpython-38.pyc
│ │ │ │ │ │ │ ├── markers.cpython-38.pyc
│ │ │ │ │ │ │ ├── requirements.cpython-38.pyc
│ │ │ │ │ │ │ ├── specifiers.cpython-38.pyc
│ │ │ │ │ │ │ ├── tags.cpython-38.pyc
│ │ │ │ │ │ │ ├── utils.cpython-38.pyc
│ │ │ │ │ │ │ └── version.cpython-38.pyc
│ │ │ │ │ │ ├── _compat.py
│ │ │ │ │ │ ├── _structures.py
│ │ │ │ │ │ ├── _typing.py
│ │ │ │ │ │ ├── markers.py
│ │ │ │ │ │ ├── requirements.py
│ │ │ │ │ │ ├── specifiers.py
│ │ │ │ │ │ ├── tags.py
│ │ │ │ │ │ ├── utils.py
│ │ │ │ │ │ └── version.py
│ │ │ │ │ ├── pep517
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── compat.cpython-38.pyc
│ │ │ │ │ │ │ └── wrappers.cpython-38.pyc
│ │ │ │ │ │ ├── build.py
│ │ │ │ │ │ ├── check.py
│ │ │ │ │ │ ├── colorlog.py
│ │ │ │ │ │ ├── compat.py
│ │ │ │ │ │ ├── dirtools.py
│ │ │ │ │ │ ├── envbuild.py
│ │ │ │ │ │ ├── in_process
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ │ │ │ └── _in_process.py
│ │ │ │ │ │ ├── meta.py
│ │ │ │ │ │ └── wrappers.py
│ │ │ │ │ ├── pkg_resources
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ └── py31compat.cpython-38.pyc
│ │ │ │ │ │ └── py31compat.py
│ │ │ │ │ ├── progress
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── bar.cpython-38.pyc
│ │ │ │ │ │ │ └── spinner.cpython-38.pyc
│ │ │ │ │ │ ├── bar.py
│ │ │ │ │ │ ├── counter.py
│ │ │ │ │ │ └── spinner.py
│ │ │ │ │ ├── pyparsing.py
│ │ │ │ │ ├── requests
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── __version__.cpython-38.pyc
│ │ │ │ │ │ │ ├── _internal_utils.cpython-38.pyc
│ │ │ │ │ │ │ ├── adapters.cpython-38.pyc
│ │ │ │ │ │ │ ├── api.cpython-38.pyc
│ │ │ │ │ │ │ ├── auth.cpython-38.pyc
│ │ │ │ │ │ │ ├── certs.cpython-38.pyc
│ │ │ │ │ │ │ ├── compat.cpython-38.pyc
│ │ │ │ │ │ │ ├── cookies.cpython-38.pyc
│ │ │ │ │ │ │ ├── exceptions.cpython-38.pyc
│ │ │ │ │ │ │ ├── hooks.cpython-38.pyc
│ │ │ │ │ │ │ ├── models.cpython-38.pyc
│ │ │ │ │ │ │ ├── packages.cpython-38.pyc
│ │ │ │ │ │ │ ├── sessions.cpython-38.pyc
│ │ │ │ │ │ │ ├── status_codes.cpython-38.pyc
│ │ │ │ │ │ │ ├── structures.cpython-38.pyc
│ │ │ │ │ │ │ └── utils.cpython-38.pyc
│ │ │ │ │ │ ├── __version__.py
│ │ │ │ │ │ ├── _internal_utils.py
│ │ │ │ │ │ ├── adapters.py
│ │ │ │ │ │ ├── api.py
│ │ │ │ │ │ ├── auth.py
│ │ │ │ │ │ ├── certs.py
│ │ │ │ │ │ ├── compat.py
│ │ │ │ │ │ ├── cookies.py
│ │ │ │ │ │ ├── exceptions.py
│ │ │ │ │ │ ├── help.py
│ │ │ │ │ │ ├── hooks.py
│ │ │ │ │ │ ├── models.py
│ │ │ │ │ │ ├── packages.py
│ │ │ │ │ │ ├── sessions.py
│ │ │ │ │ │ ├── status_codes.py
│ │ │ │ │ │ ├── structures.py
│ │ │ │ │ │ └── utils.py
│ │ │ │ │ ├── resolvelib
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── providers.cpython-38.pyc
│ │ │ │ │ │ │ ├── reporters.cpython-38.pyc
│ │ │ │ │ │ │ ├── resolvers.cpython-38.pyc
│ │ │ │ │ │ │ └── structs.cpython-38.pyc
│ │ │ │ │ │ ├── compat
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ └── collections_abc.cpython-38.pyc
│ │ │ │ │ │ │ └── collections_abc.py
│ │ │ │ │ │ ├── providers.py
│ │ │ │ │ │ ├── reporters.py
│ │ │ │ │ │ ├── resolvers.py
│ │ │ │ │ │ └── structs.py
│ │ │ │ │ ├── six.py
│ │ │ │ │ ├── tenacity
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── _asyncio.cpython-38.pyc
│ │ │ │ │ │ │ ├── _utils.cpython-38.pyc
│ │ │ │ │ │ │ ├── after.cpython-38.pyc
│ │ │ │ │ │ │ ├── before.cpython-38.pyc
│ │ │ │ │ │ │ ├── before_sleep.cpython-38.pyc
│ │ │ │ │ │ │ ├── compat.cpython-38.pyc
│ │ │ │ │ │ │ ├── nap.cpython-38.pyc
│ │ │ │ │ │ │ ├── retry.cpython-38.pyc
│ │ │ │ │ │ │ ├── stop.cpython-38.pyc
│ │ │ │ │ │ │ └── wait.cpython-38.pyc
│ │ │ │ │ │ ├── _asyncio.py
│ │ │ │ │ │ ├── _utils.py
│ │ │ │ │ │ ├── after.py
│ │ │ │ │ │ ├── before.py
│ │ │ │ │ │ ├── before_sleep.py
│ │ │ │ │ │ ├── compat.py
│ │ │ │ │ │ ├── nap.py
│ │ │ │ │ │ ├── retry.py
│ │ │ │ │ │ ├── stop.py
│ │ │ │ │ │ ├── tornadoweb.py
│ │ │ │ │ │ └── wait.py
│ │ │ │ │ ├── toml
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── decoder.cpython-38.pyc
│ │ │ │ │ │ │ ├── encoder.cpython-38.pyc
│ │ │ │ │ │ │ └── tz.cpython-38.pyc
│ │ │ │ │ │ ├── decoder.py
│ │ │ │ │ │ ├── encoder.py
│ │ │ │ │ │ ├── ordered.py
│ │ │ │ │ │ └── tz.py
│ │ │ │ │ ├── urllib3
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── _collections.cpython-38.pyc
│ │ │ │ │ │ │ ├── _version.cpython-38.pyc
│ │ │ │ │ │ │ ├── connection.cpython-38.pyc
│ │ │ │ │ │ │ ├── connectionpool.cpython-38.pyc
│ │ │ │ │ │ │ ├── exceptions.cpython-38.pyc
│ │ │ │ │ │ │ ├── fields.cpython-38.pyc
│ │ │ │ │ │ │ ├── filepost.cpython-38.pyc
│ │ │ │ │ │ │ ├── poolmanager.cpython-38.pyc
│ │ │ │ │ │ │ ├── request.cpython-38.pyc
│ │ │ │ │ │ │ └── response.cpython-38.pyc
│ │ │ │ │ │ ├── _collections.py
│ │ │ │ │ │ ├── _version.py
│ │ │ │ │ │ ├── connection.py
│ │ │ │ │ │ ├── connectionpool.py
│ │ │ │ │ │ ├── contrib
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── _appengine_environ.cpython-38.pyc
│ │ │ │ │ │ │ │ └── socks.cpython-38.pyc
│ │ │ │ │ │ │ ├── _appengine_environ.py
│ │ │ │ │ │ │ ├── _securetransport
│ │ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ │ ├── bindings.py
│ │ │ │ │ │ │ │ └── low_level.py
│ │ │ │ │ │ │ ├── appengine.py
│ │ │ │ │ │ │ ├── ntlmpool.py
│ │ │ │ │ │ │ ├── pyopenssl.py
│ │ │ │ │ │ │ ├── securetransport.py
│ │ │ │ │ │ │ └── socks.py
│ │ │ │ │ │ ├── exceptions.py
│ │ │ │ │ │ ├── fields.py
│ │ │ │ │ │ ├── filepost.py
│ │ │ │ │ │ ├── packages
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ └── six.cpython-38.pyc
│ │ │ │ │ │ │ ├── backports
│ │ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ │ └── makefile.py
│ │ │ │ │ │ │ ├── six.py
│ │ │ │ │ │ │ └── ssl_match_hostname
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ │ │ │ └── _implementation.py
│ │ │ │ │ │ ├── poolmanager.py
│ │ │ │ │ │ ├── request.py
│ │ │ │ │ │ ├── response.py
│ │ │ │ │ │ └── util
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── connection.cpython-38.pyc
│ │ │ │ │ │ │ ├── proxy.cpython-38.pyc
│ │ │ │ │ │ │ ├── queue.cpython-38.pyc
│ │ │ │ │ │ │ ├── request.cpython-38.pyc
│ │ │ │ │ │ │ ├── response.cpython-38.pyc
│ │ │ │ │ │ │ ├── retry.cpython-38.pyc
│ │ │ │ │ │ │ ├── ssl_.cpython-38.pyc
│ │ │ │ │ │ │ ├── ssltransport.cpython-38.pyc
│ │ │ │ │ │ │ ├── timeout.cpython-38.pyc
│ │ │ │ │ │ │ ├── url.cpython-38.pyc
│ │ │ │ │ │ │ └── wait.cpython-38.pyc
│ │ │ │ │ │ ├── connection.py
│ │ │ │ │ │ ├── proxy.py
│ │ │ │ │ │ ├── queue.py
│ │ │ │ │ │ ├── request.py
│ │ │ │ │ │ ├── response.py
│ │ │ │ │ │ ├── retry.py
│ │ │ │ │ │ ├── ssl_.py
│ │ │ │ │ │ ├── ssltransport.py
│ │ │ │ │ │ ├── timeout.py
│ │ │ │ │ │ ├── url.py
│ │ │ │ │ │ └── wait.py
│ │ │ │ │ ├── vendor.txt
│ │ │ │ │ └── webencodings
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ └── labels.cpython-38.pyc
│ │ │ │ │ ├── labels.py
│ │ │ │ │ ├── mklabels.py
│ │ │ │ │ ├── tests.py
│ │ │ │ │ └── x_user_defined.py
│ │ │ │ └── py.typed
│ │ │ ├── pip-21.1.2.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ ├── entry_points.txt
│ │ │ │ └── top_level.txt
│ │ │ ├── pip-21.1.2.virtualenv
│ │ │ ├── pkg_resources
│ │ │ │ ├── __init__.py
│ │ │ │ ├── _vendor
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── appdirs.py
│ │ │ │ │ ├── packaging
│ │ │ │ │ │ ├── __about__.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── _compat.py
│ │ │ │ │ │ ├── _structures.py
│ │ │ │ │ │ ├── _typing.py
│ │ │ │ │ │ ├── markers.py
│ │ │ │ │ │ ├── requirements.py
│ │ │ │ │ │ ├── specifiers.py
│ │ │ │ │ │ ├── tags.py
│ │ │ │ │ │ ├── utils.py
│ │ │ │ │ │ └── version.py
│ │ │ │ │ └── pyparsing.py
│ │ │ │ ├── extern
│ │ │ │ │ └── __init__.py
│ │ │ │ └── tests
│ │ │ │ └── data
│ │ │ │ └── my-test-package-source
│ │ │ │ └── setup.py
│ │ │ ├── pyautocad
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ ├── api.cpython-38.pyc
│ │ │ │ │ ├── cache.cpython-38.pyc
│ │ │ │ │ ├── compat.cpython-38.pyc
│ │ │ │ │ ├── types.cpython-38.pyc
│ │ │ │ │ └── utils.cpython-38.pyc
│ │ │ │ ├── api.py
│ │ │ │ ├── cache.py
│ │ │ │ ├── compat.py
│ │ │ │ ├── contrib
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ └── tables.cpython-38.pyc
│ │ │ │ │ └── tables.py
│ │ │ │ ├── types.py
│ │ │ │ └── utils.py
│ │ │ ├── pyautocad-0.2.0.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── REQUESTED
│ │ │ │ ├── WHEEL
│ │ │ │ └── top_level.txt
│ │ │ ├── pythoncom.py
│ │ │ ├── pythonwin
│ │ │ │ ├── Pythonwin.exe
│ │ │ │ ├── dde.pyd
│ │ │ │ ├── license.txt
│ │ │ │ ├── mfc140u.dll
│ │ │ │ ├── mfcm140u.dll
│ │ │ │ ├── pywin
│ │ │ │ │ ├── Demos
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── cmdserver.cpython-38.pyc
│ │ │ │ │ │ │ ├── createwin.cpython-38.pyc
│ │ │ │ │ │ │ ├── demoutils.cpython-38.pyc
│ │ │ │ │ │ │ ├── dibdemo.cpython-38.pyc
│ │ │ │ │ │ │ ├── dlgtest.cpython-38.pyc
│ │ │ │ │ │ │ ├── dyndlg.cpython-38.pyc
│ │ │ │ │ │ │ ├── fontdemo.cpython-38.pyc
│ │ │ │ │ │ │ ├── guidemo.cpython-38.pyc
│ │ │ │ │ │ │ ├── hiertest.cpython-38.pyc
│ │ │ │ │ │ │ ├── menutest.cpython-38.pyc
│ │ │ │ │ │ │ ├── objdoc.cpython-38.pyc
│ │ │ │ │ │ │ ├── openGLDemo.cpython-38.pyc
│ │ │ │ │ │ │ ├── progressbar.cpython-38.pyc
│ │ │ │ │ │ │ ├── sliderdemo.cpython-38.pyc
│ │ │ │ │ │ │ ├── splittst.cpython-38.pyc
│ │ │ │ │ │ │ ├── threadedgui.cpython-38.pyc
│ │ │ │ │ │ │ └── toolbar.cpython-38.pyc
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── basictimerapp.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── customprint.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── demoutils.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── dlgappdemo.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── dojobapp.cpython-38.pyc
│ │ │ │ │ │ │ │ └── helloapp.cpython-38.pyc
│ │ │ │ │ │ │ ├── basictimerapp.py
│ │ │ │ │ │ │ ├── customprint.py
│ │ │ │ │ │ │ ├── demoutils.py
│ │ │ │ │ │ │ ├── dlgappdemo.py
│ │ │ │ │ │ │ ├── dojobapp.py
│ │ │ │ │ │ │ └── helloapp.py
│ │ │ │ │ │ ├── cmdserver.py
│ │ │ │ │ │ ├── createwin.py
│ │ │ │ │ │ ├── demoutils.py
│ │ │ │ │ │ ├── dibdemo.py
│ │ │ │ │ │ ├── dlgtest.py
│ │ │ │ │ │ ├── dyndlg.py
│ │ │ │ │ │ ├── fontdemo.py
│ │ │ │ │ │ ├── guidemo.py
│ │ │ │ │ │ ├── hiertest.py
│ │ │ │ │ │ ├── menutest.py
│ │ │ │ │ │ ├── objdoc.py
│ │ │ │ │ │ ├── ocx
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── demoutils.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── flash.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── msoffice.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── ocxserialtest.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── ocxtest.cpython-38.pyc
│ │ │ │ │ │ │ │ └── webbrowser.cpython-38.pyc
│ │ │ │ │ │ │ ├── demoutils.py
│ │ │ │ │ │ │ ├── flash.py
│ │ │ │ │ │ │ ├── msoffice.py
│ │ │ │ │ │ │ ├── ocxserialtest.py
│ │ │ │ │ │ │ ├── ocxtest.py
│ │ │ │ │ │ │ └── webbrowser.py
│ │ │ │ │ │ ├── openGLDemo.py
│ │ │ │ │ │ ├── progressbar.py
│ │ │ │ │ │ ├── sliderdemo.py
│ │ │ │ │ │ ├── splittst.py
│ │ │ │ │ │ ├── threadedgui.py
│ │ │ │ │ │ └── toolbar.py
│ │ │ │ │ ├── IDLE.cfg
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ │ ├── debugger
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── configui.cpython-38.pyc
│ │ │ │ │ │ │ ├── dbgcon.cpython-38.pyc
│ │ │ │ │ │ │ ├── dbgpyapp.cpython-38.pyc
│ │ │ │ │ │ │ ├── debugger.cpython-38.pyc
│ │ │ │ │ │ │ └── fail.cpython-38.pyc
│ │ │ │ │ │ ├── configui.py
│ │ │ │ │ │ ├── dbgcon.py
│ │ │ │ │ │ ├── dbgpyapp.py
│ │ │ │ │ │ ├── debugger.py
│ │ │ │ │ │ └── fail.py
│ │ │ │ │ ├── default.cfg
│ │ │ │ │ ├── dialogs
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── ideoptions.cpython-38.pyc
│ │ │ │ │ │ │ ├── list.cpython-38.pyc
│ │ │ │ │ │ │ ├── login.cpython-38.pyc
│ │ │ │ │ │ │ └── status.cpython-38.pyc
│ │ │ │ │ │ ├── ideoptions.py
│ │ │ │ │ │ ├── list.py
│ │ │ │ │ │ ├── login.py
│ │ │ │ │ │ └── status.py
│ │ │ │ │ ├── docking
│ │ │ │ │ │ ├── DockingBar.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ └── __pycache__
│ │ │ │ │ │ ├── DockingBar.cpython-38.pyc
│ │ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ │ ├── framework
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── app.cpython-38.pyc
│ │ │ │ │ │ │ ├── bitmap.cpython-38.pyc
│ │ │ │ │ │ │ ├── cmdline.cpython-38.pyc
│ │ │ │ │ │ │ ├── dbgcommands.cpython-38.pyc
│ │ │ │ │ │ │ ├── dlgappcore.cpython-38.pyc
│ │ │ │ │ │ │ ├── help.cpython-38.pyc
│ │ │ │ │ │ │ ├── interact.cpython-38.pyc
│ │ │ │ │ │ │ ├── intpyapp.cpython-38.pyc
│ │ │ │ │ │ │ ├── intpydde.cpython-38.pyc
│ │ │ │ │ │ │ ├── mdi_pychecker.cpython-38.pyc
│ │ │ │ │ │ │ ├── scriptutils.cpython-38.pyc
│ │ │ │ │ │ │ ├── sgrepmdi.cpython-38.pyc
│ │ │ │ │ │ │ ├── startup.cpython-38.pyc
│ │ │ │ │ │ │ ├── stdin.cpython-38.pyc
│ │ │ │ │ │ │ ├── toolmenu.cpython-38.pyc
│ │ │ │ │ │ │ ├── window.cpython-38.pyc
│ │ │ │ │ │ │ └── winout.cpython-38.pyc
│ │ │ │ │ │ ├── app.py
│ │ │ │ │ │ ├── bitmap.py
│ │ │ │ │ │ ├── cmdline.py
│ │ │ │ │ │ ├── dbgcommands.py
│ │ │ │ │ │ ├── dlgappcore.py
│ │ │ │ │ │ ├── editor
│ │ │ │ │ │ │ ├── ModuleBrowser.py
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── ModuleBrowser.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── configui.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── document.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── editor.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── frame.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── template.cpython-38.pyc
│ │ │ │ │ │ │ │ └── vss.cpython-38.pyc
│ │ │ │ │ │ │ ├── color
│ │ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ │ └── coloreditor.cpython-38.pyc
│ │ │ │ │ │ │ │ └── coloreditor.py
│ │ │ │ │ │ │ ├── configui.py
│ │ │ │ │ │ │ ├── document.py
│ │ │ │ │ │ │ ├── editor.py
│ │ │ │ │ │ │ ├── frame.py
│ │ │ │ │ │ │ ├── template.py
│ │ │ │ │ │ │ └── vss.py
│ │ │ │ │ │ ├── help.py
│ │ │ │ │ │ ├── interact.py
│ │ │ │ │ │ ├── intpyapp.py
│ │ │ │ │ │ ├── intpydde.py
│ │ │ │ │ │ ├── mdi_pychecker.py
│ │ │ │ │ │ ├── scriptutils.py
│ │ │ │ │ │ ├── sgrepmdi.py
│ │ │ │ │ │ ├── startup.py
│ │ │ │ │ │ ├── stdin.py
│ │ │ │ │ │ ├── toolmenu.py
│ │ │ │ │ │ ├── window.py
│ │ │ │ │ │ └── winout.py
│ │ │ │ │ ├── idle
│ │ │ │ │ │ ├── AutoExpand.py
│ │ │ │ │ │ ├── AutoIndent.py
│ │ │ │ │ │ ├── CallTips.py
│ │ │ │ │ │ ├── FormatParagraph.py
│ │ │ │ │ │ ├── IdleHistory.py
│ │ │ │ │ │ ├── PyParse.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ └── __pycache__
│ │ │ │ │ │ ├── AutoExpand.cpython-38.pyc
│ │ │ │ │ │ ├── AutoIndent.cpython-38.pyc
│ │ │ │ │ │ ├── CallTips.cpython-38.pyc
│ │ │ │ │ │ ├── FormatParagraph.cpython-38.pyc
│ │ │ │ │ │ ├── IdleHistory.cpython-38.pyc
│ │ │ │ │ │ ├── PyParse.cpython-38.pyc
│ │ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ │ ├── mfc
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── activex.cpython-38.pyc
│ │ │ │ │ │ │ ├── afxres.cpython-38.pyc
│ │ │ │ │ │ │ ├── dialog.cpython-38.pyc
│ │ │ │ │ │ │ ├── docview.cpython-38.pyc
│ │ │ │ │ │ │ ├── object.cpython-38.pyc
│ │ │ │ │ │ │ ├── thread.cpython-38.pyc
│ │ │ │ │ │ │ └── window.cpython-38.pyc
│ │ │ │ │ │ ├── activex.py
│ │ │ │ │ │ ├── afxres.py
│ │ │ │ │ │ ├── dialog.py
│ │ │ │ │ │ ├── docview.py
│ │ │ │ │ │ ├── object.py
│ │ │ │ │ │ ├── thread.py
│ │ │ │ │ │ └── window.py
│ │ │ │ │ ├── scintilla
│ │ │ │ │ │ ├── IDLEenvironment.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── IDLEenvironment.cpython-38.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── bindings.cpython-38.pyc
│ │ │ │ │ │ │ ├── config.cpython-38.pyc
│ │ │ │ │ │ │ ├── configui.cpython-38.pyc
│ │ │ │ │ │ │ ├── control.cpython-38.pyc
│ │ │ │ │ │ │ ├── document.cpython-38.pyc
│ │ │ │ │ │ │ ├── find.cpython-38.pyc
│ │ │ │ │ │ │ ├── formatter.cpython-38.pyc
│ │ │ │ │ │ │ ├── keycodes.cpython-38.pyc
│ │ │ │ │ │ │ ├── scintillacon.cpython-38.pyc
│ │ │ │ │ │ │ └── view.cpython-38.pyc
│ │ │ │ │ │ ├── bindings.py
│ │ │ │ │ │ ├── config.py
│ │ │ │ │ │ ├── configui.py
│ │ │ │ │ │ ├── control.py
│ │ │ │ │ │ ├── document.py
│ │ │ │ │ │ ├── find.py
│ │ │ │ │ │ ├── formatter.py
│ │ │ │ │ │ ├── keycodes.py
│ │ │ │ │ │ ├── scintillacon.py
│ │ │ │ │ │ └── view.py
│ │ │ │ │ └── tools
│ │ │ │ │ ├── TraceCollector.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── TraceCollector.cpython-38.pyc
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── browseProjects.cpython-38.pyc
│ │ │ │ │ │ ├── browser.cpython-38.pyc
│ │ │ │ │ │ ├── hierlist.cpython-38.pyc
│ │ │ │ │ │ ├── regedit.cpython-38.pyc
│ │ │ │ │ │ └── regpy.cpython-38.pyc
│ │ │ │ │ ├── browseProjects.py
│ │ │ │ │ ├── browser.py
│ │ │ │ │ ├── hierlist.py
│ │ │ │ │ ├── regedit.py
│ │ │ │ │ └── regpy.py
│ │ │ │ ├── scintilla.dll
│ │ │ │ ├── win32ui.pyd
│ │ │ │ └── win32uiole.pyd
│ │ │ ├── pywin32-303.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── REQUESTED
│ │ │ │ ├── WHEEL
│ │ │ │ └── top_level.txt
│ │ │ ├── pywin32.pth
│ │ │ ├── pywin32.version.txt
│ │ │ ├── pywin32_system32
│ │ │ │ ├── pythoncom38.dll
│ │ │ │ └── pywintypes38.dll
│ │ │ ├── setuptools
│ │ │ │ ├── __init__.py
│ │ │ │ ├── _deprecation_warning.py
│ │ │ │ ├── _distutils
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── _msvccompiler.py
│ │ │ │ │ ├── archive_util.py
│ │ │ │ │ ├── bcppcompiler.py
│ │ │ │ │ ├── ccompiler.py
│ │ │ │ │ ├── cmd.py
│ │ │ │ │ ├── command
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── bdist.py
│ │ │ │ │ │ ├── bdist_dumb.py
│ │ │ │ │ │ ├── bdist_msi.py
│ │ │ │ │ │ ├── bdist_rpm.py
│ │ │ │ │ │ ├── bdist_wininst.py
│ │ │ │ │ │ ├── build.py
│ │ │ │ │ │ ├── build_clib.py
│ │ │ │ │ │ ├── build_ext.py
│ │ │ │ │ │ ├── build_py.py
│ │ │ │ │ │ ├── build_scripts.py
│ │ │ │ │ │ ├── check.py
│ │ │ │ │ │ ├── clean.py
│ │ │ │ │ │ ├── config.py
│ │ │ │ │ │ ├── install.py
│ │ │ │ │ │ ├── install_data.py
│ │ │ │ │ │ ├── install_egg_info.py
│ │ │ │ │ │ ├── install_headers.py
│ │ │ │ │ │ ├── install_lib.py
│ │ │ │ │ │ ├── install_scripts.py
│ │ │ │ │ │ ├── py37compat.py
│ │ │ │ │ │ ├── register.py
│ │ │ │ │ │ ├── sdist.py
│ │ │ │ │ │ └── upload.py
│ │ │ │ │ ├── config.py
│ │ │ │ │ ├── core.py
│ │ │ │ │ ├── cygwinccompiler.py
│ │ │ │ │ ├── debug.py
│ │ │ │ │ ├── dep_util.py
│ │ │ │ │ ├── dir_util.py
│ │ │ │ │ ├── dist.py
│ │ │ │ │ ├── errors.py
│ │ │ │ │ ├── extension.py
│ │ │ │ │ ├── fancy_getopt.py
│ │ │ │ │ ├── file_util.py
│ │ │ │ │ ├── filelist.py
│ │ │ │ │ ├── log.py
│ │ │ │ │ ├── msvc9compiler.py
│ │ │ │ │ ├── msvccompiler.py
│ │ │ │ │ ├── py35compat.py
│ │ │ │ │ ├── py38compat.py
│ │ │ │ │ ├── spawn.py
│ │ │ │ │ ├── sysconfig.py
│ │ │ │ │ ├── text_file.py
│ │ │ │ │ ├── unixccompiler.py
│ │ │ │ │ ├── util.py
│ │ │ │ │ ├── version.py
│ │ │ │ │ └── versionpredicate.py
│ │ │ │ ├── _imp.py
│ │ │ │ ├── _vendor
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── more_itertools
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── more.py
│ │ │ │ │ │ └── recipes.py
│ │ │ │ │ ├── ordered_set.py
│ │ │ │ │ ├── packaging
│ │ │ │ │ │ ├── __about__.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── _compat.py
│ │ │ │ │ │ ├── _structures.py
│ │ │ │ │ │ ├── _typing.py
│ │ │ │ │ │ ├── markers.py
│ │ │ │ │ │ ├── requirements.py
│ │ │ │ │ │ ├── specifiers.py
│ │ │ │ │ │ ├── tags.py
│ │ │ │ │ │ ├── utils.py
│ │ │ │ │ │ └── version.py
│ │ │ │ │ └── pyparsing.py
│ │ │ │ ├── archive_util.py
│ │ │ │ ├── build_meta.py
│ │ │ │ ├── cli-32.exe
│ │ │ │ ├── cli-64.exe
│ │ │ │ ├── cli.exe
│ │ │ │ ├── command
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── alias.py
│ │ │ │ │ ├── bdist_egg.py
│ │ │ │ │ ├── bdist_rpm.py
│ │ │ │ │ ├── build_clib.py
│ │ │ │ │ ├── build_ext.py
│ │ │ │ │ ├── build_py.py
│ │ │ │ │ ├── develop.py
│ │ │ │ │ ├── dist_info.py
│ │ │ │ │ ├── easy_install.py
│ │ │ │ │ ├── egg_info.py
│ │ │ │ │ ├── install.py
│ │ │ │ │ ├── install_egg_info.py
│ │ │ │ │ ├── install_lib.py
│ │ │ │ │ ├── install_scripts.py
│ │ │ │ │ ├── launcher manifest.xml
│ │ │ │ │ ├── py36compat.py
│ │ │ │ │ ├── register.py
│ │ │ │ │ ├── rotate.py
│ │ │ │ │ ├── saveopts.py
│ │ │ │ │ ├── sdist.py
│ │ │ │ │ ├── setopt.py
│ │ │ │ │ ├── test.py
│ │ │ │ │ ├── upload.py
│ │ │ │ │ └── upload_docs.py
│ │ │ │ ├── config.py
│ │ │ │ ├── dep_util.py
│ │ │ │ ├── depends.py
│ │ │ │ ├── dist.py
│ │ │ │ ├── errors.py
│ │ │ │ ├── extension.py
│ │ │ │ ├── extern
│ │ │ │ │ └── __init__.py
│ │ │ │ ├── glob.py
│ │ │ │ ├── gui-32.exe
│ │ │ │ ├── gui-64.exe
│ │ │ │ ├── gui.exe
│ │ │ │ ├── installer.py
│ │ │ │ ├── launch.py
│ │ │ │ ├── lib2to3_ex.py
│ │ │ │ ├── monkey.py
│ │ │ │ ├── msvc.py
│ │ │ │ ├── namespaces.py
│ │ │ │ ├── package_index.py
│ │ │ │ ├── py34compat.py
│ │ │ │ ├── sandbox.py
│ │ │ │ ├── script (dev).tmpl
│ │ │ │ ├── script.tmpl
│ │ │ │ ├── ssl_support.py
│ │ │ │ ├── unicode_utils.py
│ │ │ │ ├── version.py
│ │ │ │ ├── wheel.py
│ │ │ │ └── windows_support.py
│ │ │ ├── setuptools-57.0.0.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ ├── dependency_links.txt
│ │ │ │ ├── entry_points.txt
│ │ │ │ └── top_level.txt
│ │ │ ├── setuptools-57.0.0.virtualenv
│ │ │ ├── wheel
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __main__.py
│ │ │ │ ├── bdist_wheel.py
│ │ │ │ ├── cli
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── convert.py
│ │ │ │ │ ├── pack.py
│ │ │ │ │ └── unpack.py
│ │ │ │ ├── macosx_libfile.py
│ │ │ │ ├── metadata.py
│ │ │ │ ├── pkginfo.py
│ │ │ │ ├── util.py
│ │ │ │ ├── vendored
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── packaging
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── _typing.py
│ │ │ │ │ └── tags.py
│ │ │ │ └── wheelfile.py
│ │ │ ├── wheel-0.36.2.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ ├── entry_points.txt
│ │ │ │ └── top_level.txt
│ │ │ ├── wheel-0.36.2.virtualenv
│ │ │ ├── win32
│ │ │ │ ├── Demos
│ │ │ │ │ ├── BackupRead_BackupWrite.py
│ │ │ │ │ ├── BackupSeek_streamheaders.py
│ │ │ │ │ ├── CopyFileEx.py
│ │ │ │ │ ├── CreateFileTransacted_MiniVersion.py
│ │ │ │ │ ├── EvtFormatMessage.py
│ │ │ │ │ ├── EvtSubscribe_pull.py
│ │ │ │ │ ├── EvtSubscribe_push.py
│ │ │ │ │ ├── FileSecurityTest.py
│ │ │ │ │ ├── GetSaveFileName.py
│ │ │ │ │ ├── NetValidatePasswordPolicy.py
│ │ │ │ │ ├── OpenEncryptedFileRaw.py
│ │ │ │ │ ├── RegCreateKeyTransacted.py
│ │ │ │ │ ├── RegRestoreKey.py
│ │ │ │ │ ├── SystemParametersInfo.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── BackupRead_BackupWrite.cpython-38.pyc
│ │ │ │ │ │ ├── BackupSeek_streamheaders.cpython-38.pyc
│ │ │ │ │ │ ├── CopyFileEx.cpython-38.pyc
│ │ │ │ │ │ ├── CreateFileTransacted_MiniVersion.cpython-38.pyc
│ │ │ │ │ │ ├── EvtFormatMessage.cpython-38.pyc
│ │ │ │ │ │ ├── EvtSubscribe_pull.cpython-38.pyc
│ │ │ │ │ │ ├── EvtSubscribe_push.cpython-38.pyc
│ │ │ │ │ │ ├── FileSecurityTest.cpython-38.pyc
│ │ │ │ │ │ ├── GetSaveFileName.cpython-38.pyc
│ │ │ │ │ │ ├── NetValidatePasswordPolicy.cpython-38.pyc
│ │ │ │ │ │ ├── OpenEncryptedFileRaw.cpython-38.pyc
│ │ │ │ │ │ ├── RegCreateKeyTransacted.cpython-38.pyc
│ │ │ │ │ │ ├── RegRestoreKey.cpython-38.pyc
│ │ │ │ │ │ ├── SystemParametersInfo.cpython-38.pyc
│ │ │ │ │ │ ├── cerapi.cpython-38.pyc
│ │ │ │ │ │ ├── desktopmanager.cpython-38.pyc
│ │ │ │ │ │ ├── eventLogDemo.cpython-38.pyc
│ │ │ │ │ │ ├── getfilever.cpython-38.pyc
│ │ │ │ │ │ ├── mmapfile_demo.cpython-38.pyc
│ │ │ │ │ │ ├── print_desktop.cpython-38.pyc
│ │ │ │ │ │ ├── rastest.cpython-38.pyc
│ │ │ │ │ │ ├── timer_demo.cpython-38.pyc
│ │ │ │ │ │ ├── win32clipboardDemo.cpython-38.pyc
│ │ │ │ │ │ ├── win32clipboard_bitmapdemo.cpython-38.pyc
│ │ │ │ │ │ ├── win32comport_demo.cpython-38.pyc
│ │ │ │ │ │ ├── win32console_demo.cpython-38.pyc
│ │ │ │ │ │ ├── win32cred_demo.cpython-38.pyc
│ │ │ │ │ │ ├── win32fileDemo.cpython-38.pyc
│ │ │ │ │ │ ├── win32gui_demo.cpython-38.pyc
│ │ │ │ │ │ ├── win32gui_devicenotify.cpython-38.pyc
│ │ │ │ │ │ ├── win32gui_dialog.cpython-38.pyc
│ │ │ │ │ │ ├── win32gui_menu.cpython-38.pyc
│ │ │ │ │ │ ├── win32gui_taskbar.cpython-38.pyc
│ │ │ │ │ │ ├── win32netdemo.cpython-38.pyc
│ │ │ │ │ │ ├── win32rcparser_demo.cpython-38.pyc
│ │ │ │ │ │ ├── win32servicedemo.cpython-38.pyc
│ │ │ │ │ │ ├── win32ts_logoff_disconnected.cpython-38.pyc
│ │ │ │ │ │ └── winprocess.cpython-38.pyc
│ │ │ │ │ ├── c_extension
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ └── setup.cpython-38.pyc
│ │ │ │ │ │ └── setup.py
│ │ │ │ │ ├── cerapi.py
│ │ │ │ │ ├── dde
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── ddeclient.cpython-38.pyc
│ │ │ │ │ │ │ └── ddeserver.cpython-38.pyc
│ │ │ │ │ │ ├── ddeclient.py
│ │ │ │ │ │ └── ddeserver.py
│ │ │ │ │ ├── desktopmanager.py
│ │ │ │ │ ├── eventLogDemo.py
│ │ │ │ │ ├── getfilever.py
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── frowny.bmp
│ │ │ │ │ │ └── smiley.bmp
│ │ │ │ │ ├── mmapfile_demo.py
│ │ │ │ │ ├── pipes
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── cat.cpython-38.pyc
│ │ │ │ │ │ │ └── runproc.cpython-38.pyc
│ │ │ │ │ │ ├── cat.py
│ │ │ │ │ │ └── runproc.py
│ │ │ │ │ ├── print_desktop.py
│ │ │ │ │ ├── rastest.py
│ │ │ │ │ ├── security
│ │ │ │ │ │ ├── GetTokenInformation.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── GetTokenInformation.cpython-38.pyc
│ │ │ │ │ │ │ ├── account_rights.cpython-38.pyc
│ │ │ │ │ │ │ ├── explicit_entries.cpython-38.pyc
│ │ │ │ │ │ │ ├── get_policy_info.cpython-38.pyc
│ │ │ │ │ │ │ ├── list_rights.cpython-38.pyc
│ │ │ │ │ │ │ ├── localized_names.cpython-38.pyc
│ │ │ │ │ │ │ ├── lsaregevent.cpython-38.pyc
│ │ │ │ │ │ │ ├── lsastore.cpython-38.pyc
│ │ │ │ │ │ │ ├── query_information.cpython-38.pyc
│ │ │ │ │ │ │ ├── regsave_sa.cpython-38.pyc
│ │ │ │ │ │ │ ├── regsecurity.cpython-38.pyc
│ │ │ │ │ │ │ ├── sa_inherit.cpython-38.pyc
│ │ │ │ │ │ │ ├── security_enums.cpython-38.pyc
│ │ │ │ │ │ │ ├── set_file_audit.cpython-38.pyc
│ │ │ │ │ │ │ ├── set_file_owner.cpython-38.pyc
│ │ │ │ │ │ │ ├── set_policy_info.cpython-38.pyc
│ │ │ │ │ │ │ ├── setkernelobjectsecurity.cpython-38.pyc
│ │ │ │ │ │ │ ├── setnamedsecurityinfo.cpython-38.pyc
│ │ │ │ │ │ │ ├── setsecurityinfo.cpython-38.pyc
│ │ │ │ │ │ │ └── setuserobjectsecurity.cpython-38.pyc
│ │ │ │ │ │ ├── account_rights.py
│ │ │ │ │ │ ├── explicit_entries.py
│ │ │ │ │ │ ├── get_policy_info.py
│ │ │ │ │ │ ├── list_rights.py
│ │ │ │ │ │ ├── localized_names.py
│ │ │ │ │ │ ├── lsaregevent.py
│ │ │ │ │ │ ├── lsastore.py
│ │ │ │ │ │ ├── query_information.py
│ │ │ │ │ │ ├── regsave_sa.py
│ │ │ │ │ │ ├── regsecurity.py
│ │ │ │ │ │ ├── sa_inherit.py
│ │ │ │ │ │ ├── security_enums.py
│ │ │ │ │ │ ├── set_file_audit.py
│ │ │ │ │ │ ├── set_file_owner.py
│ │ │ │ │ │ ├── set_policy_info.py
│ │ │ │ │ │ ├── setkernelobjectsecurity.py
│ │ │ │ │ │ ├── setnamedsecurityinfo.py
│ │ │ │ │ │ ├── setsecurityinfo.py
│ │ │ │ │ │ ├── setuserobjectsecurity.py
│ │ │ │ │ │ └── sspi
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── fetch_url.cpython-38.pyc
│ │ │ │ │ │ │ ├── simple_auth.cpython-38.pyc
│ │ │ │ │ │ │ ├── socket_server.cpython-38.pyc
│ │ │ │ │ │ │ └── validate_password.cpython-38.pyc
│ │ │ │ │ │ ├── fetch_url.py
│ │ │ │ │ │ ├── simple_auth.py
│ │ │ │ │ │ ├── socket_server.py
│ │ │ │ │ │ └── validate_password.py
│ │ │ │ │ ├── service
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── nativePipeTestService.cpython-38.pyc
│ │ │ │ │ │ │ ├── pipeTestService.cpython-38.pyc
│ │ │ │ │ │ │ ├── pipeTestServiceClient.cpython-38.pyc
│ │ │ │ │ │ │ └── serviceEvents.cpython-38.pyc
│ │ │ │ │ │ ├── nativePipeTestService.py
│ │ │ │ │ │ ├── pipeTestService.py
│ │ │ │ │ │ ├── pipeTestServiceClient.py
│ │ │ │ │ │ └── serviceEvents.py
│ │ │ │ │ ├── timer_demo.py
│ │ │ │ │ ├── win32clipboardDemo.py
│ │ │ │ │ ├── win32clipboard_bitmapdemo.py
│ │ │ │ │ ├── win32comport_demo.py
│ │ │ │ │ ├── win32console_demo.py
│ │ │ │ │ ├── win32cred_demo.py
│ │ │ │ │ ├── win32fileDemo.py
│ │ │ │ │ ├── win32gui_demo.py
│ │ │ │ │ ├── win32gui_devicenotify.py
│ │ │ │ │ ├── win32gui_dialog.py
│ │ │ │ │ ├── win32gui_menu.py
│ │ │ │ │ ├── win32gui_taskbar.py
│ │ │ │ │ ├── win32netdemo.py
│ │ │ │ │ ├── win32rcparser_demo.py
│ │ │ │ │ ├── win32servicedemo.py
│ │ │ │ │ ├── win32ts_logoff_disconnected.py
│ │ │ │ │ ├── win32wnet
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── testwnet.cpython-38.pyc
│ │ │ │ │ │ │ └── winnetwk.cpython-38.pyc
│ │ │ │ │ │ ├── testwnet.py
│ │ │ │ │ │ └── winnetwk.py
│ │ │ │ │ └── winprocess.py
│ │ │ │ ├── _win32sysloader.pyd
│ │ │ │ ├── _winxptheme.pyd
│ │ │ │ ├── include
│ │ │ │ │ └── PyWinTypes.h
│ │ │ │ ├── lib
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── afxres.cpython-38.pyc
│ │ │ │ │ │ ├── commctrl.cpython-38.pyc
│ │ │ │ │ │ ├── dbi.cpython-38.pyc
│ │ │ │ │ │ ├── mmsystem.cpython-38.pyc
│ │ │ │ │ │ ├── netbios.cpython-38.pyc
│ │ │ │ │ │ ├── ntsecuritycon.cpython-38.pyc
│ │ │ │ │ │ ├── pywin32_bootstrap.cpython-38.pyc
│ │ │ │ │ │ ├── pywin32_testutil.cpython-38.pyc
│ │ │ │ │ │ ├── pywintypes.cpython-38.pyc
│ │ │ │ │ │ ├── rasutil.cpython-38.pyc
│ │ │ │ │ │ ├── regcheck.cpython-38.pyc
│ │ │ │ │ │ ├── regutil.cpython-38.pyc
│ │ │ │ │ │ ├── sspi.cpython-38.pyc
│ │ │ │ │ │ ├── sspicon.cpython-38.pyc
│ │ │ │ │ │ ├── win2kras.cpython-38.pyc
│ │ │ │ │ │ ├── win32con.cpython-38.pyc
│ │ │ │ │ │ ├── win32cryptcon.cpython-38.pyc
│ │ │ │ │ │ ├── win32evtlogutil.cpython-38.pyc
│ │ │ │ │ │ ├── win32gui_struct.cpython-38.pyc
│ │ │ │ │ │ ├── win32inetcon.cpython-38.pyc
│ │ │ │ │ │ ├── win32netcon.cpython-38.pyc
│ │ │ │ │ │ ├── win32pdhquery.cpython-38.pyc
│ │ │ │ │ │ ├── win32pdhutil.cpython-38.pyc
│ │ │ │ │ │ ├── win32rcparser.cpython-38.pyc
│ │ │ │ │ │ ├── win32serviceutil.cpython-38.pyc
│ │ │ │ │ │ ├── win32timezone.cpython-38.pyc
│ │ │ │ │ │ ├── win32traceutil.cpython-38.pyc
│ │ │ │ │ │ ├── win32verstamp.cpython-38.pyc
│ │ │ │ │ │ ├── winerror.cpython-38.pyc
│ │ │ │ │ │ ├── winioctlcon.cpython-38.pyc
│ │ │ │ │ │ ├── winnt.cpython-38.pyc
│ │ │ │ │ │ ├── winperf.cpython-38.pyc
│ │ │ │ │ │ └── winxptheme.cpython-38.pyc
│ │ │ │ │ ├── afxres.py
│ │ │ │ │ ├── commctrl.py
│ │ │ │ │ ├── dbi.py
│ │ │ │ │ ├── mmsystem.py
│ │ │ │ │ ├── netbios.py
│ │ │ │ │ ├── ntsecuritycon.py
│ │ │ │ │ ├── pywin32_bootstrap.py
│ │ │ │ │ ├── pywin32_testutil.py
│ │ │ │ │ ├── pywintypes.py
│ │ │ │ │ ├── rasutil.py
│ │ │ │ │ ├── regcheck.py
│ │ │ │ │ ├── regutil.py
│ │ │ │ │ ├── sspi.py
│ │ │ │ │ ├── sspicon.py
│ │ │ │ │ ├── win2kras.py
│ │ │ │ │ ├── win32con.py
│ │ │ │ │ ├── win32cryptcon.py
│ │ │ │ │ ├── win32evtlogutil.py
│ │ │ │ │ ├── win32gui_struct.py
│ │ │ │ │ ├── win32inetcon.py
│ │ │ │ │ ├── win32netcon.py
│ │ │ │ │ ├── win32pdhquery.py
│ │ │ │ │ ├── win32pdhutil.py
│ │ │ │ │ ├── win32rcparser.py
│ │ │ │ │ ├── win32serviceutil.py
│ │ │ │ │ ├── win32timezone.py
│ │ │ │ │ ├── win32traceutil.py
│ │ │ │ │ ├── win32verstamp.py
│ │ │ │ │ ├── winerror.py
│ │ │ │ │ ├── winioctlcon.py
│ │ │ │ │ ├── winnt.py
│ │ │ │ │ ├── winperf.py
│ │ │ │ │ └── winxptheme.py
│ │ │ │ ├── libs
│ │ │ │ │ └── pywintypes.lib
│ │ │ │ ├── license.txt
│ │ │ │ ├── mmapfile.pyd
│ │ │ │ ├── odbc.pyd
│ │ │ │ ├── perfmon.pyd
│ │ │ │ ├── perfmondata.dll
│ │ │ │ ├── pythonservice.exe
│ │ │ │ ├── scripts
│ │ │ │ │ ├── ControlService.py
│ │ │ │ │ ├── VersionStamp
│ │ │ │ │ │ ├── BrandProject.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── BrandProject.cpython-38.pyc
│ │ │ │ │ │ │ ├── bulkstamp.cpython-38.pyc
│ │ │ │ │ │ │ └── vssutil.cpython-38.pyc
│ │ │ │ │ │ ├── bulkstamp.py
│ │ │ │ │ │ └── vssutil.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── ControlService.cpython-38.pyc
│ │ │ │ │ │ ├── backupEventLog.cpython-38.pyc
│ │ │ │ │ │ ├── killProcName.cpython-38.pyc
│ │ │ │ │ │ ├── rasutil.cpython-38.pyc
│ │ │ │ │ │ ├── regsetup.cpython-38.pyc
│ │ │ │ │ │ └── setup_d.cpython-38.pyc
│ │ │ │ │ ├── backupEventLog.py
│ │ │ │ │ ├── ce
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ └── pysynch.cpython-38.pyc
│ │ │ │ │ │ └── pysynch.py
│ │ │ │ │ ├── killProcName.py
│ │ │ │ │ ├── rasutil.py
│ │ │ │ │ ├── regsetup.py
│ │ │ │ │ └── setup_d.py
│ │ │ │ ├── servicemanager.pyd
│ │ │ │ ├── test
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── handles.cpython-38.pyc
│ │ │ │ │ │ ├── test_clipboard.cpython-38.pyc
│ │ │ │ │ │ ├── test_exceptions.cpython-38.pyc
│ │ │ │ │ │ ├── test_odbc.cpython-38.pyc
│ │ │ │ │ │ ├── test_pywintypes.cpython-38.pyc
│ │ │ │ │ │ ├── test_security.cpython-38.pyc
│ │ │ │ │ │ ├── test_sspi.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32api.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32crypt.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32event.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32file.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32gui.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32guistruct.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32inet.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32net.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32pipe.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32profile.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32rcparser.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32timezone.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32trace.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32wnet.cpython-38.pyc
│ │ │ │ │ │ └── testall.cpython-38.pyc
│ │ │ │ │ ├── handles.py
│ │ │ │ │ ├── test_clipboard.py
│ │ │ │ │ ├── test_exceptions.py
│ │ │ │ │ ├── test_odbc.py
│ │ │ │ │ ├── test_pywintypes.py
│ │ │ │ │ ├── test_security.py
│ │ │ │ │ ├── test_sspi.py
│ │ │ │ │ ├── test_win32api.py
│ │ │ │ │ ├── test_win32crypt.py
│ │ │ │ │ ├── test_win32event.py
│ │ │ │ │ ├── test_win32file.py
│ │ │ │ │ ├── test_win32gui.py
│ │ │ │ │ ├── test_win32guistruct.py
│ │ │ │ │ ├── test_win32inet.py
│ │ │ │ │ ├── test_win32net.py
│ │ │ │ │ ├── test_win32pipe.py
│ │ │ │ │ ├── test_win32profile.py
│ │ │ │ │ ├── test_win32rcparser.py
│ │ │ │ │ ├── test_win32timezone.py
│ │ │ │ │ ├── test_win32trace.py
│ │ │ │ │ ├── test_win32wnet.py
│ │ │ │ │ ├── testall.py
│ │ │ │ │ └── win32rcparser
│ │ │ │ │ ├── python.bmp
│ │ │ │ │ ├── python.ico
│ │ │ │ │ ├── test.h
│ │ │ │ │ └── test.rc
│ │ │ │ ├── timer.pyd
│ │ │ │ ├── win32api.pyd
│ │ │ │ ├── win32clipboard.pyd
│ │ │ │ ├── win32console.pyd
│ │ │ │ ├── win32cred.pyd
│ │ │ │ ├── win32crypt.pyd
│ │ │ │ ├── win32event.pyd
│ │ │ │ ├── win32evtlog.pyd
│ │ │ │ ├── win32file.pyd
│ │ │ │ ├── win32gui.pyd
│ │ │ │ ├── win32help.pyd
│ │ │ │ ├── win32inet.pyd
│ │ │ │ ├── win32job.pyd
│ │ │ │ ├── win32lz.pyd
│ │ │ │ ├── win32net.pyd
│ │ │ │ ├── win32pdh.pyd
│ │ │ │ ├── win32pipe.pyd
│ │ │ │ ├── win32print.pyd
│ │ │ │ ├── win32process.pyd
│ │ │ │ ├── win32profile.pyd
│ │ │ │ ├── win32ras.pyd
│ │ │ │ ├── win32security.pyd
│ │ │ │ ├── win32service.pyd
│ │ │ │ ├── win32trace.pyd
│ │ │ │ ├── win32transaction.pyd
│ │ │ │ ├── win32ts.pyd
│ │ │ │ ├── win32wnet.pyd
│ │ │ │ └── winxpgui.pyd
│ │ │ ├── win32com
│ │ │ │ ├── HTML
│ │ │ │ │ ├── GeneratedSupport.html
│ │ │ │ │ ├── PythonCOM.html
│ │ │ │ │ ├── QuickStartClientCom.html
│ │ │ │ │ ├── QuickStartServerCom.html
│ │ │ │ │ ├── docindex.html
│ │ │ │ │ ├── image
│ │ │ │ │ │ ├── BTN_HomePage.gif
│ │ │ │ │ │ ├── BTN_ManualTop.gif
│ │ │ │ │ │ ├── BTN_NextPage.gif
│ │ │ │ │ │ ├── BTN_PrevPage.gif
│ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ ├── pycom_blowing.gif
│ │ │ │ │ │ ├── pythoncom.gif
│ │ │ │ │ │ └── www_icon.gif
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── misc.html
│ │ │ │ │ ├── package.html
│ │ │ │ │ └── variant.html
│ │ │ │ ├── License.txt
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ ├── olectl.cpython-38.pyc
│ │ │ │ │ ├── storagecon.cpython-38.pyc
│ │ │ │ │ ├── universal.cpython-38.pyc
│ │ │ │ │ └── util.cpython-38.pyc
│ │ │ │ ├── client
│ │ │ │ │ ├── CLSIDToClass.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── CLSIDToClass.cpython-38.pyc
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── build.cpython-38.pyc
│ │ │ │ │ │ ├── combrowse.cpython-38.pyc
│ │ │ │ │ │ ├── connect.cpython-38.pyc
│ │ │ │ │ │ ├── dynamic.cpython-38.pyc
│ │ │ │ │ │ ├── gencache.cpython-38.pyc
│ │ │ │ │ │ ├── genpy.cpython-38.pyc
│ │ │ │ │ │ ├── makepy.cpython-38.pyc
│ │ │ │ │ │ ├── selecttlb.cpython-38.pyc
│ │ │ │ │ │ ├── tlbrowse.cpython-38.pyc
│ │ │ │ │ │ └── util.cpython-38.pyc
│ │ │ │ │ ├── build.py
│ │ │ │ │ ├── combrowse.py
│ │ │ │ │ ├── connect.py
│ │ │ │ │ ├── dynamic.py
│ │ │ │ │ ├── gencache.py
│ │ │ │ │ ├── genpy.py
│ │ │ │ │ ├── makepy.py
│ │ │ │ │ ├── selecttlb.py
│ │ │ │ │ ├── tlbrowse.py
│ │ │ │ │ └── util.py
│ │ │ │ ├── demos
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── connect.cpython-38.pyc
│ │ │ │ │ │ ├── dump_clipboard.cpython-38.pyc
│ │ │ │ │ │ ├── eventsApartmentThreaded.cpython-38.pyc
│ │ │ │ │ │ ├── eventsFreeThreaded.cpython-38.pyc
│ │ │ │ │ │ ├── excelAddin.cpython-38.pyc
│ │ │ │ │ │ ├── excelRTDServer.cpython-38.pyc
│ │ │ │ │ │ ├── iebutton.cpython-38.pyc
│ │ │ │ │ │ ├── ietoolbar.cpython-38.pyc
│ │ │ │ │ │ ├── outlookAddin.cpython-38.pyc
│ │ │ │ │ │ └── trybag.cpython-38.pyc
│ │ │ │ │ ├── connect.py
│ │ │ │ │ ├── dump_clipboard.py
│ │ │ │ │ ├── eventsApartmentThreaded.py
│ │ │ │ │ ├── eventsFreeThreaded.py
│ │ │ │ │ ├── excelAddin.py
│ │ │ │ │ ├── excelRTDServer.py
│ │ │ │ │ ├── iebutton.py
│ │ │ │ │ ├── ietoolbar.py
│ │ │ │ │ ├── outlookAddin.py
│ │ │ │ │ └── trybag.py
│ │ │ │ ├── include
│ │ │ │ │ ├── PythonCOM.h
│ │ │ │ │ ├── PythonCOMRegister.h
│ │ │ │ │ └── PythonCOMServer.h
│ │ │ │ ├── libs
│ │ │ │ │ ├── axscript.lib
│ │ │ │ │ └── pythoncom.lib
│ │ │ │ ├── makegw
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── makegw.cpython-38.pyc
│ │ │ │ │ │ ├── makegwenum.cpython-38.pyc
│ │ │ │ │ │ └── makegwparse.cpython-38.pyc
│ │ │ │ │ ├── makegw.py
│ │ │ │ │ ├── makegwenum.py
│ │ │ │ │ └── makegwparse.py
│ │ │ │ ├── olectl.py
│ │ │ │ ├── readme.html
│ │ │ │ ├── server
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── connect.cpython-38.pyc
│ │ │ │ │ │ ├── dispatcher.cpython-38.pyc
│ │ │ │ │ │ ├── exception.cpython-38.pyc
│ │ │ │ │ │ ├── factory.cpython-38.pyc
│ │ │ │ │ │ ├── localserver.cpython-38.pyc
│ │ │ │ │ │ ├── policy.cpython-38.pyc
│ │ │ │ │ │ ├── register.cpython-38.pyc
│ │ │ │ │ │ └── util.cpython-38.pyc
│ │ │ │ │ ├── connect.py
│ │ │ │ │ ├── dispatcher.py
│ │ │ │ │ ├── exception.py
│ │ │ │ │ ├── factory.py
│ │ │ │ │ ├── localserver.py
│ │ │ │ │ ├── policy.py
│ │ │ │ │ ├── register.py
│ │ │ │ │ └── util.py
│ │ │ │ ├── servers
│ │ │ │ │ ├── PythonTools.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── PythonTools.cpython-38.pyc
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── dictionary.cpython-38.pyc
│ │ │ │ │ │ ├── interp.cpython-38.pyc
│ │ │ │ │ │ ├── perfmon.cpython-38.pyc
│ │ │ │ │ │ └── test_pycomtest.cpython-38.pyc
│ │ │ │ │ ├── dictionary.py
│ │ │ │ │ ├── interp.py
│ │ │ │ │ ├── perfmon.py
│ │ │ │ │ └── test_pycomtest.py
│ │ │ │ ├── storagecon.py
│ │ │ │ ├── test
│ │ │ │ │ ├── GenTestScripts.py
│ │ │ │ │ ├── Testpys.sct
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── GenTestScripts.cpython-38.pyc
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── daodump.cpython-38.pyc
│ │ │ │ │ │ ├── errorSemantics.cpython-38.pyc
│ │ │ │ │ │ ├── pippo_server.cpython-38.pyc
│ │ │ │ │ │ ├── policySemantics.cpython-38.pyc
│ │ │ │ │ │ ├── testADOEvents.cpython-38.pyc
│ │ │ │ │ │ ├── testAXScript.cpython-38.pyc
│ │ │ │ │ │ ├── testAccess.cpython-38.pyc
│ │ │ │ │ │ ├── testArrays.cpython-38.pyc
│ │ │ │ │ │ ├── testClipboard.cpython-38.pyc
│ │ │ │ │ │ ├── testCollections.cpython-38.pyc
│ │ │ │ │ │ ├── testConversionErrors.cpython-38.pyc
│ │ │ │ │ │ ├── testDCOM.cpython-38.pyc
│ │ │ │ │ │ ├── testDates.cpython-38.pyc
│ │ │ │ │ │ ├── testDictionary.cpython-38.pyc
│ │ │ │ │ │ ├── testDynamic.cpython-38.pyc
│ │ │ │ │ │ ├── testExchange.cpython-38.pyc
│ │ │ │ │ │ ├── testExplorer.cpython-38.pyc
│ │ │ │ │ │ ├── testGIT.cpython-38.pyc
│ │ │ │ │ │ ├── testGatewayAddresses.cpython-38.pyc
│ │ │ │ │ │ ├── testIterators.cpython-38.pyc
│ │ │ │ │ │ ├── testMSOffice.cpython-38.pyc
│ │ │ │ │ │ ├── testMSOfficeEvents.cpython-38.pyc
│ │ │ │ │ │ ├── testMarshal.cpython-38.pyc
│ │ │ │ │ │ ├── testNetscape.cpython-38.pyc
│ │ │ │ │ │ ├── testPersist.cpython-38.pyc
│ │ │ │ │ │ ├── testPippo.cpython-38.pyc
│ │ │ │ │ │ ├── testPyComTest.cpython-38.pyc
│ │ │ │ │ │ ├── testROT.cpython-38.pyc
│ │ │ │ │ │ ├── testServers.cpython-38.pyc
│ │ │ │ │ │ ├── testShell.cpython-38.pyc
│ │ │ │ │ │ ├── testStorage.cpython-38.pyc
│ │ │ │ │ │ ├── testStreams.cpython-38.pyc
│ │ │ │ │ │ ├── testWMI.cpython-38.pyc
│ │ │ │ │ │ ├── testall.cpython-38.pyc
│ │ │ │ │ │ ├── testmakepy.cpython-38.pyc
│ │ │ │ │ │ ├── testvb.cpython-38.pyc
│ │ │ │ │ │ ├── testvbscript_regexp.cpython-38.pyc
│ │ │ │ │ │ ├── testxslt.cpython-38.pyc
│ │ │ │ │ │ └── util.cpython-38.pyc
│ │ │ │ │ ├── daodump.py
│ │ │ │ │ ├── errorSemantics.py
│ │ │ │ │ ├── pippo.idl
│ │ │ │ │ ├── pippo_server.py
│ │ │ │ │ ├── policySemantics.py
│ │ │ │ │ ├── readme.txt
│ │ │ │ │ ├── testADOEvents.py
│ │ │ │ │ ├── testAXScript.py
│ │ │ │ │ ├── testAccess.py
│ │ │ │ │ ├── testArrays.py
│ │ │ │ │ ├── testClipboard.py
│ │ │ │ │ ├── testCollections.py
│ │ │ │ │ ├── testConversionErrors.py
│ │ │ │ │ ├── testDCOM.py
│ │ │ │ │ ├── testDates.py
│ │ │ │ │ ├── testDictionary.py
│ │ │ │ │ ├── testDictionary.vbs
│ │ │ │ │ ├── testDynamic.py
│ │ │ │ │ ├── testExchange.py
│ │ │ │ │ ├── testExplorer.py
│ │ │ │ │ ├── testGIT.py
│ │ │ │ │ ├── testGatewayAddresses.py
│ │ │ │ │ ├── testInterp.vbs
│ │ │ │ │ ├── testIterators.py
│ │ │ │ │ ├── testMSOffice.py
│ │ │ │ │ ├── testMSOfficeEvents.py
│ │ │ │ │ ├── testMarshal.py
│ │ │ │ │ ├── testNetscape.py
│ │ │ │ │ ├── testPersist.py
│ │ │ │ │ ├── testPippo.py
│ │ │ │ │ ├── testPyComTest.py
│ │ │ │ │ ├── testPyScriptlet.js
│ │ │ │ │ ├── testROT.py
│ │ │ │ │ ├── testServers.py
│ │ │ │ │ ├── testShell.py
│ │ │ │ │ ├── testStorage.py
│ │ │ │ │ ├── testStreams.py
│ │ │ │ │ ├── testWMI.py
│ │ │ │ │ ├── testall.py
│ │ │ │ │ ├── testmakepy.py
│ │ │ │ │ ├── testvb.py
│ │ │ │ │ ├── testvbscript_regexp.py
│ │ │ │ │ ├── testxslt.js
│ │ │ │ │ ├── testxslt.py
│ │ │ │ │ ├── testxslt.xsl
│ │ │ │ │ └── util.py
│ │ │ │ ├── universal.py
│ │ │ │ └── util.py
│ │ │ └── win32comext
│ │ │ ├── adsi
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ └── adsicon.cpython-38.pyc
│ │ │ │ ├── adsi.pyd
│ │ │ │ ├── adsicon.py
│ │ │ │ └── demos
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── objectPicker.cpython-38.pyc
│ │ │ │ │ ├── scp.cpython-38.pyc
│ │ │ │ │ ├── search.cpython-38.pyc
│ │ │ │ │ └── test.cpython-38.pyc
│ │ │ │ ├── objectPicker.py
│ │ │ │ ├── scp.py
│ │ │ │ ├── search.py
│ │ │ │ └── test.py
│ │ │ ├── authorization
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ ├── authorization.pyd
│ │ │ │ └── demos
│ │ │ │ ├── EditSecurity.py
│ │ │ │ ├── EditServiceSecurity.py
│ │ │ │ └── __pycache__
│ │ │ │ ├── EditSecurity.cpython-38.pyc
│ │ │ │ └── EditServiceSecurity.cpython-38.pyc
│ │ │ ├── axcontrol
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ └── axcontrol.pyd
│ │ │ ├── axdebug
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ ├── adb.cpython-38.pyc
│ │ │ │ │ ├── codecontainer.cpython-38.pyc
│ │ │ │ │ ├── contexts.cpython-38.pyc
│ │ │ │ │ ├── debugger.cpython-38.pyc
│ │ │ │ │ ├── documents.cpython-38.pyc
│ │ │ │ │ ├── dump.cpython-38.pyc
│ │ │ │ │ ├── expressions.cpython-38.pyc
│ │ │ │ │ ├── gateways.cpython-38.pyc
│ │ │ │ │ ├── stackframe.cpython-38.pyc
│ │ │ │ │ └── util.cpython-38.pyc
│ │ │ │ ├── adb.py
│ │ │ │ ├── axdebug.pyd
│ │ │ │ ├── codecontainer.py
│ │ │ │ ├── contexts.py
│ │ │ │ ├── debugger.py
│ │ │ │ ├── documents.py
│ │ │ │ ├── dump.py
│ │ │ │ ├── expressions.py
│ │ │ │ ├── gateways.py
│ │ │ │ ├── stackframe.py
│ │ │ │ └── util.py
│ │ │ ├── axscript
│ │ │ │ ├── Demos
│ │ │ │ │ └── client
│ │ │ │ │ ├── asp
│ │ │ │ │ │ ├── CreateObject.asp
│ │ │ │ │ │ ├── caps.asp
│ │ │ │ │ │ ├── interrupt
│ │ │ │ │ │ │ ├── test.asp
│ │ │ │ │ │ │ ├── test.html
│ │ │ │ │ │ │ ├── test1.asp
│ │ │ │ │ │ │ └── test1.html
│ │ │ │ │ │ └── tut1.asp
│ │ │ │ │ ├── ie
│ │ │ │ │ │ ├── MarqueeText1.htm
│ │ │ │ │ │ ├── calc.htm
│ │ │ │ │ │ ├── dbgtest.htm
│ │ │ │ │ │ ├── demo.htm
│ │ │ │ │ │ ├── demo_check.htm
│ │ │ │ │ │ ├── demo_intro.htm
│ │ │ │ │ │ ├── demo_menu.htm
│ │ │ │ │ │ ├── docwrite.htm
│ │ │ │ │ │ ├── foo2.htm
│ │ │ │ │ │ ├── form.htm
│ │ │ │ │ │ ├── marqueeDemo.htm
│ │ │ │ │ │ ├── mousetrack.htm
│ │ │ │ │ │ └── pycom_blowing.gif
│ │ │ │ │ └── wsh
│ │ │ │ │ ├── blank.pys
│ │ │ │ │ ├── excel.pys
│ │ │ │ │ ├── registry.pys
│ │ │ │ │ └── test.pys
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ └── asputil.cpython-38.pyc
│ │ │ │ ├── asputil.py
│ │ │ │ ├── axscript.pyd
│ │ │ │ ├── client
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── debug.cpython-38.pyc
│ │ │ │ │ │ ├── error.cpython-38.pyc
│ │ │ │ │ │ ├── framework.cpython-38.pyc
│ │ │ │ │ │ ├── pydumper.cpython-38.pyc
│ │ │ │ │ │ ├── pyscript.cpython-38.pyc
│ │ │ │ │ │ ├── pyscript_rexec.cpython-38.pyc
│ │ │ │ │ │ └── scriptdispatch.cpython-38.pyc
│ │ │ │ │ ├── debug.py
│ │ │ │ │ ├── error.py
│ │ │ │ │ ├── framework.py
│ │ │ │ │ ├── pydumper.py
│ │ │ │ │ ├── pyscript.py
│ │ │ │ │ ├── pyscript_rexec.py
│ │ │ │ │ └── scriptdispatch.py
│ │ │ │ ├── server
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── axsite.cpython-38.pyc
│ │ │ │ │ │ └── error.cpython-38.pyc
│ │ │ │ │ ├── axsite.py
│ │ │ │ │ └── error.py
│ │ │ │ └── test
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── leakTest.cpython-38.pyc
│ │ │ │ │ ├── testHost.cpython-38.pyc
│ │ │ │ │ └── testHost4Dbg.cpython-38.pyc
│ │ │ │ ├── debugTest.pys
│ │ │ │ ├── debugTest.vbs
│ │ │ │ ├── leakTest.py
│ │ │ │ ├── testHost.py
│ │ │ │ └── testHost4Dbg.py
│ │ │ ├── bits
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ ├── bits.pyd
│ │ │ │ └── test
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── show_all_jobs.cpython-38.pyc
│ │ │ │ │ └── test_bits.cpython-38.pyc
│ │ │ │ ├── show_all_jobs.py
│ │ │ │ └── test_bits.py
│ │ │ ├── directsound
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ ├── directsound.pyd
│ │ │ │ └── test
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ ├── ds_record.cpython-38.pyc
│ │ │ │ │ └── ds_test.cpython-38.pyc
│ │ │ │ ├── ds_record.py
│ │ │ │ └── ds_test.py
│ │ │ ├── ifilter
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ └── ifiltercon.cpython-38.pyc
│ │ │ │ ├── demo
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ └── filterDemo.cpython-38.pyc
│ │ │ │ │ └── filterDemo.py
│ │ │ │ ├── ifilter.pyd
│ │ │ │ └── ifiltercon.py
│ │ │ ├── internet
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ └── inetcon.cpython-38.pyc
│ │ │ │ ├── inetcon.py
│ │ │ │ └── internet.pyd
│ │ │ ├── mapi
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ ├── emsabtags.cpython-38.pyc
│ │ │ │ │ ├── mapitags.cpython-38.pyc
│ │ │ │ │ └── mapiutil.cpython-38.pyc
│ │ │ │ ├── demos
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ └── mapisend.cpython-38.pyc
│ │ │ │ │ └── mapisend.py
│ │ │ │ ├── emsabtags.py
│ │ │ │ ├── exchange.pyd
│ │ │ │ ├── mapi.pyd
│ │ │ │ ├── mapitags.py
│ │ │ │ └── mapiutil.py
│ │ │ ├── propsys
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ └── pscon.cpython-38.pyc
│ │ │ │ ├── propsys.pyd
│ │ │ │ ├── pscon.py
│ │ │ │ └── test
│ │ │ │ ├── __pycache__
│ │ │ │ │ └── testpropsys.cpython-38.pyc
│ │ │ │ └── testpropsys.py
│ │ │ ├── shell
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ └── shellcon.cpython-38.pyc
│ │ │ │ ├── demos
│ │ │ │ │ ├── IActiveDesktop.py
│ │ │ │ │ ├── IFileOperationProgressSink.py
│ │ │ │ │ ├── IShellLinkDataList.py
│ │ │ │ │ ├── ITransferAdviseSink.py
│ │ │ │ │ ├── IUniformResourceLocator.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── IActiveDesktop.cpython-38.pyc
│ │ │ │ │ │ ├── IFileOperationProgressSink.cpython-38.pyc
│ │ │ │ │ │ ├── IShellLinkDataList.cpython-38.pyc
│ │ │ │ │ │ ├── ITransferAdviseSink.cpython-38.pyc
│ │ │ │ │ │ ├── IUniformResourceLocator.cpython-38.pyc
│ │ │ │ │ │ ├── browse_for_folder.cpython-38.pyc
│ │ │ │ │ │ ├── create_link.cpython-38.pyc
│ │ │ │ │ │ ├── dump_link.cpython-38.pyc
│ │ │ │ │ │ ├── explorer_browser.cpython-38.pyc
│ │ │ │ │ │ ├── shellexecuteex.cpython-38.pyc
│ │ │ │ │ │ ├── viewstate.cpython-38.pyc
│ │ │ │ │ │ └── walk_shell_folders.cpython-38.pyc
│ │ │ │ │ ├── browse_for_folder.py
│ │ │ │ │ ├── create_link.py
│ │ │ │ │ ├── dump_link.py
│ │ │ │ │ ├── explorer_browser.py
│ │ │ │ │ ├── servers
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── column_provider.cpython-38.pyc
│ │ │ │ │ │ │ ├── context_menu.cpython-38.pyc
│ │ │ │ │ │ │ ├── copy_hook.cpython-38.pyc
│ │ │ │ │ │ │ ├── empty_volume_cache.cpython-38.pyc
│ │ │ │ │ │ │ ├── folder_view.cpython-38.pyc
│ │ │ │ │ │ │ ├── icon_handler.cpython-38.pyc
│ │ │ │ │ │ │ └── shell_view.cpython-38.pyc
│ │ │ │ │ │ ├── column_provider.py
│ │ │ │ │ │ ├── context_menu.py
│ │ │ │ │ │ ├── copy_hook.py
│ │ │ │ │ │ ├── empty_volume_cache.py
│ │ │ │ │ │ ├── folder_view.py
│ │ │ │ │ │ ├── icon_handler.py
│ │ │ │ │ │ └── shell_view.py
│ │ │ │ │ ├── shellexecuteex.py
│ │ │ │ │ ├── viewstate.py
│ │ │ │ │ └── walk_shell_folders.py
│ │ │ │ ├── shell.pyd
│ │ │ │ ├── shellcon.py
│ │ │ │ └── test
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── testSHFileOperation.cpython-38.pyc
│ │ │ │ │ ├── testShellFolder.cpython-38.pyc
│ │ │ │ │ └── testShellItem.cpython-38.pyc
│ │ │ │ ├── testSHFileOperation.py
│ │ │ │ ├── testShellFolder.py
│ │ │ │ └── testShellItem.py
│ │ │ └── taskscheduler
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ └── __init__.cpython-38.pyc
│ │ │ ├── taskscheduler.pyd
│ │ │ └── test
│ │ │ ├── __pycache__
│ │ │ │ ├── test_addtask.cpython-38.pyc
│ │ │ │ ├── test_addtask_1.cpython-38.pyc
│ │ │ │ ├── test_addtask_2.cpython-38.pyc
│ │ │ │ └── test_localsystem.cpython-38.pyc
│ │ │ ├── test_addtask.py
│ │ │ ├── test_addtask_1.py
│ │ │ ├── test_addtask_2.py
│ │ │ └── test_localsystem.py
│ │ ├── Scripts
│ │ │ ├── __pycache__
│ │ │ │ ├── clear_comtypes_cache.cpython-38.pyc
│ │ │ │ ├── pywin32_postinstall.cpython-38.pyc
│ │ │ │ └── pywin32_testall.cpython-38.pyc
│ │ │ ├── activate
│ │ │ ├── activate.bat
│ │ │ ├── activate.fish
│ │ │ ├── activate.ps1
│ │ │ ├── activate.xsh
│ │ │ ├── activate_this.py
│ │ │ ├── clear_comtypes_cache.py
│ │ │ ├── deactivate.bat
│ │ │ ├── pip-3.8.exe
│ │ │ ├── pip.exe
│ │ │ ├── pip3.8.exe
│ │ │ ├── pip3.exe
│ │ │ ├── pydoc.bat
│ │ │ ├── python.exe
│ │ │ ├── pythonw.exe
│ │ │ ├── pywin32_postinstall.py
│ │ │ ├── pywin32_testall.py
│ │ │ ├── wheel-3.8.exe
│ │ │ ├── wheel.exe
│ │ │ ├── wheel3.8.exe
│ │ │ └── wheel3.exe
│ │ ├── pyvenv.cfg
│ │ ├── ui
│ │ │ └── CadForm.ui
│ │ └── 断面图-最终.xlsm
│ ├── GetDrawArray.py
│ ├── __pycache__
│ │ └── GetDrawArray.cpython-38.pyc
│ └── main.py
└── Python操作CAD绘图.zip
306 directories, 2169 files
【实例截图】
.
├── DuanMianCAD
│ ├── DuanMianCad
│ │ ├── Lib
│ │ │ └── site-packages
│ │ │ ├── PyWin32.chm
│ │ │ ├── __pycache__
│ │ │ │ ├── _virtualenv.cpython-38.pyc
│ │ │ │ └── pythoncom.cpython-38.pyc
│ │ │ ├── _distutils_hack
│ │ │ │ ├── __init__.py
│ │ │ │ └── override.py
│ │ │ ├── _virtualenv.pth
│ │ │ ├── _virtualenv.py
│ │ │ ├── adodbapi
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ ├── ado_consts.cpython-38.pyc
│ │ │ │ │ ├── adodbapi.cpython-38.pyc
│ │ │ │ │ ├── apibase.cpython-38.pyc
│ │ │ │ │ ├── is64bit.cpython-38.pyc
│ │ │ │ │ ├── process_connect_string.cpython-38.pyc
│ │ │ │ │ ├── remote.cpython-38.pyc
│ │ │ │ │ ├── schema_table.cpython-38.pyc
│ │ │ │ │ └── setup.cpython-38.pyc
│ │ │ │ ├── ado_consts.py
│ │ │ │ ├── adodbapi.py
│ │ │ │ ├── apibase.py
│ │ │ │ ├── examples
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── db_print.cpython-38.pyc
│ │ │ │ │ │ ├── db_table_names.cpython-38.pyc
│ │ │ │ │ │ ├── xls_read.cpython-38.pyc
│ │ │ │ │ │ └── xls_write.cpython-38.pyc
│ │ │ │ │ ├── db_print.py
│ │ │ │ │ ├── db_table_names.py
│ │ │ │ │ ├── xls_read.py
│ │ │ │ │ └── xls_write.py
│ │ │ │ ├── is64bit.py
│ │ │ │ ├── license.txt
│ │ │ │ ├── process_connect_string.py
│ │ │ │ ├── readme.txt
│ │ │ │ ├── remote.py
│ │ │ │ ├── schema_table.py
│ │ │ │ ├── setup.py
│ │ │ │ └── test
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── adodbapitest.cpython-38.pyc
│ │ │ │ │ ├── adodbapitestconfig.cpython-38.pyc
│ │ │ │ │ ├── dbapi20.cpython-38.pyc
│ │ │ │ │ ├── is64bit.cpython-38.pyc
│ │ │ │ │ ├── setuptestframework.cpython-38.pyc
│ │ │ │ │ ├── test_adodbapi_dbapi20.cpython-38.pyc
│ │ │ │ │ └── tryconnection.cpython-38.pyc
│ │ │ │ ├── adodbapitest.py
│ │ │ │ ├── adodbapitestconfig.py
│ │ │ │ ├── dbapi20.py
│ │ │ │ ├── is64bit.py
│ │ │ │ ├── setuptestframework.py
│ │ │ │ ├── test_adodbapi_dbapi20.py
│ │ │ │ └── tryconnection.py
│ │ │ ├── comtypes
│ │ │ │ ├── GUID.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── GUID.cpython-38.pyc
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ ├── _comobject.cpython-38.pyc
│ │ │ │ │ ├── _meta.cpython-38.pyc
│ │ │ │ │ ├── _safearray.cpython-38.pyc
│ │ │ │ │ ├── automation.cpython-38.pyc
│ │ │ │ │ ├── connectionpoints.cpython-38.pyc
│ │ │ │ │ ├── errorinfo.cpython-38.pyc
│ │ │ │ │ ├── git.cpython-38.pyc
│ │ │ │ │ ├── hresult.cpython-38.pyc
│ │ │ │ │ ├── logutil.cpython-38.pyc
│ │ │ │ │ ├── messageloop.cpython-38.pyc
│ │ │ │ │ ├── npsupport.cpython-38.pyc
│ │ │ │ │ ├── patcher.cpython-38.pyc
│ │ │ │ │ ├── persist.cpython-38.pyc
│ │ │ │ │ ├── safearray.cpython-38.pyc
│ │ │ │ │ ├── shelllink.cpython-38.pyc
│ │ │ │ │ ├── typeinfo.cpython-38.pyc
│ │ │ │ │ ├── util.cpython-38.pyc
│ │ │ │ │ └── viewobject.cpython-38.pyc
│ │ │ │ ├── _comobject.py
│ │ │ │ ├── _meta.py
│ │ │ │ ├── _safearray.py
│ │ │ │ ├── automation.py
│ │ │ │ ├── client
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── _code_cache.cpython-38.pyc
│ │ │ │ │ │ ├── _events.cpython-38.pyc
│ │ │ │ │ │ ├── _generate.cpython-38.pyc
│ │ │ │ │ │ ├── dynamic.cpython-38.pyc
│ │ │ │ │ │ └── lazybind.cpython-38.pyc
│ │ │ │ │ ├── _code_cache.py
│ │ │ │ │ ├── _events.py
│ │ │ │ │ ├── _generate.py
│ │ │ │ │ ├── dynamic.py
│ │ │ │ │ └── lazybind.py
│ │ │ │ ├── connectionpoints.py
│ │ │ │ ├── errorinfo.py
│ │ │ │ ├── gen
│ │ │ │ │ ├── AXDBLib.py
│ │ │ │ │ ├── AutoCAD.py
│ │ │ │ │ ├── _00020430_0000_0000_C000_000000000046_0_2_0.py
│ │ │ │ │ ├── _E072BCE4_9027_4F86_BAE2_EF119FD0A0D3_0_1_0.py
│ │ │ │ │ ├── _FFC2A8DB_A497_4087_941C_C5B5462237EA_0_1_0.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── AXDBLib.cpython-38.pyc
│ │ │ │ │ │ ├── AutoCAD.cpython-38.pyc
│ │ │ │ │ │ ├── _00020430_0000_0000_C000_000000000046_0_2_0.cpython-38.pyc
│ │ │ │ │ │ ├── _E072BCE4_9027_4F86_BAE2_EF119FD0A0D3_0_1_0.cpython-38.pyc
│ │ │ │ │ │ ├── _FFC2A8DB_A497_4087_941C_C5B5462237EA_0_1_0.cpython-38.pyc
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ └── stdole.cpython-38.pyc
│ │ │ │ │ └── stdole.py
│ │ │ │ ├── git.py
│ │ │ │ ├── hresult.py
│ │ │ │ ├── logutil.py
│ │ │ │ ├── messageloop.py
│ │ │ │ ├── npsupport.py
│ │ │ │ ├── patcher.py
│ │ │ │ ├── persist.py
│ │ │ │ ├── safearray.py
│ │ │ │ ├── server
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── automation.cpython-38.pyc
│ │ │ │ │ │ ├── connectionpoints.cpython-38.pyc
│ │ │ │ │ │ ├── inprocserver.cpython-38.pyc
│ │ │ │ │ │ ├── localserver.cpython-38.pyc
│ │ │ │ │ │ ├── register.cpython-38.pyc
│ │ │ │ │ │ └── w_getopt.cpython-38.pyc
│ │ │ │ │ ├── automation.py
│ │ │ │ │ ├── connectionpoints.py
│ │ │ │ │ ├── inprocserver.py
│ │ │ │ │ ├── localserver.py
│ │ │ │ │ ├── register.py
│ │ │ │ │ └── w_getopt.py
│ │ │ │ ├── shelllink.py
│ │ │ │ ├── test
│ │ │ │ │ ├── TestComServer.idl
│ │ │ │ │ ├── TestComServer.py
│ │ │ │ │ ├── TestComServer.tlb
│ │ │ │ │ ├── TestDispServer.idl
│ │ │ │ │ ├── TestDispServer.py
│ │ │ │ │ ├── TestDispServer.tlb
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── TestComServer.cpython-38.pyc
│ │ │ │ │ │ ├── TestDispServer.cpython-38.pyc
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── find_memleak.cpython-38.pyc
│ │ │ │ │ │ ├── runtests.cpython-38.pyc
│ │ │ │ │ │ ├── setup.cpython-38.pyc
│ │ │ │ │ │ ├── test_BSTR.cpython-38.pyc
│ │ │ │ │ │ ├── test_DISPPARAMS.cpython-38.pyc
│ │ │ │ │ │ ├── test_GUID.cpython-38.pyc
│ │ │ │ │ │ ├── test_QueryService.cpython-38.pyc
│ │ │ │ │ │ ├── test_agilent.cpython-38.pyc
│ │ │ │ │ │ ├── test_avmc.cpython-38.pyc
│ │ │ │ │ │ ├── test_basic.cpython-38.pyc
│ │ │ │ │ │ ├── test_casesensitivity.cpython-38.pyc
│ │ │ │ │ │ ├── test_client.cpython-38.pyc
│ │ │ │ │ │ ├── test_collections.cpython-38.pyc
│ │ │ │ │ │ ├── test_comserver.cpython-38.pyc
│ │ │ │ │ │ ├── test_createwrappers.cpython-38.pyc
│ │ │ │ │ │ ├── test_dict.cpython-38.pyc
│ │ │ │ │ │ ├── test_dispinterface.cpython-38.pyc
│ │ │ │ │ │ ├── test_dyndispatch.cpython-38.pyc
│ │ │ │ │ │ ├── test_excel.cpython-38.pyc
│ │ │ │ │ │ ├── test_findgendir.cpython-38.pyc
│ │ │ │ │ │ ├── test_getactiveobj.cpython-38.pyc
│ │ │ │ │ │ ├── test_ie.cpython-38.pyc
│ │ │ │ │ │ ├── test_msscript.cpython-38.pyc
│ │ │ │ │ │ ├── test_outparam.cpython-38.pyc
│ │ │ │ │ │ ├── test_propputref.cpython-38.pyc
│ │ │ │ │ │ ├── test_pump_events.cpython-38.pyc
│ │ │ │ │ │ ├── test_safearray.cpython-38.pyc
│ │ │ │ │ │ ├── test_sapi.cpython-38.pyc
│ │ │ │ │ │ ├── test_server.cpython-38.pyc
│ │ │ │ │ │ ├── test_showevents.cpython-38.pyc
│ │ │ │ │ │ ├── test_subinterface.cpython-38.pyc
│ │ │ │ │ │ ├── test_typeinfo.cpython-38.pyc
│ │ │ │ │ │ ├── test_urlhistory.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32com_interop.cpython-38.pyc
│ │ │ │ │ │ ├── test_wmi.cpython-38.pyc
│ │ │ │ │ │ └── test_word.cpython-38.pyc
│ │ │ │ │ ├── find_memleak.py
│ │ │ │ │ ├── mylib.idl
│ │ │ │ │ ├── mytypelib.idl
│ │ │ │ │ ├── runtests.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ ├── test_BSTR.py
│ │ │ │ │ ├── test_DISPPARAMS.py
│ │ │ │ │ ├── test_GUID.py
│ │ │ │ │ ├── test_QueryService.py
│ │ │ │ │ ├── test_agilent.py
│ │ │ │ │ ├── test_avmc.py
│ │ │ │ │ ├── test_basic.py
│ │ │ │ │ ├── test_casesensitivity.py
│ │ │ │ │ ├── test_client.py
│ │ │ │ │ ├── test_collections.py
│ │ │ │ │ ├── test_comserver.py
│ │ │ │ │ ├── test_createwrappers.py
│ │ │ │ │ ├── test_dict.py
│ │ │ │ │ ├── test_dispinterface.py
│ │ │ │ │ ├── test_dyndispatch.py
│ │ │ │ │ ├── test_excel.py
│ │ │ │ │ ├── test_findgendir.py
│ │ │ │ │ ├── test_getactiveobj.py
│ │ │ │ │ ├── test_ie.py
│ │ │ │ │ ├── test_jscript.js
│ │ │ │ │ ├── test_msscript.py
│ │ │ │ │ ├── test_outparam.py
│ │ │ │ │ ├── test_propputref.py
│ │ │ │ │ ├── test_pump_events.py
│ │ │ │ │ ├── test_safearray.py
│ │ │ │ │ ├── test_sapi.py
│ │ │ │ │ ├── test_server.py
│ │ │ │ │ ├── test_showevents.py
│ │ │ │ │ ├── test_subinterface.py
│ │ │ │ │ ├── test_typeinfo.py
│ │ │ │ │ ├── test_urlhistory.py
│ │ │ │ │ ├── test_variant.py
│ │ │ │ │ ├── test_win32com_interop.py
│ │ │ │ │ ├── test_wmi.py
│ │ │ │ │ └── test_word.py
│ │ │ │ ├── tools
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── codegenerator.cpython-38.pyc
│ │ │ │ │ │ ├── tlbparser.cpython-38.pyc
│ │ │ │ │ │ ├── typedesc.cpython-38.pyc
│ │ │ │ │ │ └── typedesc_base.cpython-38.pyc
│ │ │ │ │ ├── codegenerator.py
│ │ │ │ │ ├── tlbparser.py
│ │ │ │ │ ├── typedesc.py
│ │ │ │ │ └── typedesc_base.py
│ │ │ │ ├── typeinfo.py
│ │ │ │ ├── util.py
│ │ │ │ └── viewobject.py
│ │ │ ├── comtypes-1.1.11.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ └── top_level.txt
│ │ │ ├── distutils-precedence.pth
│ │ │ ├── isapi
│ │ │ │ ├── PyISAPI_loader.dll
│ │ │ │ ├── README.txt
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ ├── install.cpython-38.pyc
│ │ │ │ │ ├── isapicon.cpython-38.pyc
│ │ │ │ │ ├── simple.cpython-38.pyc
│ │ │ │ │ └── threaded_extension.cpython-38.pyc
│ │ │ │ ├── doc
│ │ │ │ │ └── isapi.html
│ │ │ │ ├── install.py
│ │ │ │ ├── isapicon.py
│ │ │ │ ├── samples
│ │ │ │ │ ├── README.txt
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── advanced.cpython-38.pyc
│ │ │ │ │ │ ├── redirector.cpython-38.pyc
│ │ │ │ │ │ ├── redirector_asynch.cpython-38.pyc
│ │ │ │ │ │ ├── redirector_with_filter.cpython-38.pyc
│ │ │ │ │ │ └── test.cpython-38.pyc
│ │ │ │ │ ├── advanced.py
│ │ │ │ │ ├── redirector.py
│ │ │ │ │ ├── redirector_asynch.py
│ │ │ │ │ ├── redirector_with_filter.py
│ │ │ │ │ └── test.py
│ │ │ │ ├── simple.py
│ │ │ │ ├── test
│ │ │ │ │ ├── README.txt
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ └── extension_simple.cpython-38.pyc
│ │ │ │ │ └── extension_simple.py
│ │ │ │ └── threaded_extension.py
│ │ │ ├── pip
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __main__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ ├── _internal
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── build_env.cpython-38.pyc
│ │ │ │ │ │ ├── cache.cpython-38.pyc
│ │ │ │ │ │ ├── configuration.cpython-38.pyc
│ │ │ │ │ │ ├── exceptions.cpython-38.pyc
│ │ │ │ │ │ ├── pyproject.cpython-38.pyc
│ │ │ │ │ │ ├── self_outdated_check.cpython-38.pyc
│ │ │ │ │ │ └── wheel_builder.cpython-38.pyc
│ │ │ │ │ ├── build_env.py
│ │ │ │ │ ├── cache.py
│ │ │ │ │ ├── cli
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── autocompletion.cpython-38.pyc
│ │ │ │ │ │ │ ├── base_command.cpython-38.pyc
│ │ │ │ │ │ │ ├── cmdoptions.cpython-38.pyc
│ │ │ │ │ │ │ ├── command_context.cpython-38.pyc
│ │ │ │ │ │ │ ├── main.cpython-38.pyc
│ │ │ │ │ │ │ ├── main_parser.cpython-38.pyc
│ │ │ │ │ │ │ ├── parser.cpython-38.pyc
│ │ │ │ │ │ │ ├── progress_bars.cpython-38.pyc
│ │ │ │ │ │ │ ├── req_command.cpython-38.pyc
│ │ │ │ │ │ │ ├── spinners.cpython-38.pyc
│ │ │ │ │ │ │ └── status_codes.cpython-38.pyc
│ │ │ │ │ │ ├── autocompletion.py
│ │ │ │ │ │ ├── base_command.py
│ │ │ │ │ │ ├── cmdoptions.py
│ │ │ │ │ │ ├── command_context.py
│ │ │ │ │ │ ├── main.py
│ │ │ │ │ │ ├── main_parser.py
│ │ │ │ │ │ ├── parser.py
│ │ │ │ │ │ ├── progress_bars.py
│ │ │ │ │ │ ├── req_command.py
│ │ │ │ │ │ ├── spinners.py
│ │ │ │ │ │ └── status_codes.py
│ │ │ │ │ ├── commands
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ └── install.cpython-38.pyc
│ │ │ │ │ │ ├── cache.py
│ │ │ │ │ │ ├── check.py
│ │ │ │ │ │ ├── completion.py
│ │ │ │ │ │ ├── configuration.py
│ │ │ │ │ │ ├── debug.py
│ │ │ │ │ │ ├── download.py
│ │ │ │ │ │ ├── freeze.py
│ │ │ │ │ │ ├── hash.py
│ │ │ │ │ │ ├── help.py
│ │ │ │ │ │ ├── install.py
│ │ │ │ │ │ ├── list.py
│ │ │ │ │ │ ├── search.py
│ │ │ │ │ │ ├── show.py
│ │ │ │ │ │ ├── uninstall.py
│ │ │ │ │ │ └── wheel.py
│ │ │ │ │ ├── configuration.py
│ │ │ │ │ ├── distributions
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── base.cpython-38.pyc
│ │ │ │ │ │ │ ├── installed.cpython-38.pyc
│ │ │ │ │ │ │ ├── sdist.cpython-38.pyc
│ │ │ │ │ │ │ └── wheel.cpython-38.pyc
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── installed.py
│ │ │ │ │ │ ├── sdist.py
│ │ │ │ │ │ └── wheel.py
│ │ │ │ │ ├── exceptions.py
│ │ │ │ │ ├── index
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── collector.cpython-38.pyc
│ │ │ │ │ │ │ ├── package_finder.cpython-38.pyc
│ │ │ │ │ │ │ └── sources.cpython-38.pyc
│ │ │ │ │ │ ├── collector.py
│ │ │ │ │ │ ├── package_finder.py
│ │ │ │ │ │ └── sources.py
│ │ │ │ │ ├── locations
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── _distutils.cpython-38.pyc
│ │ │ │ │ │ │ ├── _sysconfig.cpython-38.pyc
│ │ │ │ │ │ │ └── base.cpython-38.pyc
│ │ │ │ │ │ ├── _distutils.py
│ │ │ │ │ │ ├── _sysconfig.py
│ │ │ │ │ │ └── base.py
│ │ │ │ │ ├── main.py
│ │ │ │ │ ├── metadata
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── base.cpython-38.pyc
│ │ │ │ │ │ │ └── pkg_resources.cpython-38.pyc
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ └── pkg_resources.py
│ │ │ │ │ ├── models
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── candidate.cpython-38.pyc
│ │ │ │ │ │ │ ├── direct_url.cpython-38.pyc
│ │ │ │ │ │ │ ├── format_control.cpython-38.pyc
│ │ │ │ │ │ │ ├── index.cpython-38.pyc
│ │ │ │ │ │ │ ├── link.cpython-38.pyc
│ │ │ │ │ │ │ ├── scheme.cpython-38.pyc
│ │ │ │ │ │ │ ├── search_scope.cpython-38.pyc
│ │ │ │ │ │ │ ├── selection_prefs.cpython-38.pyc
│ │ │ │ │ │ │ ├── target_python.cpython-38.pyc
│ │ │ │ │ │ │ └── wheel.cpython-38.pyc
│ │ │ │ │ │ ├── candidate.py
│ │ │ │ │ │ ├── direct_url.py
│ │ │ │ │ │ ├── format_control.py
│ │ │ │ │ │ ├── index.py
│ │ │ │ │ │ ├── link.py
│ │ │ │ │ │ ├── scheme.py
│ │ │ │ │ │ ├── search_scope.py
│ │ │ │ │ │ ├── selection_prefs.py
│ │ │ │ │ │ ├── target_python.py
│ │ │ │ │ │ └── wheel.py
│ │ │ │ │ ├── network
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── auth.cpython-38.pyc
│ │ │ │ │ │ │ ├── cache.cpython-38.pyc
│ │ │ │ │ │ │ ├── download.cpython-38.pyc
│ │ │ │ │ │ │ ├── lazy_wheel.cpython-38.pyc
│ │ │ │ │ │ │ ├── session.cpython-38.pyc
│ │ │ │ │ │ │ └── utils.cpython-38.pyc
│ │ │ │ │ │ ├── auth.py
│ │ │ │ │ │ ├── cache.py
│ │ │ │ │ │ ├── download.py
│ │ │ │ │ │ ├── lazy_wheel.py
│ │ │ │ │ │ ├── session.py
│ │ │ │ │ │ ├── utils.py
│ │ │ │ │ │ └── xmlrpc.py
│ │ │ │ │ ├── operations
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── check.cpython-38.pyc
│ │ │ │ │ │ │ └── prepare.cpython-38.pyc
│ │ │ │ │ │ ├── build
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── metadata.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── metadata_legacy.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── wheel.cpython-38.pyc
│ │ │ │ │ │ │ │ └── wheel_legacy.cpython-38.pyc
│ │ │ │ │ │ │ ├── metadata.py
│ │ │ │ │ │ │ ├── metadata_legacy.py
│ │ │ │ │ │ │ ├── wheel.py
│ │ │ │ │ │ │ └── wheel_legacy.py
│ │ │ │ │ │ ├── check.py
│ │ │ │ │ │ ├── freeze.py
│ │ │ │ │ │ ├── install
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── editable_legacy.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── legacy.cpython-38.pyc
│ │ │ │ │ │ │ │ └── wheel.cpython-38.pyc
│ │ │ │ │ │ │ ├── editable_legacy.py
│ │ │ │ │ │ │ ├── legacy.py
│ │ │ │ │ │ │ └── wheel.py
│ │ │ │ │ │ └── prepare.py
│ │ │ │ │ ├── pyproject.py
│ │ │ │ │ ├── req
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── constructors.cpython-38.pyc
│ │ │ │ │ │ │ ├── req_file.cpython-38.pyc
│ │ │ │ │ │ │ ├── req_install.cpython-38.pyc
│ │ │ │ │ │ │ ├── req_set.cpython-38.pyc
│ │ │ │ │ │ │ ├── req_tracker.cpython-38.pyc
│ │ │ │ │ │ │ └── req_uninstall.cpython-38.pyc
│ │ │ │ │ │ ├── constructors.py
│ │ │ │ │ │ ├── req_file.py
│ │ │ │ │ │ ├── req_install.py
│ │ │ │ │ │ ├── req_set.py
│ │ │ │ │ │ ├── req_tracker.py
│ │ │ │ │ │ └── req_uninstall.py
│ │ │ │ │ ├── resolution
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ └── base.cpython-38.pyc
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── legacy
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ └── resolver.py
│ │ │ │ │ │ └── resolvelib
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── base.cpython-38.pyc
│ │ │ │ │ │ │ ├── candidates.cpython-38.pyc
│ │ │ │ │ │ │ ├── factory.cpython-38.pyc
│ │ │ │ │ │ │ ├── found_candidates.cpython-38.pyc
│ │ │ │ │ │ │ ├── provider.cpython-38.pyc
│ │ │ │ │ │ │ ├── reporter.cpython-38.pyc
│ │ │ │ │ │ │ ├── requirements.cpython-38.pyc
│ │ │ │ │ │ │ └── resolver.cpython-38.pyc
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── candidates.py
│ │ │ │ │ │ ├── factory.py
│ │ │ │ │ │ ├── found_candidates.py
│ │ │ │ │ │ ├── provider.py
│ │ │ │ │ │ ├── reporter.py
│ │ │ │ │ │ ├── requirements.py
│ │ │ │ │ │ └── resolver.py
│ │ │ │ │ ├── self_outdated_check.py
│ │ │ │ │ ├── utils
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── appdirs.cpython-38.pyc
│ │ │ │ │ │ │ ├── compat.cpython-38.pyc
│ │ │ │ │ │ │ ├── compatibility_tags.cpython-38.pyc
│ │ │ │ │ │ │ ├── deprecation.cpython-38.pyc
│ │ │ │ │ │ │ ├── direct_url_helpers.cpython-38.pyc
│ │ │ │ │ │ │ ├── distutils_args.cpython-38.pyc
│ │ │ │ │ │ │ ├── encoding.cpython-38.pyc
│ │ │ │ │ │ │ ├── filesystem.cpython-38.pyc
│ │ │ │ │ │ │ ├── filetypes.cpython-38.pyc
│ │ │ │ │ │ │ ├── glibc.cpython-38.pyc
│ │ │ │ │ │ │ ├── hashes.cpython-38.pyc
│ │ │ │ │ │ │ ├── inject_securetransport.cpython-38.pyc
│ │ │ │ │ │ │ ├── logging.cpython-38.pyc
│ │ │ │ │ │ │ ├── misc.cpython-38.pyc
│ │ │ │ │ │ │ ├── models.cpython-38.pyc
│ │ │ │ │ │ │ ├── packaging.cpython-38.pyc
│ │ │ │ │ │ │ ├── pkg_resources.cpython-38.pyc
│ │ │ │ │ │ │ ├── setuptools_build.cpython-38.pyc
│ │ │ │ │ │ │ ├── subprocess.cpython-38.pyc
│ │ │ │ │ │ │ ├── temp_dir.cpython-38.pyc
│ │ │ │ │ │ │ ├── unpacking.cpython-38.pyc
│ │ │ │ │ │ │ ├── urls.cpython-38.pyc
│ │ │ │ │ │ │ ├── virtualenv.cpython-38.pyc
│ │ │ │ │ │ │ └── wheel.cpython-38.pyc
│ │ │ │ │ │ ├── appdirs.py
│ │ │ │ │ │ ├── compat.py
│ │ │ │ │ │ ├── compatibility_tags.py
│ │ │ │ │ │ ├── datetime.py
│ │ │ │ │ │ ├── deprecation.py
│ │ │ │ │ │ ├── direct_url_helpers.py
│ │ │ │ │ │ ├── distutils_args.py
│ │ │ │ │ │ ├── encoding.py
│ │ │ │ │ │ ├── entrypoints.py
│ │ │ │ │ │ ├── filesystem.py
│ │ │ │ │ │ ├── filetypes.py
│ │ │ │ │ │ ├── glibc.py
│ │ │ │ │ │ ├── hashes.py
│ │ │ │ │ │ ├── inject_securetransport.py
│ │ │ │ │ │ ├── logging.py
│ │ │ │ │ │ ├── misc.py
│ │ │ │ │ │ ├── models.py
│ │ │ │ │ │ ├── packaging.py
│ │ │ │ │ │ ├── parallel.py
│ │ │ │ │ │ ├── pkg_resources.py
│ │ │ │ │ │ ├── setuptools_build.py
│ │ │ │ │ │ ├── subprocess.py
│ │ │ │ │ │ ├── temp_dir.py
│ │ │ │ │ │ ├── unpacking.py
│ │ │ │ │ │ ├── urls.py
│ │ │ │ │ │ ├── virtualenv.py
│ │ │ │ │ │ └── wheel.py
│ │ │ │ │ ├── vcs
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── bazaar.cpython-38.pyc
│ │ │ │ │ │ │ ├── git.cpython-38.pyc
│ │ │ │ │ │ │ ├── mercurial.cpython-38.pyc
│ │ │ │ │ │ │ ├── subversion.cpython-38.pyc
│ │ │ │ │ │ │ └── versioncontrol.cpython-38.pyc
│ │ │ │ │ │ ├── bazaar.py
│ │ │ │ │ │ ├── git.py
│ │ │ │ │ │ ├── mercurial.py
│ │ │ │ │ │ ├── subversion.py
│ │ │ │ │ │ └── versioncontrol.py
│ │ │ │ │ └── wheel_builder.py
│ │ │ │ ├── _vendor
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── appdirs.cpython-38.pyc
│ │ │ │ │ │ ├── pyparsing.cpython-38.pyc
│ │ │ │ │ │ └── six.cpython-38.pyc
│ │ │ │ │ ├── appdirs.py
│ │ │ │ │ ├── cachecontrol
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── adapter.cpython-38.pyc
│ │ │ │ │ │ │ ├── cache.cpython-38.pyc
│ │ │ │ │ │ │ ├── compat.cpython-38.pyc
│ │ │ │ │ │ │ ├── controller.cpython-38.pyc
│ │ │ │ │ │ │ ├── filewrapper.cpython-38.pyc
│ │ │ │ │ │ │ ├── serialize.cpython-38.pyc
│ │ │ │ │ │ │ └── wrapper.cpython-38.pyc
│ │ │ │ │ │ ├── _cmd.py
│ │ │ │ │ │ ├── adapter.py
│ │ │ │ │ │ ├── cache.py
│ │ │ │ │ │ ├── caches
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── file_cache.cpython-38.pyc
│ │ │ │ │ │ │ │ └── redis_cache.cpython-38.pyc
│ │ │ │ │ │ │ ├── file_cache.py
│ │ │ │ │ │ │ └── redis_cache.py
│ │ │ │ │ │ ├── compat.py
│ │ │ │ │ │ ├── controller.py
│ │ │ │ │ │ ├── filewrapper.py
│ │ │ │ │ │ ├── heuristics.py
│ │ │ │ │ │ ├── serialize.py
│ │ │ │ │ │ └── wrapper.py
│ │ │ │ │ ├── certifi
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __main__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ └── core.cpython-38.pyc
│ │ │ │ │ │ ├── cacert.pem
│ │ │ │ │ │ └── core.py
│ │ │ │ │ ├── chardet
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── big5freq.cpython-38.pyc
│ │ │ │ │ │ │ ├── big5prober.cpython-38.pyc
│ │ │ │ │ │ │ ├── chardistribution.cpython-38.pyc
│ │ │ │ │ │ │ ├── charsetgroupprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── charsetprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── codingstatemachine.cpython-38.pyc
│ │ │ │ │ │ │ ├── cp949prober.cpython-38.pyc
│ │ │ │ │ │ │ ├── enums.cpython-38.pyc
│ │ │ │ │ │ │ ├── escprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── escsm.cpython-38.pyc
│ │ │ │ │ │ │ ├── eucjpprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── euckrfreq.cpython-38.pyc
│ │ │ │ │ │ │ ├── euckrprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── euctwfreq.cpython-38.pyc
│ │ │ │ │ │ │ ├── euctwprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── gb2312freq.cpython-38.pyc
│ │ │ │ │ │ │ ├── gb2312prober.cpython-38.pyc
│ │ │ │ │ │ │ ├── hebrewprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── jisfreq.cpython-38.pyc
│ │ │ │ │ │ │ ├── jpcntx.cpython-38.pyc
│ │ │ │ │ │ │ ├── langbulgarianmodel.cpython-38.pyc
│ │ │ │ │ │ │ ├── langgreekmodel.cpython-38.pyc
│ │ │ │ │ │ │ ├── langhebrewmodel.cpython-38.pyc
│ │ │ │ │ │ │ ├── langrussianmodel.cpython-38.pyc
│ │ │ │ │ │ │ ├── langthaimodel.cpython-38.pyc
│ │ │ │ │ │ │ ├── langturkishmodel.cpython-38.pyc
│ │ │ │ │ │ │ ├── latin1prober.cpython-38.pyc
│ │ │ │ │ │ │ ├── mbcharsetprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── mbcsgroupprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── mbcssm.cpython-38.pyc
│ │ │ │ │ │ │ ├── sbcharsetprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── sbcsgroupprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── sjisprober.cpython-38.pyc
│ │ │ │ │ │ │ ├── universaldetector.cpython-38.pyc
│ │ │ │ │ │ │ ├── utf8prober.cpython-38.pyc
│ │ │ │ │ │ │ └── version.cpython-38.pyc
│ │ │ │ │ │ ├── big5freq.py
│ │ │ │ │ │ ├── big5prober.py
│ │ │ │ │ │ ├── chardistribution.py
│ │ │ │ │ │ ├── charsetgroupprober.py
│ │ │ │ │ │ ├── charsetprober.py
│ │ │ │ │ │ ├── cli
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ └── chardetect.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
│ │ │ │ │ │ ├── jisfreq.py
│ │ │ │ │ │ ├── jpcntx.py
│ │ │ │ │ │ ├── langbulgarianmodel.py
│ │ │ │ │ │ ├── langgreekmodel.py
│ │ │ │ │ │ ├── langhebrewmodel.py
│ │ │ │ │ │ ├── langhungarianmodel.py
│ │ │ │ │ │ ├── langrussianmodel.py
│ │ │ │ │ │ ├── langthaimodel.py
│ │ │ │ │ │ ├── langturkishmodel.py
│ │ │ │ │ │ ├── latin1prober.py
│ │ │ │ │ │ ├── mbcharsetprober.py
│ │ │ │ │ │ ├── mbcsgroupprober.py
│ │ │ │ │ │ ├── mbcssm.py
│ │ │ │ │ │ ├── metadata
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ └── languages.py
│ │ │ │ │ │ ├── sbcharsetprober.py
│ │ │ │ │ │ ├── sbcsgroupprober.py
│ │ │ │ │ │ ├── sjisprober.py
│ │ │ │ │ │ ├── universaldetector.py
│ │ │ │ │ │ ├── utf8prober.py
│ │ │ │ │ │ └── version.py
│ │ │ │ │ ├── colorama
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── ansi.cpython-38.pyc
│ │ │ │ │ │ │ ├── ansitowin32.cpython-38.pyc
│ │ │ │ │ │ │ ├── initialise.cpython-38.pyc
│ │ │ │ │ │ │ ├── win32.cpython-38.pyc
│ │ │ │ │ │ │ └── winterm.cpython-38.pyc
│ │ │ │ │ │ ├── ansi.py
│ │ │ │ │ │ ├── ansitowin32.py
│ │ │ │ │ │ ├── initialise.py
│ │ │ │ │ │ ├── win32.py
│ │ │ │ │ │ └── winterm.py
│ │ │ │ │ ├── distlib
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── compat.cpython-38.pyc
│ │ │ │ │ │ │ ├── resources.cpython-38.pyc
│ │ │ │ │ │ │ ├── scripts.cpython-38.pyc
│ │ │ │ │ │ │ └── util.cpython-38.pyc
│ │ │ │ │ │ ├── _backport
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── misc.py
│ │ │ │ │ │ │ ├── shutil.py
│ │ │ │ │ │ │ ├── sysconfig.cfg
│ │ │ │ │ │ │ ├── sysconfig.py
│ │ │ │ │ │ │ └── tarfile.py
│ │ │ │ │ │ ├── compat.py
│ │ │ │ │ │ ├── database.py
│ │ │ │ │ │ ├── index.py
│ │ │ │ │ │ ├── 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.py
│ │ │ │ │ ├── html5lib
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── _inputstream.cpython-38.pyc
│ │ │ │ │ │ │ ├── _tokenizer.cpython-38.pyc
│ │ │ │ │ │ │ ├── _utils.cpython-38.pyc
│ │ │ │ │ │ │ ├── constants.cpython-38.pyc
│ │ │ │ │ │ │ ├── html5parser.cpython-38.pyc
│ │ │ │ │ │ │ └── serializer.cpython-38.pyc
│ │ │ │ │ │ ├── _ihatexml.py
│ │ │ │ │ │ ├── _inputstream.py
│ │ │ │ │ │ ├── _tokenizer.py
│ │ │ │ │ │ ├── _trie
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── _base.cpython-38.pyc
│ │ │ │ │ │ │ │ └── py.cpython-38.pyc
│ │ │ │ │ │ │ ├── _base.py
│ │ │ │ │ │ │ └── py.py
│ │ │ │ │ │ ├── _utils.py
│ │ │ │ │ │ ├── constants.py
│ │ │ │ │ │ ├── filters
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── alphabeticalattributes.py
│ │ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ │ ├── inject_meta_charset.py
│ │ │ │ │ │ │ ├── lint.py
│ │ │ │ │ │ │ ├── optionaltags.py
│ │ │ │ │ │ │ ├── sanitizer.py
│ │ │ │ │ │ │ └── whitespace.py
│ │ │ │ │ │ ├── html5parser.py
│ │ │ │ │ │ ├── serializer.py
│ │ │ │ │ │ ├── treeadapters
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── genshi.py
│ │ │ │ │ │ │ └── sax.py
│ │ │ │ │ │ ├── treebuilders
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ └── base.cpython-38.pyc
│ │ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ │ ├── dom.py
│ │ │ │ │ │ │ ├── etree.py
│ │ │ │ │ │ │ └── etree_lxml.py
│ │ │ │ │ │ └── treewalkers
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── dom.py
│ │ │ │ │ │ ├── etree.py
│ │ │ │ │ │ ├── etree_lxml.py
│ │ │ │ │ │ └── genshi.py
│ │ │ │ │ ├── idna
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── core.cpython-38.pyc
│ │ │ │ │ │ │ ├── idnadata.cpython-38.pyc
│ │ │ │ │ │ │ ├── intranges.cpython-38.pyc
│ │ │ │ │ │ │ └── package_data.cpython-38.pyc
│ │ │ │ │ │ ├── codec.py
│ │ │ │ │ │ ├── compat.py
│ │ │ │ │ │ ├── core.py
│ │ │ │ │ │ ├── idnadata.py
│ │ │ │ │ │ ├── intranges.py
│ │ │ │ │ │ ├── package_data.py
│ │ │ │ │ │ └── uts46data.py
│ │ │ │ │ ├── msgpack
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── _version.cpython-38.pyc
│ │ │ │ │ │ │ ├── exceptions.cpython-38.pyc
│ │ │ │ │ │ │ ├── ext.cpython-38.pyc
│ │ │ │ │ │ │ └── fallback.cpython-38.pyc
│ │ │ │ │ │ ├── _version.py
│ │ │ │ │ │ ├── exceptions.py
│ │ │ │ │ │ ├── ext.py
│ │ │ │ │ │ └── fallback.py
│ │ │ │ │ ├── packaging
│ │ │ │ │ │ ├── __about__.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __about__.cpython-38.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── _compat.cpython-38.pyc
│ │ │ │ │ │ │ ├── _structures.cpython-38.pyc
│ │ │ │ │ │ │ ├── _typing.cpython-38.pyc
│ │ │ │ │ │ │ ├── markers.cpython-38.pyc
│ │ │ │ │ │ │ ├── requirements.cpython-38.pyc
│ │ │ │ │ │ │ ├── specifiers.cpython-38.pyc
│ │ │ │ │ │ │ ├── tags.cpython-38.pyc
│ │ │ │ │ │ │ ├── utils.cpython-38.pyc
│ │ │ │ │ │ │ └── version.cpython-38.pyc
│ │ │ │ │ │ ├── _compat.py
│ │ │ │ │ │ ├── _structures.py
│ │ │ │ │ │ ├── _typing.py
│ │ │ │ │ │ ├── markers.py
│ │ │ │ │ │ ├── requirements.py
│ │ │ │ │ │ ├── specifiers.py
│ │ │ │ │ │ ├── tags.py
│ │ │ │ │ │ ├── utils.py
│ │ │ │ │ │ └── version.py
│ │ │ │ │ ├── pep517
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── compat.cpython-38.pyc
│ │ │ │ │ │ │ └── wrappers.cpython-38.pyc
│ │ │ │ │ │ ├── build.py
│ │ │ │ │ │ ├── check.py
│ │ │ │ │ │ ├── colorlog.py
│ │ │ │ │ │ ├── compat.py
│ │ │ │ │ │ ├── dirtools.py
│ │ │ │ │ │ ├── envbuild.py
│ │ │ │ │ │ ├── in_process
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ │ │ │ └── _in_process.py
│ │ │ │ │ │ ├── meta.py
│ │ │ │ │ │ └── wrappers.py
│ │ │ │ │ ├── pkg_resources
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ └── py31compat.cpython-38.pyc
│ │ │ │ │ │ └── py31compat.py
│ │ │ │ │ ├── progress
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── bar.cpython-38.pyc
│ │ │ │ │ │ │ └── spinner.cpython-38.pyc
│ │ │ │ │ │ ├── bar.py
│ │ │ │ │ │ ├── counter.py
│ │ │ │ │ │ └── spinner.py
│ │ │ │ │ ├── pyparsing.py
│ │ │ │ │ ├── requests
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── __version__.cpython-38.pyc
│ │ │ │ │ │ │ ├── _internal_utils.cpython-38.pyc
│ │ │ │ │ │ │ ├── adapters.cpython-38.pyc
│ │ │ │ │ │ │ ├── api.cpython-38.pyc
│ │ │ │ │ │ │ ├── auth.cpython-38.pyc
│ │ │ │ │ │ │ ├── certs.cpython-38.pyc
│ │ │ │ │ │ │ ├── compat.cpython-38.pyc
│ │ │ │ │ │ │ ├── cookies.cpython-38.pyc
│ │ │ │ │ │ │ ├── exceptions.cpython-38.pyc
│ │ │ │ │ │ │ ├── hooks.cpython-38.pyc
│ │ │ │ │ │ │ ├── models.cpython-38.pyc
│ │ │ │ │ │ │ ├── packages.cpython-38.pyc
│ │ │ │ │ │ │ ├── sessions.cpython-38.pyc
│ │ │ │ │ │ │ ├── status_codes.cpython-38.pyc
│ │ │ │ │ │ │ ├── structures.cpython-38.pyc
│ │ │ │ │ │ │ └── utils.cpython-38.pyc
│ │ │ │ │ │ ├── __version__.py
│ │ │ │ │ │ ├── _internal_utils.py
│ │ │ │ │ │ ├── adapters.py
│ │ │ │ │ │ ├── api.py
│ │ │ │ │ │ ├── auth.py
│ │ │ │ │ │ ├── certs.py
│ │ │ │ │ │ ├── compat.py
│ │ │ │ │ │ ├── cookies.py
│ │ │ │ │ │ ├── exceptions.py
│ │ │ │ │ │ ├── help.py
│ │ │ │ │ │ ├── hooks.py
│ │ │ │ │ │ ├── models.py
│ │ │ │ │ │ ├── packages.py
│ │ │ │ │ │ ├── sessions.py
│ │ │ │ │ │ ├── status_codes.py
│ │ │ │ │ │ ├── structures.py
│ │ │ │ │ │ └── utils.py
│ │ │ │ │ ├── resolvelib
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── providers.cpython-38.pyc
│ │ │ │ │ │ │ ├── reporters.cpython-38.pyc
│ │ │ │ │ │ │ ├── resolvers.cpython-38.pyc
│ │ │ │ │ │ │ └── structs.cpython-38.pyc
│ │ │ │ │ │ ├── compat
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ └── collections_abc.cpython-38.pyc
│ │ │ │ │ │ │ └── collections_abc.py
│ │ │ │ │ │ ├── providers.py
│ │ │ │ │ │ ├── reporters.py
│ │ │ │ │ │ ├── resolvers.py
│ │ │ │ │ │ └── structs.py
│ │ │ │ │ ├── six.py
│ │ │ │ │ ├── tenacity
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── _asyncio.cpython-38.pyc
│ │ │ │ │ │ │ ├── _utils.cpython-38.pyc
│ │ │ │ │ │ │ ├── after.cpython-38.pyc
│ │ │ │ │ │ │ ├── before.cpython-38.pyc
│ │ │ │ │ │ │ ├── before_sleep.cpython-38.pyc
│ │ │ │ │ │ │ ├── compat.cpython-38.pyc
│ │ │ │ │ │ │ ├── nap.cpython-38.pyc
│ │ │ │ │ │ │ ├── retry.cpython-38.pyc
│ │ │ │ │ │ │ ├── stop.cpython-38.pyc
│ │ │ │ │ │ │ └── wait.cpython-38.pyc
│ │ │ │ │ │ ├── _asyncio.py
│ │ │ │ │ │ ├── _utils.py
│ │ │ │ │ │ ├── after.py
│ │ │ │ │ │ ├── before.py
│ │ │ │ │ │ ├── before_sleep.py
│ │ │ │ │ │ ├── compat.py
│ │ │ │ │ │ ├── nap.py
│ │ │ │ │ │ ├── retry.py
│ │ │ │ │ │ ├── stop.py
│ │ │ │ │ │ ├── tornadoweb.py
│ │ │ │ │ │ └── wait.py
│ │ │ │ │ ├── toml
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── decoder.cpython-38.pyc
│ │ │ │ │ │ │ ├── encoder.cpython-38.pyc
│ │ │ │ │ │ │ └── tz.cpython-38.pyc
│ │ │ │ │ │ ├── decoder.py
│ │ │ │ │ │ ├── encoder.py
│ │ │ │ │ │ ├── ordered.py
│ │ │ │ │ │ └── tz.py
│ │ │ │ │ ├── urllib3
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── _collections.cpython-38.pyc
│ │ │ │ │ │ │ ├── _version.cpython-38.pyc
│ │ │ │ │ │ │ ├── connection.cpython-38.pyc
│ │ │ │ │ │ │ ├── connectionpool.cpython-38.pyc
│ │ │ │ │ │ │ ├── exceptions.cpython-38.pyc
│ │ │ │ │ │ │ ├── fields.cpython-38.pyc
│ │ │ │ │ │ │ ├── filepost.cpython-38.pyc
│ │ │ │ │ │ │ ├── poolmanager.cpython-38.pyc
│ │ │ │ │ │ │ ├── request.cpython-38.pyc
│ │ │ │ │ │ │ └── response.cpython-38.pyc
│ │ │ │ │ │ ├── _collections.py
│ │ │ │ │ │ ├── _version.py
│ │ │ │ │ │ ├── connection.py
│ │ │ │ │ │ ├── connectionpool.py
│ │ │ │ │ │ ├── contrib
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── _appengine_environ.cpython-38.pyc
│ │ │ │ │ │ │ │ └── socks.cpython-38.pyc
│ │ │ │ │ │ │ ├── _appengine_environ.py
│ │ │ │ │ │ │ ├── _securetransport
│ │ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ │ ├── bindings.py
│ │ │ │ │ │ │ │ └── low_level.py
│ │ │ │ │ │ │ ├── appengine.py
│ │ │ │ │ │ │ ├── ntlmpool.py
│ │ │ │ │ │ │ ├── pyopenssl.py
│ │ │ │ │ │ │ ├── securetransport.py
│ │ │ │ │ │ │ └── socks.py
│ │ │ │ │ │ ├── exceptions.py
│ │ │ │ │ │ ├── fields.py
│ │ │ │ │ │ ├── filepost.py
│ │ │ │ │ │ ├── packages
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ └── six.cpython-38.pyc
│ │ │ │ │ │ │ ├── backports
│ │ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ │ └── makefile.py
│ │ │ │ │ │ │ ├── six.py
│ │ │ │ │ │ │ └── ssl_match_hostname
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ │ │ │ └── _implementation.py
│ │ │ │ │ │ ├── poolmanager.py
│ │ │ │ │ │ ├── request.py
│ │ │ │ │ │ ├── response.py
│ │ │ │ │ │ └── util
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── connection.cpython-38.pyc
│ │ │ │ │ │ │ ├── proxy.cpython-38.pyc
│ │ │ │ │ │ │ ├── queue.cpython-38.pyc
│ │ │ │ │ │ │ ├── request.cpython-38.pyc
│ │ │ │ │ │ │ ├── response.cpython-38.pyc
│ │ │ │ │ │ │ ├── retry.cpython-38.pyc
│ │ │ │ │ │ │ ├── ssl_.cpython-38.pyc
│ │ │ │ │ │ │ ├── ssltransport.cpython-38.pyc
│ │ │ │ │ │ │ ├── timeout.cpython-38.pyc
│ │ │ │ │ │ │ ├── url.cpython-38.pyc
│ │ │ │ │ │ │ └── wait.cpython-38.pyc
│ │ │ │ │ │ ├── connection.py
│ │ │ │ │ │ ├── proxy.py
│ │ │ │ │ │ ├── queue.py
│ │ │ │ │ │ ├── request.py
│ │ │ │ │ │ ├── response.py
│ │ │ │ │ │ ├── retry.py
│ │ │ │ │ │ ├── ssl_.py
│ │ │ │ │ │ ├── ssltransport.py
│ │ │ │ │ │ ├── timeout.py
│ │ │ │ │ │ ├── url.py
│ │ │ │ │ │ └── wait.py
│ │ │ │ │ ├── vendor.txt
│ │ │ │ │ └── webencodings
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ └── labels.cpython-38.pyc
│ │ │ │ │ ├── labels.py
│ │ │ │ │ ├── mklabels.py
│ │ │ │ │ ├── tests.py
│ │ │ │ │ └── x_user_defined.py
│ │ │ │ └── py.typed
│ │ │ ├── pip-21.1.2.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ ├── entry_points.txt
│ │ │ │ └── top_level.txt
│ │ │ ├── pip-21.1.2.virtualenv
│ │ │ ├── pkg_resources
│ │ │ │ ├── __init__.py
│ │ │ │ ├── _vendor
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── appdirs.py
│ │ │ │ │ ├── packaging
│ │ │ │ │ │ ├── __about__.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── _compat.py
│ │ │ │ │ │ ├── _structures.py
│ │ │ │ │ │ ├── _typing.py
│ │ │ │ │ │ ├── markers.py
│ │ │ │ │ │ ├── requirements.py
│ │ │ │ │ │ ├── specifiers.py
│ │ │ │ │ │ ├── tags.py
│ │ │ │ │ │ ├── utils.py
│ │ │ │ │ │ └── version.py
│ │ │ │ │ └── pyparsing.py
│ │ │ │ ├── extern
│ │ │ │ │ └── __init__.py
│ │ │ │ └── tests
│ │ │ │ └── data
│ │ │ │ └── my-test-package-source
│ │ │ │ └── setup.py
│ │ │ ├── pyautocad
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ ├── api.cpython-38.pyc
│ │ │ │ │ ├── cache.cpython-38.pyc
│ │ │ │ │ ├── compat.cpython-38.pyc
│ │ │ │ │ ├── types.cpython-38.pyc
│ │ │ │ │ └── utils.cpython-38.pyc
│ │ │ │ ├── api.py
│ │ │ │ ├── cache.py
│ │ │ │ ├── compat.py
│ │ │ │ ├── contrib
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ └── tables.cpython-38.pyc
│ │ │ │ │ └── tables.py
│ │ │ │ ├── types.py
│ │ │ │ └── utils.py
│ │ │ ├── pyautocad-0.2.0.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── REQUESTED
│ │ │ │ ├── WHEEL
│ │ │ │ └── top_level.txt
│ │ │ ├── pythoncom.py
│ │ │ ├── pythonwin
│ │ │ │ ├── Pythonwin.exe
│ │ │ │ ├── dde.pyd
│ │ │ │ ├── license.txt
│ │ │ │ ├── mfc140u.dll
│ │ │ │ ├── mfcm140u.dll
│ │ │ │ ├── pywin
│ │ │ │ │ ├── Demos
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── cmdserver.cpython-38.pyc
│ │ │ │ │ │ │ ├── createwin.cpython-38.pyc
│ │ │ │ │ │ │ ├── demoutils.cpython-38.pyc
│ │ │ │ │ │ │ ├── dibdemo.cpython-38.pyc
│ │ │ │ │ │ │ ├── dlgtest.cpython-38.pyc
│ │ │ │ │ │ │ ├── dyndlg.cpython-38.pyc
│ │ │ │ │ │ │ ├── fontdemo.cpython-38.pyc
│ │ │ │ │ │ │ ├── guidemo.cpython-38.pyc
│ │ │ │ │ │ │ ├── hiertest.cpython-38.pyc
│ │ │ │ │ │ │ ├── menutest.cpython-38.pyc
│ │ │ │ │ │ │ ├── objdoc.cpython-38.pyc
│ │ │ │ │ │ │ ├── openGLDemo.cpython-38.pyc
│ │ │ │ │ │ │ ├── progressbar.cpython-38.pyc
│ │ │ │ │ │ │ ├── sliderdemo.cpython-38.pyc
│ │ │ │ │ │ │ ├── splittst.cpython-38.pyc
│ │ │ │ │ │ │ ├── threadedgui.cpython-38.pyc
│ │ │ │ │ │ │ └── toolbar.cpython-38.pyc
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── basictimerapp.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── customprint.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── demoutils.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── dlgappdemo.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── dojobapp.cpython-38.pyc
│ │ │ │ │ │ │ │ └── helloapp.cpython-38.pyc
│ │ │ │ │ │ │ ├── basictimerapp.py
│ │ │ │ │ │ │ ├── customprint.py
│ │ │ │ │ │ │ ├── demoutils.py
│ │ │ │ │ │ │ ├── dlgappdemo.py
│ │ │ │ │ │ │ ├── dojobapp.py
│ │ │ │ │ │ │ └── helloapp.py
│ │ │ │ │ │ ├── cmdserver.py
│ │ │ │ │ │ ├── createwin.py
│ │ │ │ │ │ ├── demoutils.py
│ │ │ │ │ │ ├── dibdemo.py
│ │ │ │ │ │ ├── dlgtest.py
│ │ │ │ │ │ ├── dyndlg.py
│ │ │ │ │ │ ├── fontdemo.py
│ │ │ │ │ │ ├── guidemo.py
│ │ │ │ │ │ ├── hiertest.py
│ │ │ │ │ │ ├── menutest.py
│ │ │ │ │ │ ├── objdoc.py
│ │ │ │ │ │ ├── ocx
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── demoutils.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── flash.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── msoffice.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── ocxserialtest.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── ocxtest.cpython-38.pyc
│ │ │ │ │ │ │ │ └── webbrowser.cpython-38.pyc
│ │ │ │ │ │ │ ├── demoutils.py
│ │ │ │ │ │ │ ├── flash.py
│ │ │ │ │ │ │ ├── msoffice.py
│ │ │ │ │ │ │ ├── ocxserialtest.py
│ │ │ │ │ │ │ ├── ocxtest.py
│ │ │ │ │ │ │ └── webbrowser.py
│ │ │ │ │ │ ├── openGLDemo.py
│ │ │ │ │ │ ├── progressbar.py
│ │ │ │ │ │ ├── sliderdemo.py
│ │ │ │ │ │ ├── splittst.py
│ │ │ │ │ │ ├── threadedgui.py
│ │ │ │ │ │ └── toolbar.py
│ │ │ │ │ ├── IDLE.cfg
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ │ ├── debugger
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── configui.cpython-38.pyc
│ │ │ │ │ │ │ ├── dbgcon.cpython-38.pyc
│ │ │ │ │ │ │ ├── dbgpyapp.cpython-38.pyc
│ │ │ │ │ │ │ ├── debugger.cpython-38.pyc
│ │ │ │ │ │ │ └── fail.cpython-38.pyc
│ │ │ │ │ │ ├── configui.py
│ │ │ │ │ │ ├── dbgcon.py
│ │ │ │ │ │ ├── dbgpyapp.py
│ │ │ │ │ │ ├── debugger.py
│ │ │ │ │ │ └── fail.py
│ │ │ │ │ ├── default.cfg
│ │ │ │ │ ├── dialogs
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── ideoptions.cpython-38.pyc
│ │ │ │ │ │ │ ├── list.cpython-38.pyc
│ │ │ │ │ │ │ ├── login.cpython-38.pyc
│ │ │ │ │ │ │ └── status.cpython-38.pyc
│ │ │ │ │ │ ├── ideoptions.py
│ │ │ │ │ │ ├── list.py
│ │ │ │ │ │ ├── login.py
│ │ │ │ │ │ └── status.py
│ │ │ │ │ ├── docking
│ │ │ │ │ │ ├── DockingBar.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ └── __pycache__
│ │ │ │ │ │ ├── DockingBar.cpython-38.pyc
│ │ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ │ ├── framework
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── app.cpython-38.pyc
│ │ │ │ │ │ │ ├── bitmap.cpython-38.pyc
│ │ │ │ │ │ │ ├── cmdline.cpython-38.pyc
│ │ │ │ │ │ │ ├── dbgcommands.cpython-38.pyc
│ │ │ │ │ │ │ ├── dlgappcore.cpython-38.pyc
│ │ │ │ │ │ │ ├── help.cpython-38.pyc
│ │ │ │ │ │ │ ├── interact.cpython-38.pyc
│ │ │ │ │ │ │ ├── intpyapp.cpython-38.pyc
│ │ │ │ │ │ │ ├── intpydde.cpython-38.pyc
│ │ │ │ │ │ │ ├── mdi_pychecker.cpython-38.pyc
│ │ │ │ │ │ │ ├── scriptutils.cpython-38.pyc
│ │ │ │ │ │ │ ├── sgrepmdi.cpython-38.pyc
│ │ │ │ │ │ │ ├── startup.cpython-38.pyc
│ │ │ │ │ │ │ ├── stdin.cpython-38.pyc
│ │ │ │ │ │ │ ├── toolmenu.cpython-38.pyc
│ │ │ │ │ │ │ ├── window.cpython-38.pyc
│ │ │ │ │ │ │ └── winout.cpython-38.pyc
│ │ │ │ │ │ ├── app.py
│ │ │ │ │ │ ├── bitmap.py
│ │ │ │ │ │ ├── cmdline.py
│ │ │ │ │ │ ├── dbgcommands.py
│ │ │ │ │ │ ├── dlgappcore.py
│ │ │ │ │ │ ├── editor
│ │ │ │ │ │ │ ├── ModuleBrowser.py
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── ModuleBrowser.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── configui.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── document.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── editor.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── frame.cpython-38.pyc
│ │ │ │ │ │ │ │ ├── template.cpython-38.pyc
│ │ │ │ │ │ │ │ └── vss.cpython-38.pyc
│ │ │ │ │ │ │ ├── color
│ │ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ │ │ └── coloreditor.cpython-38.pyc
│ │ │ │ │ │ │ │ └── coloreditor.py
│ │ │ │ │ │ │ ├── configui.py
│ │ │ │ │ │ │ ├── document.py
│ │ │ │ │ │ │ ├── editor.py
│ │ │ │ │ │ │ ├── frame.py
│ │ │ │ │ │ │ ├── template.py
│ │ │ │ │ │ │ └── vss.py
│ │ │ │ │ │ ├── help.py
│ │ │ │ │ │ ├── interact.py
│ │ │ │ │ │ ├── intpyapp.py
│ │ │ │ │ │ ├── intpydde.py
│ │ │ │ │ │ ├── mdi_pychecker.py
│ │ │ │ │ │ ├── scriptutils.py
│ │ │ │ │ │ ├── sgrepmdi.py
│ │ │ │ │ │ ├── startup.py
│ │ │ │ │ │ ├── stdin.py
│ │ │ │ │ │ ├── toolmenu.py
│ │ │ │ │ │ ├── window.py
│ │ │ │ │ │ └── winout.py
│ │ │ │ │ ├── idle
│ │ │ │ │ │ ├── AutoExpand.py
│ │ │ │ │ │ ├── AutoIndent.py
│ │ │ │ │ │ ├── CallTips.py
│ │ │ │ │ │ ├── FormatParagraph.py
│ │ │ │ │ │ ├── IdleHistory.py
│ │ │ │ │ │ ├── PyParse.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ └── __pycache__
│ │ │ │ │ │ ├── AutoExpand.cpython-38.pyc
│ │ │ │ │ │ ├── AutoIndent.cpython-38.pyc
│ │ │ │ │ │ ├── CallTips.cpython-38.pyc
│ │ │ │ │ │ ├── FormatParagraph.cpython-38.pyc
│ │ │ │ │ │ ├── IdleHistory.cpython-38.pyc
│ │ │ │ │ │ ├── PyParse.cpython-38.pyc
│ │ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ │ ├── mfc
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── activex.cpython-38.pyc
│ │ │ │ │ │ │ ├── afxres.cpython-38.pyc
│ │ │ │ │ │ │ ├── dialog.cpython-38.pyc
│ │ │ │ │ │ │ ├── docview.cpython-38.pyc
│ │ │ │ │ │ │ ├── object.cpython-38.pyc
│ │ │ │ │ │ │ ├── thread.cpython-38.pyc
│ │ │ │ │ │ │ └── window.cpython-38.pyc
│ │ │ │ │ │ ├── activex.py
│ │ │ │ │ │ ├── afxres.py
│ │ │ │ │ │ ├── dialog.py
│ │ │ │ │ │ ├── docview.py
│ │ │ │ │ │ ├── object.py
│ │ │ │ │ │ ├── thread.py
│ │ │ │ │ │ └── window.py
│ │ │ │ │ ├── scintilla
│ │ │ │ │ │ ├── IDLEenvironment.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── IDLEenvironment.cpython-38.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ │ ├── bindings.cpython-38.pyc
│ │ │ │ │ │ │ ├── config.cpython-38.pyc
│ │ │ │ │ │ │ ├── configui.cpython-38.pyc
│ │ │ │ │ │ │ ├── control.cpython-38.pyc
│ │ │ │ │ │ │ ├── document.cpython-38.pyc
│ │ │ │ │ │ │ ├── find.cpython-38.pyc
│ │ │ │ │ │ │ ├── formatter.cpython-38.pyc
│ │ │ │ │ │ │ ├── keycodes.cpython-38.pyc
│ │ │ │ │ │ │ ├── scintillacon.cpython-38.pyc
│ │ │ │ │ │ │ └── view.cpython-38.pyc
│ │ │ │ │ │ ├── bindings.py
│ │ │ │ │ │ ├── config.py
│ │ │ │ │ │ ├── configui.py
│ │ │ │ │ │ ├── control.py
│ │ │ │ │ │ ├── document.py
│ │ │ │ │ │ ├── find.py
│ │ │ │ │ │ ├── formatter.py
│ │ │ │ │ │ ├── keycodes.py
│ │ │ │ │ │ ├── scintillacon.py
│ │ │ │ │ │ └── view.py
│ │ │ │ │ └── tools
│ │ │ │ │ ├── TraceCollector.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── TraceCollector.cpython-38.pyc
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── browseProjects.cpython-38.pyc
│ │ │ │ │ │ ├── browser.cpython-38.pyc
│ │ │ │ │ │ ├── hierlist.cpython-38.pyc
│ │ │ │ │ │ ├── regedit.cpython-38.pyc
│ │ │ │ │ │ └── regpy.cpython-38.pyc
│ │ │ │ │ ├── browseProjects.py
│ │ │ │ │ ├── browser.py
│ │ │ │ │ ├── hierlist.py
│ │ │ │ │ ├── regedit.py
│ │ │ │ │ └── regpy.py
│ │ │ │ ├── scintilla.dll
│ │ │ │ ├── win32ui.pyd
│ │ │ │ └── win32uiole.pyd
│ │ │ ├── pywin32-303.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── REQUESTED
│ │ │ │ ├── WHEEL
│ │ │ │ └── top_level.txt
│ │ │ ├── pywin32.pth
│ │ │ ├── pywin32.version.txt
│ │ │ ├── pywin32_system32
│ │ │ │ ├── pythoncom38.dll
│ │ │ │ └── pywintypes38.dll
│ │ │ ├── setuptools
│ │ │ │ ├── __init__.py
│ │ │ │ ├── _deprecation_warning.py
│ │ │ │ ├── _distutils
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── _msvccompiler.py
│ │ │ │ │ ├── archive_util.py
│ │ │ │ │ ├── bcppcompiler.py
│ │ │ │ │ ├── ccompiler.py
│ │ │ │ │ ├── cmd.py
│ │ │ │ │ ├── command
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── bdist.py
│ │ │ │ │ │ ├── bdist_dumb.py
│ │ │ │ │ │ ├── bdist_msi.py
│ │ │ │ │ │ ├── bdist_rpm.py
│ │ │ │ │ │ ├── bdist_wininst.py
│ │ │ │ │ │ ├── build.py
│ │ │ │ │ │ ├── build_clib.py
│ │ │ │ │ │ ├── build_ext.py
│ │ │ │ │ │ ├── build_py.py
│ │ │ │ │ │ ├── build_scripts.py
│ │ │ │ │ │ ├── check.py
│ │ │ │ │ │ ├── clean.py
│ │ │ │ │ │ ├── config.py
│ │ │ │ │ │ ├── install.py
│ │ │ │ │ │ ├── install_data.py
│ │ │ │ │ │ ├── install_egg_info.py
│ │ │ │ │ │ ├── install_headers.py
│ │ │ │ │ │ ├── install_lib.py
│ │ │ │ │ │ ├── install_scripts.py
│ │ │ │ │ │ ├── py37compat.py
│ │ │ │ │ │ ├── register.py
│ │ │ │ │ │ ├── sdist.py
│ │ │ │ │ │ └── upload.py
│ │ │ │ │ ├── config.py
│ │ │ │ │ ├── core.py
│ │ │ │ │ ├── cygwinccompiler.py
│ │ │ │ │ ├── debug.py
│ │ │ │ │ ├── dep_util.py
│ │ │ │ │ ├── dir_util.py
│ │ │ │ │ ├── dist.py
│ │ │ │ │ ├── errors.py
│ │ │ │ │ ├── extension.py
│ │ │ │ │ ├── fancy_getopt.py
│ │ │ │ │ ├── file_util.py
│ │ │ │ │ ├── filelist.py
│ │ │ │ │ ├── log.py
│ │ │ │ │ ├── msvc9compiler.py
│ │ │ │ │ ├── msvccompiler.py
│ │ │ │ │ ├── py35compat.py
│ │ │ │ │ ├── py38compat.py
│ │ │ │ │ ├── spawn.py
│ │ │ │ │ ├── sysconfig.py
│ │ │ │ │ ├── text_file.py
│ │ │ │ │ ├── unixccompiler.py
│ │ │ │ │ ├── util.py
│ │ │ │ │ ├── version.py
│ │ │ │ │ └── versionpredicate.py
│ │ │ │ ├── _imp.py
│ │ │ │ ├── _vendor
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── more_itertools
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── more.py
│ │ │ │ │ │ └── recipes.py
│ │ │ │ │ ├── ordered_set.py
│ │ │ │ │ ├── packaging
│ │ │ │ │ │ ├── __about__.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── _compat.py
│ │ │ │ │ │ ├── _structures.py
│ │ │ │ │ │ ├── _typing.py
│ │ │ │ │ │ ├── markers.py
│ │ │ │ │ │ ├── requirements.py
│ │ │ │ │ │ ├── specifiers.py
│ │ │ │ │ │ ├── tags.py
│ │ │ │ │ │ ├── utils.py
│ │ │ │ │ │ └── version.py
│ │ │ │ │ └── pyparsing.py
│ │ │ │ ├── archive_util.py
│ │ │ │ ├── build_meta.py
│ │ │ │ ├── cli-32.exe
│ │ │ │ ├── cli-64.exe
│ │ │ │ ├── cli.exe
│ │ │ │ ├── command
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── alias.py
│ │ │ │ │ ├── bdist_egg.py
│ │ │ │ │ ├── bdist_rpm.py
│ │ │ │ │ ├── build_clib.py
│ │ │ │ │ ├── build_ext.py
│ │ │ │ │ ├── build_py.py
│ │ │ │ │ ├── develop.py
│ │ │ │ │ ├── dist_info.py
│ │ │ │ │ ├── easy_install.py
│ │ │ │ │ ├── egg_info.py
│ │ │ │ │ ├── install.py
│ │ │ │ │ ├── install_egg_info.py
│ │ │ │ │ ├── install_lib.py
│ │ │ │ │ ├── install_scripts.py
│ │ │ │ │ ├── launcher manifest.xml
│ │ │ │ │ ├── py36compat.py
│ │ │ │ │ ├── register.py
│ │ │ │ │ ├── rotate.py
│ │ │ │ │ ├── saveopts.py
│ │ │ │ │ ├── sdist.py
│ │ │ │ │ ├── setopt.py
│ │ │ │ │ ├── test.py
│ │ │ │ │ ├── upload.py
│ │ │ │ │ └── upload_docs.py
│ │ │ │ ├── config.py
│ │ │ │ ├── dep_util.py
│ │ │ │ ├── depends.py
│ │ │ │ ├── dist.py
│ │ │ │ ├── errors.py
│ │ │ │ ├── extension.py
│ │ │ │ ├── extern
│ │ │ │ │ └── __init__.py
│ │ │ │ ├── glob.py
│ │ │ │ ├── gui-32.exe
│ │ │ │ ├── gui-64.exe
│ │ │ │ ├── gui.exe
│ │ │ │ ├── installer.py
│ │ │ │ ├── launch.py
│ │ │ │ ├── lib2to3_ex.py
│ │ │ │ ├── monkey.py
│ │ │ │ ├── msvc.py
│ │ │ │ ├── namespaces.py
│ │ │ │ ├── package_index.py
│ │ │ │ ├── py34compat.py
│ │ │ │ ├── sandbox.py
│ │ │ │ ├── script (dev).tmpl
│ │ │ │ ├── script.tmpl
│ │ │ │ ├── ssl_support.py
│ │ │ │ ├── unicode_utils.py
│ │ │ │ ├── version.py
│ │ │ │ ├── wheel.py
│ │ │ │ └── windows_support.py
│ │ │ ├── setuptools-57.0.0.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ ├── dependency_links.txt
│ │ │ │ ├── entry_points.txt
│ │ │ │ └── top_level.txt
│ │ │ ├── setuptools-57.0.0.virtualenv
│ │ │ ├── wheel
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __main__.py
│ │ │ │ ├── bdist_wheel.py
│ │ │ │ ├── cli
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── convert.py
│ │ │ │ │ ├── pack.py
│ │ │ │ │ └── unpack.py
│ │ │ │ ├── macosx_libfile.py
│ │ │ │ ├── metadata.py
│ │ │ │ ├── pkginfo.py
│ │ │ │ ├── util.py
│ │ │ │ ├── vendored
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── packaging
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── _typing.py
│ │ │ │ │ └── tags.py
│ │ │ │ └── wheelfile.py
│ │ │ ├── wheel-0.36.2.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ ├── entry_points.txt
│ │ │ │ └── top_level.txt
│ │ │ ├── wheel-0.36.2.virtualenv
│ │ │ ├── win32
│ │ │ │ ├── Demos
│ │ │ │ │ ├── BackupRead_BackupWrite.py
│ │ │ │ │ ├── BackupSeek_streamheaders.py
│ │ │ │ │ ├── CopyFileEx.py
│ │ │ │ │ ├── CreateFileTransacted_MiniVersion.py
│ │ │ │ │ ├── EvtFormatMessage.py
│ │ │ │ │ ├── EvtSubscribe_pull.py
│ │ │ │ │ ├── EvtSubscribe_push.py
│ │ │ │ │ ├── FileSecurityTest.py
│ │ │ │ │ ├── GetSaveFileName.py
│ │ │ │ │ ├── NetValidatePasswordPolicy.py
│ │ │ │ │ ├── OpenEncryptedFileRaw.py
│ │ │ │ │ ├── RegCreateKeyTransacted.py
│ │ │ │ │ ├── RegRestoreKey.py
│ │ │ │ │ ├── SystemParametersInfo.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── BackupRead_BackupWrite.cpython-38.pyc
│ │ │ │ │ │ ├── BackupSeek_streamheaders.cpython-38.pyc
│ │ │ │ │ │ ├── CopyFileEx.cpython-38.pyc
│ │ │ │ │ │ ├── CreateFileTransacted_MiniVersion.cpython-38.pyc
│ │ │ │ │ │ ├── EvtFormatMessage.cpython-38.pyc
│ │ │ │ │ │ ├── EvtSubscribe_pull.cpython-38.pyc
│ │ │ │ │ │ ├── EvtSubscribe_push.cpython-38.pyc
│ │ │ │ │ │ ├── FileSecurityTest.cpython-38.pyc
│ │ │ │ │ │ ├── GetSaveFileName.cpython-38.pyc
│ │ │ │ │ │ ├── NetValidatePasswordPolicy.cpython-38.pyc
│ │ │ │ │ │ ├── OpenEncryptedFileRaw.cpython-38.pyc
│ │ │ │ │ │ ├── RegCreateKeyTransacted.cpython-38.pyc
│ │ │ │ │ │ ├── RegRestoreKey.cpython-38.pyc
│ │ │ │ │ │ ├── SystemParametersInfo.cpython-38.pyc
│ │ │ │ │ │ ├── cerapi.cpython-38.pyc
│ │ │ │ │ │ ├── desktopmanager.cpython-38.pyc
│ │ │ │ │ │ ├── eventLogDemo.cpython-38.pyc
│ │ │ │ │ │ ├── getfilever.cpython-38.pyc
│ │ │ │ │ │ ├── mmapfile_demo.cpython-38.pyc
│ │ │ │ │ │ ├── print_desktop.cpython-38.pyc
│ │ │ │ │ │ ├── rastest.cpython-38.pyc
│ │ │ │ │ │ ├── timer_demo.cpython-38.pyc
│ │ │ │ │ │ ├── win32clipboardDemo.cpython-38.pyc
│ │ │ │ │ │ ├── win32clipboard_bitmapdemo.cpython-38.pyc
│ │ │ │ │ │ ├── win32comport_demo.cpython-38.pyc
│ │ │ │ │ │ ├── win32console_demo.cpython-38.pyc
│ │ │ │ │ │ ├── win32cred_demo.cpython-38.pyc
│ │ │ │ │ │ ├── win32fileDemo.cpython-38.pyc
│ │ │ │ │ │ ├── win32gui_demo.cpython-38.pyc
│ │ │ │ │ │ ├── win32gui_devicenotify.cpython-38.pyc
│ │ │ │ │ │ ├── win32gui_dialog.cpython-38.pyc
│ │ │ │ │ │ ├── win32gui_menu.cpython-38.pyc
│ │ │ │ │ │ ├── win32gui_taskbar.cpython-38.pyc
│ │ │ │ │ │ ├── win32netdemo.cpython-38.pyc
│ │ │ │ │ │ ├── win32rcparser_demo.cpython-38.pyc
│ │ │ │ │ │ ├── win32servicedemo.cpython-38.pyc
│ │ │ │ │ │ ├── win32ts_logoff_disconnected.cpython-38.pyc
│ │ │ │ │ │ └── winprocess.cpython-38.pyc
│ │ │ │ │ ├── c_extension
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ └── setup.cpython-38.pyc
│ │ │ │ │ │ └── setup.py
│ │ │ │ │ ├── cerapi.py
│ │ │ │ │ ├── dde
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── ddeclient.cpython-38.pyc
│ │ │ │ │ │ │ └── ddeserver.cpython-38.pyc
│ │ │ │ │ │ ├── ddeclient.py
│ │ │ │ │ │ └── ddeserver.py
│ │ │ │ │ ├── desktopmanager.py
│ │ │ │ │ ├── eventLogDemo.py
│ │ │ │ │ ├── getfilever.py
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── frowny.bmp
│ │ │ │ │ │ └── smiley.bmp
│ │ │ │ │ ├── mmapfile_demo.py
│ │ │ │ │ ├── pipes
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── cat.cpython-38.pyc
│ │ │ │ │ │ │ └── runproc.cpython-38.pyc
│ │ │ │ │ │ ├── cat.py
│ │ │ │ │ │ └── runproc.py
│ │ │ │ │ ├── print_desktop.py
│ │ │ │ │ ├── rastest.py
│ │ │ │ │ ├── security
│ │ │ │ │ │ ├── GetTokenInformation.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── GetTokenInformation.cpython-38.pyc
│ │ │ │ │ │ │ ├── account_rights.cpython-38.pyc
│ │ │ │ │ │ │ ├── explicit_entries.cpython-38.pyc
│ │ │ │ │ │ │ ├── get_policy_info.cpython-38.pyc
│ │ │ │ │ │ │ ├── list_rights.cpython-38.pyc
│ │ │ │ │ │ │ ├── localized_names.cpython-38.pyc
│ │ │ │ │ │ │ ├── lsaregevent.cpython-38.pyc
│ │ │ │ │ │ │ ├── lsastore.cpython-38.pyc
│ │ │ │ │ │ │ ├── query_information.cpython-38.pyc
│ │ │ │ │ │ │ ├── regsave_sa.cpython-38.pyc
│ │ │ │ │ │ │ ├── regsecurity.cpython-38.pyc
│ │ │ │ │ │ │ ├── sa_inherit.cpython-38.pyc
│ │ │ │ │ │ │ ├── security_enums.cpython-38.pyc
│ │ │ │ │ │ │ ├── set_file_audit.cpython-38.pyc
│ │ │ │ │ │ │ ├── set_file_owner.cpython-38.pyc
│ │ │ │ │ │ │ ├── set_policy_info.cpython-38.pyc
│ │ │ │ │ │ │ ├── setkernelobjectsecurity.cpython-38.pyc
│ │ │ │ │ │ │ ├── setnamedsecurityinfo.cpython-38.pyc
│ │ │ │ │ │ │ ├── setsecurityinfo.cpython-38.pyc
│ │ │ │ │ │ │ └── setuserobjectsecurity.cpython-38.pyc
│ │ │ │ │ │ ├── account_rights.py
│ │ │ │ │ │ ├── explicit_entries.py
│ │ │ │ │ │ ├── get_policy_info.py
│ │ │ │ │ │ ├── list_rights.py
│ │ │ │ │ │ ├── localized_names.py
│ │ │ │ │ │ ├── lsaregevent.py
│ │ │ │ │ │ ├── lsastore.py
│ │ │ │ │ │ ├── query_information.py
│ │ │ │ │ │ ├── regsave_sa.py
│ │ │ │ │ │ ├── regsecurity.py
│ │ │ │ │ │ ├── sa_inherit.py
│ │ │ │ │ │ ├── security_enums.py
│ │ │ │ │ │ ├── set_file_audit.py
│ │ │ │ │ │ ├── set_file_owner.py
│ │ │ │ │ │ ├── set_policy_info.py
│ │ │ │ │ │ ├── setkernelobjectsecurity.py
│ │ │ │ │ │ ├── setnamedsecurityinfo.py
│ │ │ │ │ │ ├── setsecurityinfo.py
│ │ │ │ │ │ ├── setuserobjectsecurity.py
│ │ │ │ │ │ └── sspi
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── fetch_url.cpython-38.pyc
│ │ │ │ │ │ │ ├── simple_auth.cpython-38.pyc
│ │ │ │ │ │ │ ├── socket_server.cpython-38.pyc
│ │ │ │ │ │ │ └── validate_password.cpython-38.pyc
│ │ │ │ │ │ ├── fetch_url.py
│ │ │ │ │ │ ├── simple_auth.py
│ │ │ │ │ │ ├── socket_server.py
│ │ │ │ │ │ └── validate_password.py
│ │ │ │ │ ├── service
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── nativePipeTestService.cpython-38.pyc
│ │ │ │ │ │ │ ├── pipeTestService.cpython-38.pyc
│ │ │ │ │ │ │ ├── pipeTestServiceClient.cpython-38.pyc
│ │ │ │ │ │ │ └── serviceEvents.cpython-38.pyc
│ │ │ │ │ │ ├── nativePipeTestService.py
│ │ │ │ │ │ ├── pipeTestService.py
│ │ │ │ │ │ ├── pipeTestServiceClient.py
│ │ │ │ │ │ └── serviceEvents.py
│ │ │ │ │ ├── timer_demo.py
│ │ │ │ │ ├── win32clipboardDemo.py
│ │ │ │ │ ├── win32clipboard_bitmapdemo.py
│ │ │ │ │ ├── win32comport_demo.py
│ │ │ │ │ ├── win32console_demo.py
│ │ │ │ │ ├── win32cred_demo.py
│ │ │ │ │ ├── win32fileDemo.py
│ │ │ │ │ ├── win32gui_demo.py
│ │ │ │ │ ├── win32gui_devicenotify.py
│ │ │ │ │ ├── win32gui_dialog.py
│ │ │ │ │ ├── win32gui_menu.py
│ │ │ │ │ ├── win32gui_taskbar.py
│ │ │ │ │ ├── win32netdemo.py
│ │ │ │ │ ├── win32rcparser_demo.py
│ │ │ │ │ ├── win32servicedemo.py
│ │ │ │ │ ├── win32ts_logoff_disconnected.py
│ │ │ │ │ ├── win32wnet
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── testwnet.cpython-38.pyc
│ │ │ │ │ │ │ └── winnetwk.cpython-38.pyc
│ │ │ │ │ │ ├── testwnet.py
│ │ │ │ │ │ └── winnetwk.py
│ │ │ │ │ └── winprocess.py
│ │ │ │ ├── _win32sysloader.pyd
│ │ │ │ ├── _winxptheme.pyd
│ │ │ │ ├── include
│ │ │ │ │ └── PyWinTypes.h
│ │ │ │ ├── lib
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── afxres.cpython-38.pyc
│ │ │ │ │ │ ├── commctrl.cpython-38.pyc
│ │ │ │ │ │ ├── dbi.cpython-38.pyc
│ │ │ │ │ │ ├── mmsystem.cpython-38.pyc
│ │ │ │ │ │ ├── netbios.cpython-38.pyc
│ │ │ │ │ │ ├── ntsecuritycon.cpython-38.pyc
│ │ │ │ │ │ ├── pywin32_bootstrap.cpython-38.pyc
│ │ │ │ │ │ ├── pywin32_testutil.cpython-38.pyc
│ │ │ │ │ │ ├── pywintypes.cpython-38.pyc
│ │ │ │ │ │ ├── rasutil.cpython-38.pyc
│ │ │ │ │ │ ├── regcheck.cpython-38.pyc
│ │ │ │ │ │ ├── regutil.cpython-38.pyc
│ │ │ │ │ │ ├── sspi.cpython-38.pyc
│ │ │ │ │ │ ├── sspicon.cpython-38.pyc
│ │ │ │ │ │ ├── win2kras.cpython-38.pyc
│ │ │ │ │ │ ├── win32con.cpython-38.pyc
│ │ │ │ │ │ ├── win32cryptcon.cpython-38.pyc
│ │ │ │ │ │ ├── win32evtlogutil.cpython-38.pyc
│ │ │ │ │ │ ├── win32gui_struct.cpython-38.pyc
│ │ │ │ │ │ ├── win32inetcon.cpython-38.pyc
│ │ │ │ │ │ ├── win32netcon.cpython-38.pyc
│ │ │ │ │ │ ├── win32pdhquery.cpython-38.pyc
│ │ │ │ │ │ ├── win32pdhutil.cpython-38.pyc
│ │ │ │ │ │ ├── win32rcparser.cpython-38.pyc
│ │ │ │ │ │ ├── win32serviceutil.cpython-38.pyc
│ │ │ │ │ │ ├── win32timezone.cpython-38.pyc
│ │ │ │ │ │ ├── win32traceutil.cpython-38.pyc
│ │ │ │ │ │ ├── win32verstamp.cpython-38.pyc
│ │ │ │ │ │ ├── winerror.cpython-38.pyc
│ │ │ │ │ │ ├── winioctlcon.cpython-38.pyc
│ │ │ │ │ │ ├── winnt.cpython-38.pyc
│ │ │ │ │ │ ├── winperf.cpython-38.pyc
│ │ │ │ │ │ └── winxptheme.cpython-38.pyc
│ │ │ │ │ ├── afxres.py
│ │ │ │ │ ├── commctrl.py
│ │ │ │ │ ├── dbi.py
│ │ │ │ │ ├── mmsystem.py
│ │ │ │ │ ├── netbios.py
│ │ │ │ │ ├── ntsecuritycon.py
│ │ │ │ │ ├── pywin32_bootstrap.py
│ │ │ │ │ ├── pywin32_testutil.py
│ │ │ │ │ ├── pywintypes.py
│ │ │ │ │ ├── rasutil.py
│ │ │ │ │ ├── regcheck.py
│ │ │ │ │ ├── regutil.py
│ │ │ │ │ ├── sspi.py
│ │ │ │ │ ├── sspicon.py
│ │ │ │ │ ├── win2kras.py
│ │ │ │ │ ├── win32con.py
│ │ │ │ │ ├── win32cryptcon.py
│ │ │ │ │ ├── win32evtlogutil.py
│ │ │ │ │ ├── win32gui_struct.py
│ │ │ │ │ ├── win32inetcon.py
│ │ │ │ │ ├── win32netcon.py
│ │ │ │ │ ├── win32pdhquery.py
│ │ │ │ │ ├── win32pdhutil.py
│ │ │ │ │ ├── win32rcparser.py
│ │ │ │ │ ├── win32serviceutil.py
│ │ │ │ │ ├── win32timezone.py
│ │ │ │ │ ├── win32traceutil.py
│ │ │ │ │ ├── win32verstamp.py
│ │ │ │ │ ├── winerror.py
│ │ │ │ │ ├── winioctlcon.py
│ │ │ │ │ ├── winnt.py
│ │ │ │ │ ├── winperf.py
│ │ │ │ │ └── winxptheme.py
│ │ │ │ ├── libs
│ │ │ │ │ └── pywintypes.lib
│ │ │ │ ├── license.txt
│ │ │ │ ├── mmapfile.pyd
│ │ │ │ ├── odbc.pyd
│ │ │ │ ├── perfmon.pyd
│ │ │ │ ├── perfmondata.dll
│ │ │ │ ├── pythonservice.exe
│ │ │ │ ├── scripts
│ │ │ │ │ ├── ControlService.py
│ │ │ │ │ ├── VersionStamp
│ │ │ │ │ │ ├── BrandProject.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── BrandProject.cpython-38.pyc
│ │ │ │ │ │ │ ├── bulkstamp.cpython-38.pyc
│ │ │ │ │ │ │ └── vssutil.cpython-38.pyc
│ │ │ │ │ │ ├── bulkstamp.py
│ │ │ │ │ │ └── vssutil.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── ControlService.cpython-38.pyc
│ │ │ │ │ │ ├── backupEventLog.cpython-38.pyc
│ │ │ │ │ │ ├── killProcName.cpython-38.pyc
│ │ │ │ │ │ ├── rasutil.cpython-38.pyc
│ │ │ │ │ │ ├── regsetup.cpython-38.pyc
│ │ │ │ │ │ └── setup_d.cpython-38.pyc
│ │ │ │ │ ├── backupEventLog.py
│ │ │ │ │ ├── ce
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ └── pysynch.cpython-38.pyc
│ │ │ │ │ │ └── pysynch.py
│ │ │ │ │ ├── killProcName.py
│ │ │ │ │ ├── rasutil.py
│ │ │ │ │ ├── regsetup.py
│ │ │ │ │ └── setup_d.py
│ │ │ │ ├── servicemanager.pyd
│ │ │ │ ├── test
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── handles.cpython-38.pyc
│ │ │ │ │ │ ├── test_clipboard.cpython-38.pyc
│ │ │ │ │ │ ├── test_exceptions.cpython-38.pyc
│ │ │ │ │ │ ├── test_odbc.cpython-38.pyc
│ │ │ │ │ │ ├── test_pywintypes.cpython-38.pyc
│ │ │ │ │ │ ├── test_security.cpython-38.pyc
│ │ │ │ │ │ ├── test_sspi.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32api.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32crypt.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32event.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32file.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32gui.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32guistruct.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32inet.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32net.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32pipe.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32profile.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32rcparser.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32timezone.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32trace.cpython-38.pyc
│ │ │ │ │ │ ├── test_win32wnet.cpython-38.pyc
│ │ │ │ │ │ └── testall.cpython-38.pyc
│ │ │ │ │ ├── handles.py
│ │ │ │ │ ├── test_clipboard.py
│ │ │ │ │ ├── test_exceptions.py
│ │ │ │ │ ├── test_odbc.py
│ │ │ │ │ ├── test_pywintypes.py
│ │ │ │ │ ├── test_security.py
│ │ │ │ │ ├── test_sspi.py
│ │ │ │ │ ├── test_win32api.py
│ │ │ │ │ ├── test_win32crypt.py
│ │ │ │ │ ├── test_win32event.py
│ │ │ │ │ ├── test_win32file.py
│ │ │ │ │ ├── test_win32gui.py
│ │ │ │ │ ├── test_win32guistruct.py
│ │ │ │ │ ├── test_win32inet.py
│ │ │ │ │ ├── test_win32net.py
│ │ │ │ │ ├── test_win32pipe.py
│ │ │ │ │ ├── test_win32profile.py
│ │ │ │ │ ├── test_win32rcparser.py
│ │ │ │ │ ├── test_win32timezone.py
│ │ │ │ │ ├── test_win32trace.py
│ │ │ │ │ ├── test_win32wnet.py
│ │ │ │ │ ├── testall.py
│ │ │ │ │ └── win32rcparser
│ │ │ │ │ ├── python.bmp
│ │ │ │ │ ├── python.ico
│ │ │ │ │ ├── test.h
│ │ │ │ │ └── test.rc
│ │ │ │ ├── timer.pyd
│ │ │ │ ├── win32api.pyd
│ │ │ │ ├── win32clipboard.pyd
│ │ │ │ ├── win32console.pyd
│ │ │ │ ├── win32cred.pyd
│ │ │ │ ├── win32crypt.pyd
│ │ │ │ ├── win32event.pyd
│ │ │ │ ├── win32evtlog.pyd
│ │ │ │ ├── win32file.pyd
│ │ │ │ ├── win32gui.pyd
│ │ │ │ ├── win32help.pyd
│ │ │ │ ├── win32inet.pyd
│ │ │ │ ├── win32job.pyd
│ │ │ │ ├── win32lz.pyd
│ │ │ │ ├── win32net.pyd
│ │ │ │ ├── win32pdh.pyd
│ │ │ │ ├── win32pipe.pyd
│ │ │ │ ├── win32print.pyd
│ │ │ │ ├── win32process.pyd
│ │ │ │ ├── win32profile.pyd
│ │ │ │ ├── win32ras.pyd
│ │ │ │ ├── win32security.pyd
│ │ │ │ ├── win32service.pyd
│ │ │ │ ├── win32trace.pyd
│ │ │ │ ├── win32transaction.pyd
│ │ │ │ ├── win32ts.pyd
│ │ │ │ ├── win32wnet.pyd
│ │ │ │ └── winxpgui.pyd
│ │ │ ├── win32com
│ │ │ │ ├── HTML
│ │ │ │ │ ├── GeneratedSupport.html
│ │ │ │ │ ├── PythonCOM.html
│ │ │ │ │ ├── QuickStartClientCom.html
│ │ │ │ │ ├── QuickStartServerCom.html
│ │ │ │ │ ├── docindex.html
│ │ │ │ │ ├── image
│ │ │ │ │ │ ├── BTN_HomePage.gif
│ │ │ │ │ │ ├── BTN_ManualTop.gif
│ │ │ │ │ │ ├── BTN_NextPage.gif
│ │ │ │ │ │ ├── BTN_PrevPage.gif
│ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ ├── pycom_blowing.gif
│ │ │ │ │ │ ├── pythoncom.gif
│ │ │ │ │ │ └── www_icon.gif
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── misc.html
│ │ │ │ │ ├── package.html
│ │ │ │ │ └── variant.html
│ │ │ │ ├── License.txt
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ ├── olectl.cpython-38.pyc
│ │ │ │ │ ├── storagecon.cpython-38.pyc
│ │ │ │ │ ├── universal.cpython-38.pyc
│ │ │ │ │ └── util.cpython-38.pyc
│ │ │ │ ├── client
│ │ │ │ │ ├── CLSIDToClass.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── CLSIDToClass.cpython-38.pyc
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── build.cpython-38.pyc
│ │ │ │ │ │ ├── combrowse.cpython-38.pyc
│ │ │ │ │ │ ├── connect.cpython-38.pyc
│ │ │ │ │ │ ├── dynamic.cpython-38.pyc
│ │ │ │ │ │ ├── gencache.cpython-38.pyc
│ │ │ │ │ │ ├── genpy.cpython-38.pyc
│ │ │ │ │ │ ├── makepy.cpython-38.pyc
│ │ │ │ │ │ ├── selecttlb.cpython-38.pyc
│ │ │ │ │ │ ├── tlbrowse.cpython-38.pyc
│ │ │ │ │ │ └── util.cpython-38.pyc
│ │ │ │ │ ├── build.py
│ │ │ │ │ ├── combrowse.py
│ │ │ │ │ ├── connect.py
│ │ │ │ │ ├── dynamic.py
│ │ │ │ │ ├── gencache.py
│ │ │ │ │ ├── genpy.py
│ │ │ │ │ ├── makepy.py
│ │ │ │ │ ├── selecttlb.py
│ │ │ │ │ ├── tlbrowse.py
│ │ │ │ │ └── util.py
│ │ │ │ ├── demos
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── connect.cpython-38.pyc
│ │ │ │ │ │ ├── dump_clipboard.cpython-38.pyc
│ │ │ │ │ │ ├── eventsApartmentThreaded.cpython-38.pyc
│ │ │ │ │ │ ├── eventsFreeThreaded.cpython-38.pyc
│ │ │ │ │ │ ├── excelAddin.cpython-38.pyc
│ │ │ │ │ │ ├── excelRTDServer.cpython-38.pyc
│ │ │ │ │ │ ├── iebutton.cpython-38.pyc
│ │ │ │ │ │ ├── ietoolbar.cpython-38.pyc
│ │ │ │ │ │ ├── outlookAddin.cpython-38.pyc
│ │ │ │ │ │ └── trybag.cpython-38.pyc
│ │ │ │ │ ├── connect.py
│ │ │ │ │ ├── dump_clipboard.py
│ │ │ │ │ ├── eventsApartmentThreaded.py
│ │ │ │ │ ├── eventsFreeThreaded.py
│ │ │ │ │ ├── excelAddin.py
│ │ │ │ │ ├── excelRTDServer.py
│ │ │ │ │ ├── iebutton.py
│ │ │ │ │ ├── ietoolbar.py
│ │ │ │ │ ├── outlookAddin.py
│ │ │ │ │ └── trybag.py
│ │ │ │ ├── include
│ │ │ │ │ ├── PythonCOM.h
│ │ │ │ │ ├── PythonCOMRegister.h
│ │ │ │ │ └── PythonCOMServer.h
│ │ │ │ ├── libs
│ │ │ │ │ ├── axscript.lib
│ │ │ │ │ └── pythoncom.lib
│ │ │ │ ├── makegw
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── makegw.cpython-38.pyc
│ │ │ │ │ │ ├── makegwenum.cpython-38.pyc
│ │ │ │ │ │ └── makegwparse.cpython-38.pyc
│ │ │ │ │ ├── makegw.py
│ │ │ │ │ ├── makegwenum.py
│ │ │ │ │ └── makegwparse.py
│ │ │ │ ├── olectl.py
│ │ │ │ ├── readme.html
│ │ │ │ ├── server
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── connect.cpython-38.pyc
│ │ │ │ │ │ ├── dispatcher.cpython-38.pyc
│ │ │ │ │ │ ├── exception.cpython-38.pyc
│ │ │ │ │ │ ├── factory.cpython-38.pyc
│ │ │ │ │ │ ├── localserver.cpython-38.pyc
│ │ │ │ │ │ ├── policy.cpython-38.pyc
│ │ │ │ │ │ ├── register.cpython-38.pyc
│ │ │ │ │ │ └── util.cpython-38.pyc
│ │ │ │ │ ├── connect.py
│ │ │ │ │ ├── dispatcher.py
│ │ │ │ │ ├── exception.py
│ │ │ │ │ ├── factory.py
│ │ │ │ │ ├── localserver.py
│ │ │ │ │ ├── policy.py
│ │ │ │ │ ├── register.py
│ │ │ │ │ └── util.py
│ │ │ │ ├── servers
│ │ │ │ │ ├── PythonTools.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── PythonTools.cpython-38.pyc
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── dictionary.cpython-38.pyc
│ │ │ │ │ │ ├── interp.cpython-38.pyc
│ │ │ │ │ │ ├── perfmon.cpython-38.pyc
│ │ │ │ │ │ └── test_pycomtest.cpython-38.pyc
│ │ │ │ │ ├── dictionary.py
│ │ │ │ │ ├── interp.py
│ │ │ │ │ ├── perfmon.py
│ │ │ │ │ └── test_pycomtest.py
│ │ │ │ ├── storagecon.py
│ │ │ │ ├── test
│ │ │ │ │ ├── GenTestScripts.py
│ │ │ │ │ ├── Testpys.sct
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── GenTestScripts.cpython-38.pyc
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── daodump.cpython-38.pyc
│ │ │ │ │ │ ├── errorSemantics.cpython-38.pyc
│ │ │ │ │ │ ├── pippo_server.cpython-38.pyc
│ │ │ │ │ │ ├── policySemantics.cpython-38.pyc
│ │ │ │ │ │ ├── testADOEvents.cpython-38.pyc
│ │ │ │ │ │ ├── testAXScript.cpython-38.pyc
│ │ │ │ │ │ ├── testAccess.cpython-38.pyc
│ │ │ │ │ │ ├── testArrays.cpython-38.pyc
│ │ │ │ │ │ ├── testClipboard.cpython-38.pyc
│ │ │ │ │ │ ├── testCollections.cpython-38.pyc
│ │ │ │ │ │ ├── testConversionErrors.cpython-38.pyc
│ │ │ │ │ │ ├── testDCOM.cpython-38.pyc
│ │ │ │ │ │ ├── testDates.cpython-38.pyc
│ │ │ │ │ │ ├── testDictionary.cpython-38.pyc
│ │ │ │ │ │ ├── testDynamic.cpython-38.pyc
│ │ │ │ │ │ ├── testExchange.cpython-38.pyc
│ │ │ │ │ │ ├── testExplorer.cpython-38.pyc
│ │ │ │ │ │ ├── testGIT.cpython-38.pyc
│ │ │ │ │ │ ├── testGatewayAddresses.cpython-38.pyc
│ │ │ │ │ │ ├── testIterators.cpython-38.pyc
│ │ │ │ │ │ ├── testMSOffice.cpython-38.pyc
│ │ │ │ │ │ ├── testMSOfficeEvents.cpython-38.pyc
│ │ │ │ │ │ ├── testMarshal.cpython-38.pyc
│ │ │ │ │ │ ├── testNetscape.cpython-38.pyc
│ │ │ │ │ │ ├── testPersist.cpython-38.pyc
│ │ │ │ │ │ ├── testPippo.cpython-38.pyc
│ │ │ │ │ │ ├── testPyComTest.cpython-38.pyc
│ │ │ │ │ │ ├── testROT.cpython-38.pyc
│ │ │ │ │ │ ├── testServers.cpython-38.pyc
│ │ │ │ │ │ ├── testShell.cpython-38.pyc
│ │ │ │ │ │ ├── testStorage.cpython-38.pyc
│ │ │ │ │ │ ├── testStreams.cpython-38.pyc
│ │ │ │ │ │ ├── testWMI.cpython-38.pyc
│ │ │ │ │ │ ├── testall.cpython-38.pyc
│ │ │ │ │ │ ├── testmakepy.cpython-38.pyc
│ │ │ │ │ │ ├── testvb.cpython-38.pyc
│ │ │ │ │ │ ├── testvbscript_regexp.cpython-38.pyc
│ │ │ │ │ │ ├── testxslt.cpython-38.pyc
│ │ │ │ │ │ └── util.cpython-38.pyc
│ │ │ │ │ ├── daodump.py
│ │ │ │ │ ├── errorSemantics.py
│ │ │ │ │ ├── pippo.idl
│ │ │ │ │ ├── pippo_server.py
│ │ │ │ │ ├── policySemantics.py
│ │ │ │ │ ├── readme.txt
│ │ │ │ │ ├── testADOEvents.py
│ │ │ │ │ ├── testAXScript.py
│ │ │ │ │ ├── testAccess.py
│ │ │ │ │ ├── testArrays.py
│ │ │ │ │ ├── testClipboard.py
│ │ │ │ │ ├── testCollections.py
│ │ │ │ │ ├── testConversionErrors.py
│ │ │ │ │ ├── testDCOM.py
│ │ │ │ │ ├── testDates.py
│ │ │ │ │ ├── testDictionary.py
│ │ │ │ │ ├── testDictionary.vbs
│ │ │ │ │ ├── testDynamic.py
│ │ │ │ │ ├── testExchange.py
│ │ │ │ │ ├── testExplorer.py
│ │ │ │ │ ├── testGIT.py
│ │ │ │ │ ├── testGatewayAddresses.py
│ │ │ │ │ ├── testInterp.vbs
│ │ │ │ │ ├── testIterators.py
│ │ │ │ │ ├── testMSOffice.py
│ │ │ │ │ ├── testMSOfficeEvents.py
│ │ │ │ │ ├── testMarshal.py
│ │ │ │ │ ├── testNetscape.py
│ │ │ │ │ ├── testPersist.py
│ │ │ │ │ ├── testPippo.py
│ │ │ │ │ ├── testPyComTest.py
│ │ │ │ │ ├── testPyScriptlet.js
│ │ │ │ │ ├── testROT.py
│ │ │ │ │ ├── testServers.py
│ │ │ │ │ ├── testShell.py
│ │ │ │ │ ├── testStorage.py
│ │ │ │ │ ├── testStreams.py
│ │ │ │ │ ├── testWMI.py
│ │ │ │ │ ├── testall.py
│ │ │ │ │ ├── testmakepy.py
│ │ │ │ │ ├── testvb.py
│ │ │ │ │ ├── testvbscript_regexp.py
│ │ │ │ │ ├── testxslt.js
│ │ │ │ │ ├── testxslt.py
│ │ │ │ │ ├── testxslt.xsl
│ │ │ │ │ └── util.py
│ │ │ │ ├── universal.py
│ │ │ │ └── util.py
│ │ │ └── win32comext
│ │ │ ├── adsi
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ └── adsicon.cpython-38.pyc
│ │ │ │ ├── adsi.pyd
│ │ │ │ ├── adsicon.py
│ │ │ │ └── demos
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── objectPicker.cpython-38.pyc
│ │ │ │ │ ├── scp.cpython-38.pyc
│ │ │ │ │ ├── search.cpython-38.pyc
│ │ │ │ │ └── test.cpython-38.pyc
│ │ │ │ ├── objectPicker.py
│ │ │ │ ├── scp.py
│ │ │ │ ├── search.py
│ │ │ │ └── test.py
│ │ │ ├── authorization
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ ├── authorization.pyd
│ │ │ │ └── demos
│ │ │ │ ├── EditSecurity.py
│ │ │ │ ├── EditServiceSecurity.py
│ │ │ │ └── __pycache__
│ │ │ │ ├── EditSecurity.cpython-38.pyc
│ │ │ │ └── EditServiceSecurity.cpython-38.pyc
│ │ │ ├── axcontrol
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ └── axcontrol.pyd
│ │ │ ├── axdebug
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ ├── adb.cpython-38.pyc
│ │ │ │ │ ├── codecontainer.cpython-38.pyc
│ │ │ │ │ ├── contexts.cpython-38.pyc
│ │ │ │ │ ├── debugger.cpython-38.pyc
│ │ │ │ │ ├── documents.cpython-38.pyc
│ │ │ │ │ ├── dump.cpython-38.pyc
│ │ │ │ │ ├── expressions.cpython-38.pyc
│ │ │ │ │ ├── gateways.cpython-38.pyc
│ │ │ │ │ ├── stackframe.cpython-38.pyc
│ │ │ │ │ └── util.cpython-38.pyc
│ │ │ │ ├── adb.py
│ │ │ │ ├── axdebug.pyd
│ │ │ │ ├── codecontainer.py
│ │ │ │ ├── contexts.py
│ │ │ │ ├── debugger.py
│ │ │ │ ├── documents.py
│ │ │ │ ├── dump.py
│ │ │ │ ├── expressions.py
│ │ │ │ ├── gateways.py
│ │ │ │ ├── stackframe.py
│ │ │ │ └── util.py
│ │ │ ├── axscript
│ │ │ │ ├── Demos
│ │ │ │ │ └── client
│ │ │ │ │ ├── asp
│ │ │ │ │ │ ├── CreateObject.asp
│ │ │ │ │ │ ├── caps.asp
│ │ │ │ │ │ ├── interrupt
│ │ │ │ │ │ │ ├── test.asp
│ │ │ │ │ │ │ ├── test.html
│ │ │ │ │ │ │ ├── test1.asp
│ │ │ │ │ │ │ └── test1.html
│ │ │ │ │ │ └── tut1.asp
│ │ │ │ │ ├── ie
│ │ │ │ │ │ ├── MarqueeText1.htm
│ │ │ │ │ │ ├── calc.htm
│ │ │ │ │ │ ├── dbgtest.htm
│ │ │ │ │ │ ├── demo.htm
│ │ │ │ │ │ ├── demo_check.htm
│ │ │ │ │ │ ├── demo_intro.htm
│ │ │ │ │ │ ├── demo_menu.htm
│ │ │ │ │ │ ├── docwrite.htm
│ │ │ │ │ │ ├── foo2.htm
│ │ │ │ │ │ ├── form.htm
│ │ │ │ │ │ ├── marqueeDemo.htm
│ │ │ │ │ │ ├── mousetrack.htm
│ │ │ │ │ │ └── pycom_blowing.gif
│ │ │ │ │ └── wsh
│ │ │ │ │ ├── blank.pys
│ │ │ │ │ ├── excel.pys
│ │ │ │ │ ├── registry.pys
│ │ │ │ │ └── test.pys
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ └── asputil.cpython-38.pyc
│ │ │ │ ├── asputil.py
│ │ │ │ ├── axscript.pyd
│ │ │ │ ├── client
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── debug.cpython-38.pyc
│ │ │ │ │ │ ├── error.cpython-38.pyc
│ │ │ │ │ │ ├── framework.cpython-38.pyc
│ │ │ │ │ │ ├── pydumper.cpython-38.pyc
│ │ │ │ │ │ ├── pyscript.cpython-38.pyc
│ │ │ │ │ │ ├── pyscript_rexec.cpython-38.pyc
│ │ │ │ │ │ └── scriptdispatch.cpython-38.pyc
│ │ │ │ │ ├── debug.py
│ │ │ │ │ ├── error.py
│ │ │ │ │ ├── framework.py
│ │ │ │ │ ├── pydumper.py
│ │ │ │ │ ├── pyscript.py
│ │ │ │ │ ├── pyscript_rexec.py
│ │ │ │ │ └── scriptdispatch.py
│ │ │ │ ├── server
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ │ ├── axsite.cpython-38.pyc
│ │ │ │ │ │ └── error.cpython-38.pyc
│ │ │ │ │ ├── axsite.py
│ │ │ │ │ └── error.py
│ │ │ │ └── test
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── leakTest.cpython-38.pyc
│ │ │ │ │ ├── testHost.cpython-38.pyc
│ │ │ │ │ └── testHost4Dbg.cpython-38.pyc
│ │ │ │ ├── debugTest.pys
│ │ │ │ ├── debugTest.vbs
│ │ │ │ ├── leakTest.py
│ │ │ │ ├── testHost.py
│ │ │ │ └── testHost4Dbg.py
│ │ │ ├── bits
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ ├── bits.pyd
│ │ │ │ └── test
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── show_all_jobs.cpython-38.pyc
│ │ │ │ │ └── test_bits.cpython-38.pyc
│ │ │ │ ├── show_all_jobs.py
│ │ │ │ └── test_bits.py
│ │ │ ├── directsound
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ └── __init__.cpython-38.pyc
│ │ │ │ ├── directsound.pyd
│ │ │ │ └── test
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ ├── ds_record.cpython-38.pyc
│ │ │ │ │ └── ds_test.cpython-38.pyc
│ │ │ │ ├── ds_record.py
│ │ │ │ └── ds_test.py
│ │ │ ├── ifilter
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ └── ifiltercon.cpython-38.pyc
│ │ │ │ ├── demo
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ └── filterDemo.cpython-38.pyc
│ │ │ │ │ └── filterDemo.py
│ │ │ │ ├── ifilter.pyd
│ │ │ │ └── ifiltercon.py
│ │ │ ├── internet
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ └── inetcon.cpython-38.pyc
│ │ │ │ ├── inetcon.py
│ │ │ │ └── internet.pyd
│ │ │ ├── mapi
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ ├── emsabtags.cpython-38.pyc
│ │ │ │ │ ├── mapitags.cpython-38.pyc
│ │ │ │ │ └── mapiutil.cpython-38.pyc
│ │ │ │ ├── demos
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ └── mapisend.cpython-38.pyc
│ │ │ │ │ └── mapisend.py
│ │ │ │ ├── emsabtags.py
│ │ │ │ ├── exchange.pyd
│ │ │ │ ├── mapi.pyd
│ │ │ │ ├── mapitags.py
│ │ │ │ └── mapiutil.py
│ │ │ ├── propsys
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ └── pscon.cpython-38.pyc
│ │ │ │ ├── propsys.pyd
│ │ │ │ ├── pscon.py
│ │ │ │ └── test
│ │ │ │ ├── __pycache__
│ │ │ │ │ └── testpropsys.cpython-38.pyc
│ │ │ │ └── testpropsys.py
│ │ │ ├── shell
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ │ └── shellcon.cpython-38.pyc
│ │ │ │ ├── demos
│ │ │ │ │ ├── IActiveDesktop.py
│ │ │ │ │ ├── IFileOperationProgressSink.py
│ │ │ │ │ ├── IShellLinkDataList.py
│ │ │ │ │ ├── ITransferAdviseSink.py
│ │ │ │ │ ├── IUniformResourceLocator.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── IActiveDesktop.cpython-38.pyc
│ │ │ │ │ │ ├── IFileOperationProgressSink.cpython-38.pyc
│ │ │ │ │ │ ├── IShellLinkDataList.cpython-38.pyc
│ │ │ │ │ │ ├── ITransferAdviseSink.cpython-38.pyc
│ │ │ │ │ │ ├── IUniformResourceLocator.cpython-38.pyc
│ │ │ │ │ │ ├── browse_for_folder.cpython-38.pyc
│ │ │ │ │ │ ├── create_link.cpython-38.pyc
│ │ │ │ │ │ ├── dump_link.cpython-38.pyc
│ │ │ │ │ │ ├── explorer_browser.cpython-38.pyc
│ │ │ │ │ │ ├── shellexecuteex.cpython-38.pyc
│ │ │ │ │ │ ├── viewstate.cpython-38.pyc
│ │ │ │ │ │ └── walk_shell_folders.cpython-38.pyc
│ │ │ │ │ ├── browse_for_folder.py
│ │ │ │ │ ├── create_link.py
│ │ │ │ │ ├── dump_link.py
│ │ │ │ │ ├── explorer_browser.py
│ │ │ │ │ ├── servers
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── column_provider.cpython-38.pyc
│ │ │ │ │ │ │ ├── context_menu.cpython-38.pyc
│ │ │ │ │ │ │ ├── copy_hook.cpython-38.pyc
│ │ │ │ │ │ │ ├── empty_volume_cache.cpython-38.pyc
│ │ │ │ │ │ │ ├── folder_view.cpython-38.pyc
│ │ │ │ │ │ │ ├── icon_handler.cpython-38.pyc
│ │ │ │ │ │ │ └── shell_view.cpython-38.pyc
│ │ │ │ │ │ ├── column_provider.py
│ │ │ │ │ │ ├── context_menu.py
│ │ │ │ │ │ ├── copy_hook.py
│ │ │ │ │ │ ├── empty_volume_cache.py
│ │ │ │ │ │ ├── folder_view.py
│ │ │ │ │ │ ├── icon_handler.py
│ │ │ │ │ │ └── shell_view.py
│ │ │ │ │ ├── shellexecuteex.py
│ │ │ │ │ ├── viewstate.py
│ │ │ │ │ └── walk_shell_folders.py
│ │ │ │ ├── shell.pyd
│ │ │ │ ├── shellcon.py
│ │ │ │ └── test
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── testSHFileOperation.cpython-38.pyc
│ │ │ │ │ ├── testShellFolder.cpython-38.pyc
│ │ │ │ │ └── testShellItem.cpython-38.pyc
│ │ │ │ ├── testSHFileOperation.py
│ │ │ │ ├── testShellFolder.py
│ │ │ │ └── testShellItem.py
│ │ │ └── taskscheduler
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ └── __init__.cpython-38.pyc
│ │ │ ├── taskscheduler.pyd
│ │ │ └── test
│ │ │ ├── __pycache__
│ │ │ │ ├── test_addtask.cpython-38.pyc
│ │ │ │ ├── test_addtask_1.cpython-38.pyc
│ │ │ │ ├── test_addtask_2.cpython-38.pyc
│ │ │ │ └── test_localsystem.cpython-38.pyc
│ │ │ ├── test_addtask.py
│ │ │ ├── test_addtask_1.py
│ │ │ ├── test_addtask_2.py
│ │ │ └── test_localsystem.py
│ │ ├── Scripts
│ │ │ ├── __pycache__
│ │ │ │ ├── clear_comtypes_cache.cpython-38.pyc
│ │ │ │ ├── pywin32_postinstall.cpython-38.pyc
│ │ │ │ └── pywin32_testall.cpython-38.pyc
│ │ │ ├── activate
│ │ │ ├── activate.bat
│ │ │ ├── activate.fish
│ │ │ ├── activate.ps1
│ │ │ ├── activate.xsh
│ │ │ ├── activate_this.py
│ │ │ ├── clear_comtypes_cache.py
│ │ │ ├── deactivate.bat
│ │ │ ├── pip-3.8.exe
│ │ │ ├── pip.exe
│ │ │ ├── pip3.8.exe
│ │ │ ├── pip3.exe
│ │ │ ├── pydoc.bat
│ │ │ ├── python.exe
│ │ │ ├── pythonw.exe
│ │ │ ├── pywin32_postinstall.py
│ │ │ ├── pywin32_testall.py
│ │ │ ├── wheel-3.8.exe
│ │ │ ├── wheel.exe
│ │ │ ├── wheel3.8.exe
│ │ │ └── wheel3.exe
│ │ ├── pyvenv.cfg
│ │ ├── ui
│ │ │ └── CadForm.ui
│ │ └── 断面图-最终.xlsm
│ ├── GetDrawArray.py
│ ├── __pycache__
│ │ └── GetDrawArray.cpython-38.pyc
│ └── main.py
└── Python操作CAD绘图.zip
306 directories, 2169 files
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论