Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created June 23, 2020 07:06
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/e692bd37e3b6e5092dc4bb6e6801ae29 to your computer and use it in GitHub Desktop.
Save r-ryantm/e692bd37e3b6e5092dc4bb6e6801ae29 to your computer and use it in GitHub Desktop.
/nix/store/2q81101wfqyv6ln11sx32rkqw88vn994-python3.7-fastapi-0.55.1
├── lib
│   └── python3.7
│   └── site-packages
│   ├── fastapi
│   │   ├── applications.py
│   │   ├── background.py
│   │   ├── concurrency.py
│   │   ├── datastructures.py
│   │   ├── dependencies
│   │   │   ├── __init__.py
│   │   │   ├── models.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── models.cpython-37.pyc
│   │   │   │   └── utils.cpython-37.pyc
│   │   │   └── utils.py
│   │   ├── encoders.py
│   │   ├── exception_handlers.py
│   │   ├── exceptions.py
│   │   ├── __init__.py
│   │   ├── logger.py
│   │   ├── middleware
│   │   │   ├── cors.py
│   │   │   ├── gzip.py
│   │   │   ├── httpsredirect.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── cors.cpython-37.pyc
│   │   │   │   ├── gzip.cpython-37.pyc
│   │   │   │   ├── httpsredirect.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── trustedhost.cpython-37.pyc
│   │   │   │   └── wsgi.cpython-37.pyc
│   │   │   ├── trustedhost.py
│   │   │   └── wsgi.py
│   │   ├── openapi
│   │   │   ├── constants.py
│   │   │   ├── docs.py
│   │   │   ├── __init__.py
│   │   │   ├── models.py
│   │   │   ├── __pycache__
│   │   │   │   ├── constants.cpython-37.pyc
│   │   │   │   ├── docs.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── models.cpython-37.pyc
│   │   │   │   └── utils.cpython-37.pyc
│   │   │   └── utils.py
│   │   ├── param_functions.py
│   │   ├── params.py
│   │   ├── __pycache__
│   │   │   ├── applications.cpython-37.pyc
│   │   │   ├── background.cpython-37.pyc
│   │   │   ├── concurrency.cpython-37.pyc
│   │   │   ├── datastructures.cpython-37.pyc
│   │   │   ├── encoders.cpython-37.pyc
│   │   │   ├── exception_handlers.cpython-37.pyc
│   │   │   ├── exceptions.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── logger.cpython-37.pyc
│   │   │   ├── param_functions.cpython-37.pyc
│   │   │   ├── params.cpython-37.pyc
│   │   │   ├── requests.cpython-37.pyc
│   │   │   ├── responses.cpython-37.pyc
│   │   │   ├── routing.cpython-37.pyc
│   │   │   ├── staticfiles.cpython-37.pyc
│   │   │   ├── templating.cpython-37.pyc
│   │   │   ├── testclient.cpython-37.pyc
│   │   │   ├── utils.cpython-37.pyc
│   │   │   └── websockets.cpython-37.pyc
│   │   ├── py.typed
│   │   ├── requests.py
│   │   ├── responses.py
│   │   ├── routing.py
│   │   ├── security
│   │   │   ├── api_key.py
│   │   │   ├── base.py
│   │   │   ├── http.py
│   │   │   ├── __init__.py
│   │   │   ├── oauth2.py
│   │   │   ├── open_id_connect_url.py
│   │   │   ├── __pycache__
│   │   │   │   ├── api_key.cpython-37.pyc
│   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   ├── http.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── oauth2.cpython-37.pyc
│   │   │   │   ├── open_id_connect_url.cpython-37.pyc
│   │   │   │   └── utils.cpython-37.pyc
│   │   │   └── utils.py
│   │   ├── staticfiles.py
│   │   ├── templating.py
│   │   ├── testclient.py
│   │   ├── utils.py
│   │   └── websockets.py
│   └── fastapi-0.55.1.dist-info
│   ├── direct_url.json
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
15 directories, 88 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment