├── .gitignore ├── LICENSE ├── README.md ├── json_head.py ├── now.json └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | *.pyc 3 | .now -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/json-head/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/json-head/HEAD/README.md -------------------------------------------------------------------------------- /json_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/json-head/HEAD/json_head.py -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/json-head/HEAD/now.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | sanic==20.12.7 2 | aiohttp==3.7.4 3 | --------------------------------------------------------------------------------