Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created February 2, 2020 05:30
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/0a0d31426a8a7a2b8e46e3eaf28bebc7 to your computer and use it in GitHub Desktop.
Save r-ryantm/0a0d31426a8a7a2b8e46e3eaf28bebc7 to your computer and use it in GitHub Desktop.
/nix/store/vs5s48ybscxyp8s5jxvlly109plbni0c-python3.7-uvicorn-0.11.2
├── bin
│   └── uvicorn
├── lib
│   └── python3.7
│   └── site-packages
│   ├── uvicorn
│   │   ├── config.py
│   │   ├── importer.py
│   │   ├── __init__.py
│   │   ├── lifespan
│   │   │   ├── __init__.py
│   │   │   ├── off.py
│   │   │   ├── on.py
│   │   │   └── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── off.cpython-37.pyc
│   │   │   └── on.cpython-37.pyc
│   │   ├── logging.py
│   │   ├── loops
│   │   │   ├── asyncio.py
│   │   │   ├── auto.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── asyncio.cpython-37.pyc
│   │   │   │   ├── auto.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── uvloop.cpython-37.pyc
│   │   │   └── uvloop.py
│   │   ├── __main__.py
│   │   ├── main.py
│   │   ├── middleware
│   │   │   ├── asgi2.py
│   │   │   ├── debug.py
│   │   │   ├── __init__.py
│   │   │   ├── message_logger.py
│   │   │   ├── proxy_headers.py
│   │   │   ├── __pycache__
│   │   │   │   ├── asgi2.cpython-37.pyc
│   │   │   │   ├── debug.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── message_logger.cpython-37.pyc
│   │   │   │   ├── proxy_headers.cpython-37.pyc
│   │   │   │   └── wsgi.cpython-37.pyc
│   │   │   └── wsgi.py
│   │   ├── protocols
│   │   │   ├── http
│   │   │   │   ├── auto.py
│   │   │   │   ├── h11_impl.py
│   │   │   │   ├── httptools_impl.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── auto.cpython-37.pyc
│   │   │   │   ├── h11_impl.cpython-37.pyc
│   │   │   │   ├── httptools_impl.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── utils.cpython-37.pyc
│   │   │   ├── utils.py
│   │   │   └── websockets
│   │   │   ├── auto.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── auto.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── websockets_impl.cpython-37.pyc
│   │   │   │   └── wsproto_impl.cpython-37.pyc
│   │   │   ├── websockets_impl.py
│   │   │   └── wsproto_impl.py
│   │   ├── __pycache__
│   │   │   ├── config.cpython-37.pyc
│   │   │   ├── importer.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── logging.cpython-37.pyc
│   │   │   ├── __main__.cpython-37.pyc
│   │   │   ├── main.cpython-37.pyc
│   │   │   ├── subprocess.cpython-37.pyc
│   │   │   └── workers.cpython-37.pyc
│   │   ├── subprocess.py
│   │   ├── supervisors
│   │   │   ├── __init__.py
│   │   │   ├── multiprocess.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── multiprocess.cpython-37.pyc
│   │   │   │   └── statreload.cpython-37.pyc
│   │   │   └── statreload.py
│   │   └── workers.py
│   └── uvicorn-0.11.2.dist-info
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE.md
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
22 directories, 77 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment