Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created August 5, 2019 20:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/9f869e0e6538c1f956854aa3f19fad69 to your computer and use it in GitHub Desktop.
Save ryantm/9f869e0e6538c1f956854aa3f19fad69 to your computer and use it in GitHub Desktop.
/nix/store/rn915wz2khqiscjn71bh47saim6r7bif-python3.7-pyutilib-5.7.1
├── bin
│   ├── checkCopyright
│   ├── dispatch_srvr
│   ├── lbin
│   ├── lpython
│   ├── pypi_downloads
│   ├── pyutilib_test_driver
│   ├── replaceCopyright
│   └── test.pyutilib
├── lib
│   └── python3.7
│   └── site-packages
│   ├── pyutilib
│   │   ├── autotest
│   │   │   ├── default_testdriver.py
│   │   │   ├── driver.py
│   │   │   ├── __init__.py
│   │   │   ├── json_plugin.py
│   │   │   ├── plugins.py
│   │   │   ├── __pycache__
│   │   │   │   ├── default_testdriver.cpython-37.pyc
│   │   │   │   ├── driver.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── json_plugin.cpython-37.pyc
│   │   │   │   ├── plugins.cpython-37.pyc
│   │   │   │   └── yaml_plugin.cpython-37.pyc
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── test_driver.cpython-37.pyc
│   │   │   │   └── test_driver.py
│   │   │   └── yaml_plugin.py
│   │   ├── common
│   │   │   ├── _exceptions.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── _exceptions.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── component
│   │   │   ├── app
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── simple.cpython-37.pyc
│   │   │   │   ├── simple.py
│   │   │   │   └── tests
│   │   │   │   ├── app1a.py
│   │   │   │   ├── app1b.py
│   │   │   │   ├── app2.py
│   │   │   │   ├── app3.py
│   │   │   │   ├── app4.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── app1a.cpython-37.pyc
│   │   │   │   │   ├── app1b.cpython-37.pyc
│   │   │   │   │   ├── app2.cpython-37.pyc
│   │   │   │   │   ├── app3.cpython-37.pyc
│   │   │   │   │   ├── app4.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── test_simple.cpython-37.pyc
│   │   │   │   └── test_simple.py
│   │   │   ├── config
│   │   │   │   ├── configuration.py
│   │   │   │   ├── env_config.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── logging_config.py
│   │   │   │   ├── managed_plugin.py
│   │   │   │   ├── options.py
│   │   │   │   ├── plugin_ConfigParser.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── configuration.cpython-37.pyc
│   │   │   │   │   ├── env_config.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── logging_config.cpython-37.pyc
│   │   │   │   │   ├── managed_plugin.cpython-37.pyc
│   │   │   │   │   ├── options.cpython-37.pyc
│   │   │   │   │   ├── plugin_ConfigParser.cpython-37.pyc
│   │   │   │   │   └── tempfiles.cpython-37.pyc
│   │   │   │   ├── tempfiles.py
│   │   │   │   └── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_config.cpython-37.pyc
│   │   │   │   │   ├── test_options.cpython-37.pyc
│   │   │   │   │   └── test_tempdir.cpython-37.pyc
│   │   │   │   ├── test_config.py
│   │   │   │   ├── test_options.py
│   │   │   │   └── test_tempdir.py
│   │   │   ├── core
│   │   │   │   ├── core.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── core.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── test_core.cpython-37.pyc
│   │   │   │   └── test_core.py
│   │   │   ├── executables
│   │   │   │   ├── executable.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── executable.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   └── loader
│   │   │   ├── __init__.py
│   │   │   ├── plugin_eggLoader.py
│   │   │   ├── plugin_importLoader.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── plugin_eggLoader.cpython-37.pyc
│   │   │   │   └── plugin_importLoader.cpython-37.pyc
│   │   │   └── tests
│   │   │   ├── egg1.py
│   │   │   ├── egg2.py
│   │   │   ├── __init__.py
│   │   │   ├── load1a.py
│   │   │   ├── load1.py
│   │   │   ├── load2a.py
│   │   │   ├── load2.py
│   │   │   ├── __pycache__
│   │   │   │   ├── egg1.cpython-37.pyc
│   │   │   │   ├── egg2.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── load1a.cpython-37.pyc
│   │   │   │   ├── load1.cpython-37.pyc
│   │   │   │   ├── load2a.cpython-37.pyc
│   │   │   │   ├── load2.cpython-37.pyc
│   │   │   │   ├── test_egg.cpython-37.pyc
│   │   │   │   ├── test_load2.cpython-37.pyc
│   │   │   │   └── test_load.cpython-37.pyc
│   │   │   ├── test_egg.py
│   │   │   ├── test_load2.py
│   │   │   └── test_load.py
│   │   ├── dev
│   │   │   ├── checkCopyright.py
│   │   │   ├── entry_point.py
│   │   │   ├── __init__.py
│   │   │   ├── lbin.py
│   │   │   ├── lpython.py
│   │   │   ├── __pycache__
│   │   │   │   ├── checkCopyright.cpython-37.pyc
│   │   │   │   ├── entry_point.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── lbin.cpython-37.pyc
│   │   │   │   ├── lpython.cpython-37.pyc
│   │   │   │   ├── pypi_downloads.cpython-37.pyc
│   │   │   │   ├── replaceCopyright.cpython-37.pyc
│   │   │   │   └── runtests.cpython-37.pyc
│   │   │   ├── pypi_downloads.py
│   │   │   ├── replaceCopyright.py
│   │   │   ├── runtests.py
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── test_runtests.cpython-37.pyc
│   │   │   └── test_runtests.py
│   │   ├── enum
│   │   │   ├── enum.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── enum.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── test_enum.cpython-37.pyc
│   │   │   └── test_enum.py
│   │   ├── excel
│   │   │   ├── base.py
│   │   │   ├── excel.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   ├── excel.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── spreadsheet.cpython-37.pyc
│   │   │   │   ├── spreadsheet_openpyxl.cpython-37.pyc
│   │   │   │   ├── spreadsheet_win32com.cpython-37.pyc
│   │   │   │   └── spreadsheet_xlrd.cpython-37.pyc
│   │   │   ├── spreadsheet_openpyxl.py
│   │   │   ├── spreadsheet.py
│   │   │   ├── spreadsheet_win32com.py
│   │   │   ├── spreadsheet_xlrd.py
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── test_data.cpython-37.pyc
│   │   │   └── test_data.py
│   │   ├── factory
│   │   │   ├── executable.py
│   │   │   ├── factory.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── executable.cpython-37.pyc
│   │   │   ├── factory.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── math
│   │   │   ├── __init__.py
│   │   │   ├── median2.py
│   │   │   ├── median3.py
│   │   │   ├── numtypes.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── median2.cpython-37.pyc
│   │   │   │   ├── median3.cpython-37.pyc
│   │   │   │   ├── numtypes.cpython-37.pyc
│   │   │   │   └── util.cpython-37.pyc
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_math.cpython-37.pyc
│   │   │   │   │   └── test_numtypes.cpython-37.pyc
│   │   │   │   ├── test_math.py
│   │   │   │   └── test_numtypes.py
│   │   │   └── util.py
│   │   ├── misc
│   │   │   ├── archivereader.py
│   │   │   ├── comparison.py
│   │   │   ├── config.py
│   │   │   ├── cross.py
│   │   │   ├── dict_with_default.py
│   │   │   ├── factory.py
│   │   │   ├── format_io.py
│   │   │   ├── gc_manager.py
│   │   │   ├── generator.py
│   │   │   ├── GlobalData.py
│   │   │   ├── import_file.py
│   │   │   ├── indent_io.py
│   │   │   ├── __init__.py
│   │   │   ├── log_config.py
│   │   │   ├── method.py
│   │   │   ├── misc.py
│   │   │   ├── __pycache__
│   │   │   │   ├── archivereader.cpython-37.pyc
│   │   │   │   ├── comparison.cpython-37.pyc
│   │   │   │   ├── config.cpython-37.pyc
│   │   │   │   ├── cross.cpython-37.pyc
│   │   │   │   ├── dict_with_default.cpython-37.pyc
│   │   │   │   ├── factory.cpython-37.pyc
│   │   │   │   ├── format_io.cpython-37.pyc
│   │   │   │   ├── gc_manager.cpython-37.pyc
│   │   │   │   ├── generator.cpython-37.pyc
│   │   │   │   ├── GlobalData.cpython-37.pyc
│   │   │   │   ├── import_file.cpython-37.pyc
│   │   │   │   ├── indent_io.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── log_config.cpython-37.pyc
│   │   │   │   ├── method.cpython-37.pyc
│   │   │   │   ├── misc.cpython-37.pyc
│   │   │   │   ├── pyyaml_util.cpython-37.pyc
│   │   │   │   ├── redirect_io.cpython-37.pyc
│   │   │   │   ├── singleton.cpython-37.pyc
│   │   │   │   ├── tee_io.cpython-37.pyc
│   │   │   │   ├── timing.cpython-37.pyc
│   │   │   │   ├── twzzle.cpython-37.pyc
│   │   │   │   ├── visitor.cpython-37.pyc
│   │   │   │   ├── xmltodict.cpython-37.pyc
│   │   │   │   └── xml_utils.cpython-37.pyc
│   │   │   ├── pyyaml_util.py
│   │   │   ├── redirect_io.py
│   │   │   ├── singleton.py
│   │   │   ├── tee_io.py
│   │   │   ├── tests
│   │   │   │   ├── import1.py
│   │   │   │   ├── import2.py
│   │   │   │   ├── import_data
│   │   │   │   │   ├── a
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   └── tfile.cpython-37.pyc
│   │   │   │   │   │   └── tfile.py
│   │   │   │   │   ├── b
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   └── tfile.cpython-37.pyc
│   │   │   │   │   │   └── tfile.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── tfile1.0.cpython-37.pyc
│   │   │   │   │   └── tfile1.0.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── import1.cpython-37.pyc
│   │   │   │   │   ├── import2.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_archivereader.cpython-37.pyc
│   │   │   │   │   ├── test_config.cpython-37.pyc
│   │   │   │   │   ├── test_cross.cpython-37.pyc
│   │   │   │   │   ├── test_factory.cpython-37.pyc
│   │   │   │   │   ├── test_import.cpython-37.pyc
│   │   │   │   │   ├── test_io.cpython-37.pyc
│   │   │   │   │   ├── test_json.cpython-37.pyc
│   │   │   │   │   ├── test_log_config.cpython-37.pyc
│   │   │   │   │   ├── test_method.cpython-37.pyc
│   │   │   │   │   ├── test_misc.cpython-37.pyc
│   │   │   │   │   ├── test_singleton.cpython-37.pyc
│   │   │   │   │   ├── test_smap.cpython-37.pyc
│   │   │   │   │   ├── test_visitor.cpython-37.pyc
│   │   │   │   │   ├── test_xml.cpython-37.pyc
│   │   │   │   │   └── test_yaml.cpython-37.pyc
│   │   │   │   ├── test_archivereader.py
│   │   │   │   ├── test_config.py
│   │   │   │   ├── test_cross.py
│   │   │   │   ├── test_factory.py
│   │   │   │   ├── test_import.py
│   │   │   │   ├── test_io.py
│   │   │   │   ├── test_json.py
│   │   │   │   ├── test_log_config.py
│   │   │   │   ├── test_method.py
│   │   │   │   ├── test_misc.py
│   │   │   │   ├── test_singleton.py
│   │   │   │   ├── test_smap.py
│   │   │   │   ├── test_visitor.py
│   │   │   │   ├── test_xml.py
│   │   │   │   └── test_yaml.py
│   │   │   ├── timing.py
│   │   │   ├── twzzle.py
│   │   │   ├── visitor.py
│   │   │   ├── xmltodict.py
│   │   │   └── xml_utils.py
│   │   ├── ply
│   │   │   ├── __init__.py
│   │   │   ├── ply.py
│   │   │   └── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── ply.cpython-37.pyc
│   │   ├── pyro
│   │   │   ├── client.py
│   │   │   ├── dispatcher.py
│   │   │   ├── dispatch_srvr.py
│   │   │   ├── __init__.py
│   │   │   ├── nameserver.py
│   │   │   ├── __pycache__
│   │   │   │   ├── client.cpython-37.pyc
│   │   │   │   ├── dispatcher.cpython-37.pyc
│   │   │   │   ├── dispatch_srvr.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── nameserver.cpython-37.pyc
│   │   │   │   ├── task.cpython-37.pyc
│   │   │   │   ├── util.cpython-37.pyc
│   │   │   │   └── worker.cpython-37.pyc
│   │   │   ├── task.py
│   │   │   ├── util.py
│   │   │   └── worker.py
│   │   ├── services
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── services.cpython-37.pyc
│   │   │   └── services.py
│   │   ├── subprocess
│   │   │   ├── GlobalData.py
│   │   │   ├── __init__.py
│   │   │   ├── processmngr.py
│   │   │   ├── __pycache__
│   │   │   │   ├── GlobalData.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── processmngr.cpython-37.pyc
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── tee_script.cpython-37.pyc
│   │   │   │   └── test_subprocess.cpython-37.pyc
│   │   │   ├── tee_script.py
│   │   │   └── test_subprocess.py
│   │   ├── th
│   │   │   ├── __init__.py
│   │   │   ├── nose_gc.py
│   │   │   ├── nose_testdata.py
│   │   │   ├── nose_timeout.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── nose_gc.cpython-37.pyc
│   │   │   │   ├── nose_testdata.cpython-37.pyc
│   │   │   │   ├── nose_timeout.cpython-37.pyc
│   │   │   │   ├── pyunit.cpython-37.pyc
│   │   │   │   └── runtests.cpython-37.pyc
│   │   │   ├── pyunit.py
│   │   │   ├── runtests.py
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_misc.cpython-37.pyc
│   │   │   │   └── test_pyunit.cpython-37.pyc
│   │   │   ├── test_misc.py
│   │   │   └── test_pyunit.py
│   │   └── workflow
│   │   ├── driver.py
│   │   ├── executable.py
│   │   ├── file.py
│   │   ├── functor.py
│   │   ├── globals.py
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── driver.cpython-37.pyc
│   │   │   ├── executable.cpython-37.pyc
│   │   │   ├── file.cpython-37.pyc
│   │   │   ├── functor.cpython-37.pyc
│   │   │   ├── globals.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── resource.cpython-37.pyc
│   │   │   ├── task.cpython-37.pyc
│   │   │   ├── tasks.cpython-37.pyc
│   │   │   └── workflow.cpython-37.pyc
│   │   ├── resource.py
│   │   ├── task.py
│   │   ├── tasks.py
│   │   ├── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_core.cpython-37.pyc
│   │   │   │   ├── test_doc.cpython-37.pyc
│   │   │   │   └── test_task.cpython-37.pyc
│   │   │   ├── test_core.py
│   │   │   ├── test_doc.py
│   │   │   └── test_task.py
│   │   └── workflow.py
│   ├── PyUtilib-5.7.1.dist-info
│   │   ├── AUTHORS.txt
│   │   ├── entry_points.txt
│   │   ├── INSTALLER
│   │   ├── LICENSE.txt
│   │   ├── METADATA
│   │   ├── namespace_packages.txt
│   │   ├── RECORD
│   │   ├── top_level.txt
│   │   └── WHEEL
│   └── PyUtilib-5.7.1-py3.7-nspkg.pth
└── nix-support
└── propagated-build-inputs
78 directories, 367 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment