Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created November 21, 2020 02:28
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 r-ryantm/708a47e162038fd518f13eff44410b01 to your computer and use it in GitHub Desktop.
Save r-ryantm/708a47e162038fd518f13eff44410b01 to your computer and use it in GitHub Desktop.
/nix/store/88nci8cz9fyb8r2bgbh3k9l2fxmr8q3m-python3.7-pyexcel-0.6.6
├── lib
│   └── python3.7
│   └── site-packages
│   ├── pyexcel
│   │   ├── book.py
│   │   ├── _compact.py
│   │   ├── constants.py
│   │   ├── cookbook.py
│   │   ├── core.py
│   │   ├── deprecated.py
│   │   ├── docstrings
│   │   │   ├── core.py
│   │   │   ├── garbagecollector.py
│   │   │   ├── __init__.py
│   │   │   ├── keywords.py
│   │   │   ├── meta.py
│   │   │   └── __pycache__
│   │   │   ├── core.cpython-37.pyc
│   │   │   ├── garbagecollector.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── keywords.cpython-37.pyc
│   │   │   └── meta.cpython-37.pyc
│   │   ├── exceptions.py
│   │   ├── ext
│   │   │   ├── __init__.py
│   │   │   ├── ods3.py
│   │   │   ├── ods.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── ods3.cpython-37.pyc
│   │   │   │   ├── ods.cpython-37.pyc
│   │   │   │   ├── text.cpython-37.pyc
│   │   │   │   ├── xls.cpython-37.pyc
│   │   │   │   └── xlsx.cpython-37.pyc
│   │   │   ├── text.py
│   │   │   ├── xls.py
│   │   │   └── xlsx.py
│   │   ├── __init__.py
│   │   ├── internal
│   │   │   ├── attributes.py
│   │   │   ├── common.py
│   │   │   ├── core.py
│   │   │   ├── garbagecollector.py
│   │   │   ├── generators.py
│   │   │   ├── __init__.py
│   │   │   ├── meta.py
│   │   │   ├── plugins.py
│   │   │   ├── __pycache__
│   │   │   │   ├── attributes.cpython-37.pyc
│   │   │   │   ├── common.cpython-37.pyc
│   │   │   │   ├── core.cpython-37.pyc
│   │   │   │   ├── garbagecollector.cpython-37.pyc
│   │   │   │   ├── generators.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── meta.cpython-37.pyc
│   │   │   │   ├── plugins.cpython-37.pyc
│   │   │   │   ├── source_plugin.cpython-37.pyc
│   │   │   │   └── utils.cpython-37.pyc
│   │   │   ├── sheets
│   │   │   │   ├── column.py
│   │   │   │   ├── extended_list.py
│   │   │   │   ├── formatters.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── matrix.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── column.cpython-37.pyc
│   │   │   │   │   ├── extended_list.cpython-37.pyc
│   │   │   │   │   ├── formatters.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── matrix.cpython-37.pyc
│   │   │   │   │   ├── row.cpython-37.pyc
│   │   │   │   │   └── _shared.cpython-37.pyc
│   │   │   │   ├── row.py
│   │   │   │   └── _shared.py
│   │   │   ├── source_plugin.py
│   │   │   └── utils.py
│   │   ├── parser.py
│   │   ├── plugins
│   │   │   ├── __init__.py
│   │   │   ├── parsers
│   │   │   │   ├── django.py
│   │   │   │   ├── excel.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── django.cpython-37.pyc
│   │   │   │   │   ├── excel.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── sqlalchemy.cpython-37.pyc
│   │   │   │   └── sqlalchemy.py
│   │   │   ├── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── renderers
│   │   │   │   ├── django.py
│   │   │   │   ├── excel.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── django.cpython-37.pyc
│   │   │   │   │   ├── excel.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── sqlalchemy.cpython-37.pyc
│   │   │   │   │   └── _texttable.cpython-37.pyc
│   │   │   │   ├── sqlalchemy.py
│   │   │   │   └── _texttable.py
│   │   │   └── sources
│   │   │   ├── db_sources.py
│   │   │   ├── django.py
│   │   │   ├── file_input.py
│   │   │   ├── file_output.py
│   │   │   ├── http.py
│   │   │   ├── __init__.py
│   │   │   ├── memory_input.py
│   │   │   ├── output_to_memory.py
│   │   │   ├── params.py
│   │   │   ├── __pycache__
│   │   │   │   ├── db_sources.cpython-37.pyc
│   │   │   │   ├── django.cpython-37.pyc
│   │   │   │   ├── file_input.cpython-37.pyc
│   │   │   │   ├── file_output.cpython-37.pyc
│   │   │   │   ├── http.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── memory_input.cpython-37.pyc
│   │   │   │   ├── output_to_memory.cpython-37.pyc
│   │   │   │   ├── params.cpython-37.pyc
│   │   │   │   ├── querysets.cpython-37.pyc
│   │   │   │   ├── sheet_stream_source.cpython-37.pyc
│   │   │   │   └── sqlalchemy.cpython-37.pyc
│   │   │   ├── pydata
│   │   │   │   ├── arraysource.py
│   │   │   │   ├── bookdict.py
│   │   │   │   ├── common.py
│   │   │   │   ├── dictsource.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── arraysource.cpython-37.pyc
│   │   │   │   │   ├── bookdict.cpython-37.pyc
│   │   │   │   │   ├── common.cpython-37.pyc
│   │   │   │   │   ├── dictsource.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── records.cpython-37.pyc
│   │   │   │   └── records.py
│   │   │   ├── querysets.py
│   │   │   ├── sheet_stream_source.py
│   │   │   └── sqlalchemy.py
│   │   ├── __pycache__
│   │   │   ├── book.cpython-37.pyc
│   │   │   ├── _compact.cpython-37.pyc
│   │   │   ├── constants.cpython-37.pyc
│   │   │   ├── cookbook.cpython-37.pyc
│   │   │   ├── core.cpython-37.pyc
│   │   │   ├── deprecated.cpython-37.pyc
│   │   │   ├── exceptions.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── parser.cpython-37.pyc
│   │   │   ├── renderer.cpython-37.pyc
│   │   │   ├── sheet.cpython-37.pyc
│   │   │   ├── source.cpython-37.pyc
│   │   │   └── __version__.cpython-37.pyc
│   │   ├── renderer.py
│   │   ├── sheet.py
│   │   ├── source.py
│   │   └── __version__.py
│   └── pyexcel-0.6.6.dist-info
│   ├── direct_url.json
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── REQUESTED
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
25 directories, 147 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment