Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created November 4, 2020 01:37
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/b35ac780f9effe95fc50a3895cb7a925 to your computer and use it in GitHub Desktop.
Save r-ryantm/b35ac780f9effe95fc50a3895cb7a925 to your computer and use it in GitHub Desktop.
/nix/store/p8gn201yvxwlsmv3kwifznxywyvswzdg-python3.8-papis-0.11.1
├── bin
│   └── papis
├── etc
│   └── bash_completion.d
│   └── papis.sh
├── lib
│   └── python3.8
│   └── site-packages
│   ├── papis
│   │   ├── api.py
│   │   ├── arxiv.py
│   │   ├── base.py
│   │   ├── bibtex.py
│   │   ├── cli.py
│   │   ├── commands
│   │   │   ├── add.py
│   │   │   ├── addto.py
│   │   │   ├── bibtex.py
│   │   │   ├── browse.py
│   │   │   ├── config.py
│   │   │   ├── default.py
│   │   │   ├── edit.py
│   │   │   ├── explore.py
│   │   │   ├── export.py
│   │   │   ├── external.py
│   │   │   ├── git.py
│   │   │   ├── __init__.py
│   │   │   ├── list.py
│   │   │   ├── mv.py
│   │   │   ├── open.py
│   │   │   ├── __pycache__
│   │   │   │   ├── add.cpython-38.pyc
│   │   │   │   ├── addto.cpython-38.pyc
│   │   │   │   ├── bibtex.cpython-38.pyc
│   │   │   │   ├── browse.cpython-38.pyc
│   │   │   │   ├── config.cpython-38.pyc
│   │   │   │   ├── default.cpython-38.pyc
│   │   │   │   ├── edit.cpython-38.pyc
│   │   │   │   ├── explore.cpython-38.pyc
│   │   │   │   ├── export.cpython-38.pyc
│   │   │   │   ├── external.cpython-38.pyc
│   │   │   │   ├── git.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   ├── list.cpython-38.pyc
│   │   │   │   ├── mv.cpython-38.pyc
│   │   │   │   ├── open.cpython-38.pyc
│   │   │   │   ├── rename.cpython-38.pyc
│   │   │   │   ├── rm.cpython-38.pyc
│   │   │   │   ├── run.cpython-38.pyc
│   │   │   │   └── update.cpython-38.pyc
│   │   │   ├── rename.py
│   │   │   ├── rm.py
│   │   │   ├── run.py
│   │   │   └── update.py
│   │   ├── config.py
│   │   ├── crossref.py
│   │   ├── database
│   │   │   ├── base.py
│   │   │   ├── cache.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── base.cpython-38.pyc
│   │   │   │   ├── cache.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   └── whoosh.cpython-38.pyc
│   │   │   └── whoosh.py
│   │   ├── dissemin.py
│   │   ├── docmatcher.py
│   │   ├── document.py
│   │   ├── downloaders
│   │   │   ├── acs.py
│   │   │   ├── annualreviews.py
│   │   │   ├── aps.py
│   │   │   ├── base.py
│   │   │   ├── citeseerx.py
│   │   │   ├── fallback.py
│   │   │   ├── frontiersin.py
│   │   │   ├── get.py
│   │   │   ├── hal.py
│   │   │   ├── ieee.py
│   │   │   ├── __init__.py
│   │   │   ├── iopscience.py
│   │   │   ├── __pycache__
│   │   │   │   ├── acs.cpython-38.pyc
│   │   │   │   ├── annualreviews.cpython-38.pyc
│   │   │   │   ├── aps.cpython-38.pyc
│   │   │   │   ├── base.cpython-38.pyc
│   │   │   │   ├── citeseerx.cpython-38.pyc
│   │   │   │   ├── fallback.cpython-38.pyc
│   │   │   │   ├── frontiersin.cpython-38.pyc
│   │   │   │   ├── get.cpython-38.pyc
│   │   │   │   ├── hal.cpython-38.pyc
│   │   │   │   ├── ieee.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   ├── iopscience.cpython-38.pyc
│   │   │   │   ├── sciencedirect.cpython-38.pyc
│   │   │   │   ├── scitationaip.cpython-38.pyc
│   │   │   │   ├── springer.cpython-38.pyc
│   │   │   │   ├── tandfonline.cpython-38.pyc
│   │   │   │   ├── thesesfr.cpython-38.pyc
│   │   │   │   └── worldscientific.cpython-38.pyc
│   │   │   ├── sciencedirect.py
│   │   │   ├── scitationaip.py
│   │   │   ├── springer.py
│   │   │   ├── tandfonline.py
│   │   │   ├── thesesfr.py
│   │   │   └── worldscientific.py
│   │   ├── exceptions.py
│   │   ├── filetype.py
│   │   ├── format.py
│   │   ├── git.py
│   │   ├── importer.py
│   │   ├── __init__.py
│   │   ├── isbnplus.py
│   │   ├── isbn.py
│   │   ├── json.py
│   │   ├── library.py
│   │   ├── pick.py
│   │   ├── plugin.py
│   │   ├── pubmed.py
│   │   ├── __pycache__
│   │   │   ├── api.cpython-38.pyc
│   │   │   ├── arxiv.cpython-38.pyc
│   │   │   ├── base.cpython-38.pyc
│   │   │   ├── bibtex.cpython-38.pyc
│   │   │   ├── cli.cpython-38.pyc
│   │   │   ├── config.cpython-38.pyc
│   │   │   ├── crossref.cpython-38.pyc
│   │   │   ├── dissemin.cpython-38.pyc
│   │   │   ├── docmatcher.cpython-38.pyc
│   │   │   ├── document.cpython-38.pyc
│   │   │   ├── exceptions.cpython-38.pyc
│   │   │   ├── filetype.cpython-38.pyc
│   │   │   ├── format.cpython-38.pyc
│   │   │   ├── git.cpython-38.pyc
│   │   │   ├── importer.cpython-38.pyc
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   ├── isbn.cpython-38.pyc
│   │   │   ├── isbnplus.cpython-38.pyc
│   │   │   ├── json.cpython-38.pyc
│   │   │   ├── library.cpython-38.pyc
│   │   │   ├── pick.cpython-38.pyc
│   │   │   ├── plugin.cpython-38.pyc
│   │   │   ├── pubmed.cpython-38.pyc
│   │   │   ├── strings.cpython-38.pyc
│   │   │   ├── utils.cpython-38.pyc
│   │   │   └── yaml.cpython-38.pyc
│   │   ├── strings.py
│   │   ├── tui
│   │   │   ├── app.py
│   │   │   ├── __init__.py
│   │   │   ├── picker.py
│   │   │   ├── __pycache__
│   │   │   │   ├── app.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   ├── picker.cpython-38.pyc
│   │   │   │   └── utils.cpython-38.pyc
│   │   │   ├── utils.py
│   │   │   └── widgets
│   │   │   ├── command_line_prompt.py
│   │   │   ├── diff.py
│   │   │   ├── __init__.py
│   │   │   ├── list.py
│   │   │   └── __pycache__
│   │   │   ├── command_line_prompt.cpython-38.pyc
│   │   │   ├── diff.cpython-38.pyc
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   └── list.cpython-38.pyc
│   │   ├── utils.py
│   │   └── yaml.py
│   └── papis-0.11.1.dist-info
│   ├── AUTHORS
│   ├── direct_url.json
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE.txt
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
├── nix-support
│   └── propagated-build-inputs
└── share
├── applications
│   └── papis.desktop
├── doc
│   └── papis
│   ├── AUTHORS
│   ├── CHANGELOG.md
│   ├── LICENSE.txt
│   └── README.rst
└── zsh
└── site-functions
└── _papis
26 directories, 168 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment