Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created March 17, 2018 08:09
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/ef3eb260a3fd46598a3b70c142c2ef2c to your computer and use it in GitHub Desktop.
Save ryantm/ef3eb260a3fd46598a3b70c142c2ef2c to your computer and use it in GitHub Desktop.
/nix/store/58kz8y29n2habv056d7iz20484rq87mr-nextcloud-news-updater-10.0.1
├── bin
│   └── nextcloud-news-updater
├── lib
│   └── python3.6
│   └── site-packages
│   ├── nextcloud_news_updater
│   │   ├── api
│   │   │   ├── api.py
│   │   │   ├── cli.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── api.cpython-36.pyc
│   │   │   │   ├── cli.cpython-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── updater.cpython-36.pyc
│   │   │   │   └── web.cpython-36.pyc
│   │   │   ├── updater.py
│   │   │   └── web.py
│   │   ├── common
│   │   │   ├── argumentparser.py
│   │   │   ├── __init__.py
│   │   │   ├── logger.py
│   │   │   └── __pycache__
│   │   │   ├── argumentparser.cpython-36.pyc
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   └── logger.cpython-36.pyc
│   │   ├── config.py
│   │   ├── container.py
│   │   ├── dependencyinjection
│   │   │   ├── container.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── container.cpython-36.pyc
│   │   │   └── __init__.cpython-36.pyc
│   │   ├── __init__.py
│   │   ├── __main__.py
│   │   ├── __pycache__
│   │   │   ├── config.cpython-36.pyc
│   │   │   ├── container.cpython-36.pyc
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   ├── __main__.cpython-36.pyc
│   │   │   └── version.cpython-36.pyc
│   │   ├── version.py
│   │   └── version.txt
│   ├── nextcloud_news_updater-10.0.1.dist-info
│   │   ├── DESCRIPTION.rst
│   │   ├── entry_points.txt
│   │   ├── INSTALLER
│   │   ├── METADATA
│   │   ├── metadata.json
│   │   ├── RECORD
│   │   ├── top_level.txt
│   │   └── WHEEL
│   └── tests
│   ├── __init__.py
│   ├── nextcloud_news_updater
│   │   ├── api
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── test_cli.cpython-36.pyc
│   │   │   │   └── test_web.cpython-36.pyc
│   │   │   ├── test_cli.py
│   │   │   └── test_web.py
│   │   ├── dependencyinjection
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   └── test_container.cpython-36.pyc
│   │   │   └── test_container.py
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   └── test_config.cpython-36.pyc
│   │   ├── test_config.py
│   │   └── updaters
│   │   ├── __init__.py
│   │   └── __pycache__
│   │   └── __init__.cpython-36.pyc
│   └── __pycache__
│   └── __init__.cpython-36.pyc
└── nix-support
└── propagated-build-inputs
24 directories, 59 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment