Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created January 2, 2019 19:26
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/9859388c4c2dadd2608bb11c86b94581 to your computer and use it in GitHub Desktop.
Save ryantm/9859388c4c2dadd2608bb11c86b94581 to your computer and use it in GitHub Desktop.
/nix/store/p4bzaq87s7brvp1wxhixlmxz120w4577-python3.7-Flask-API-1.1
├── lib
│   └── python3.7
│   └── site-packages
│   ├── flask_api
│   │   ├── app.py
│   │   ├── compat.py
│   │   ├── decorators.py
│   │   ├── exceptions.py
│   │   ├── __init__.py
│   │   ├── mediatypes.py
│   │   ├── negotiation.py
│   │   ├── parsers.py
│   │   ├── __pycache__
│   │   │   ├── app.cpython-37.pyc
│   │   │   ├── compat.cpython-37.pyc
│   │   │   ├── decorators.cpython-37.pyc
│   │   │   ├── exceptions.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── mediatypes.cpython-37.pyc
│   │   │   ├── negotiation.cpython-37.pyc
│   │   │   ├── parsers.cpython-37.pyc
│   │   │   ├── renderers.cpython-37.pyc
│   │   │   ├── request.cpython-37.pyc
│   │   │   ├── response.cpython-37.pyc
│   │   │   ├── settings.cpython-37.pyc
│   │   │   └── status.cpython-37.pyc
│   │   ├── renderers.py
│   │   ├── request.py
│   │   ├── response.py
│   │   ├── settings.py
│   │   ├── static
│   │   │   ├── css
│   │   │   │   ├── bootstrap.min.css
│   │   │   │   ├── bootstrap-tweaks.css
│   │   │   │   ├── default.css
│   │   │   │   └── prettify.css
│   │   │   ├── img
│   │   │   │   ├── glyphicons-halflings.png
│   │   │   │   ├── glyphicons-halflings-white.png
│   │   │   │   └── grid.png
│   │   │   └── js
│   │   │   ├── bootstrap.min.js
│   │   │   ├── default.js
│   │   │   ├── jquery-1.8.1-min.js
│   │   │   └── prettify-min.js
│   │   ├── status.py
│   │   ├── templates
│   │   │   └── base.html
│   │   └── tests
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── test_app.cpython-37.pyc
│   │   │   ├── test_exceptions.cpython-37.pyc
│   │   │   ├── test_mediatypes.cpython-37.pyc
│   │   │   ├── test_negotiation.cpython-37.pyc
│   │   │   ├── test_parsers.cpython-37.pyc
│   │   │   ├── test_renderers.cpython-37.pyc
│   │   │   ├── test_request.cpython-37.pyc
│   │   │   ├── test_settings.cpython-37.pyc
│   │   │   └── test_status.cpython-37.pyc
│   │   ├── test_app.py
│   │   ├── test_exceptions.py
│   │   ├── test_mediatypes.py
│   │   ├── test_negotiation.py
│   │   ├── test_parsers.py
│   │   ├── test_renderers.py
│   │   ├── test_request.py
│   │   ├── test_settings.py
│   │   └── test_status.py
│   └── Flask_API-1.1.dist-info
│   ├── INSTALLER
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
14 directories, 64 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment