├── .gitignore ├── .travis.yml ├── Makefile ├── README.md ├── albatross ├── __init__.py ├── compat.py ├── data_types.py ├── http_error.py ├── request.py ├── response.py ├── server.py └── status_codes.py ├── bench ├── benchmark.sh ├── client.py ├── data.txt ├── run_aiohttp.py ├── run_albatross.py ├── run_flask.py └── run_tornado.py ├── examples └── basic.py ├── setup.py └── tests ├── __init__.py ├── test_data_types.py ├── test_request.py ├── test_response.py └── test_server.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/README.md -------------------------------------------------------------------------------- /albatross/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/albatross/__init__.py -------------------------------------------------------------------------------- /albatross/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/albatross/compat.py -------------------------------------------------------------------------------- /albatross/data_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/albatross/data_types.py -------------------------------------------------------------------------------- /albatross/http_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/albatross/http_error.py -------------------------------------------------------------------------------- /albatross/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/albatross/request.py -------------------------------------------------------------------------------- /albatross/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/albatross/response.py -------------------------------------------------------------------------------- /albatross/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/albatross/server.py -------------------------------------------------------------------------------- /albatross/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/albatross/status_codes.py -------------------------------------------------------------------------------- /bench/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/bench/benchmark.sh -------------------------------------------------------------------------------- /bench/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/bench/client.py -------------------------------------------------------------------------------- /bench/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/bench/data.txt -------------------------------------------------------------------------------- /bench/run_aiohttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/bench/run_aiohttp.py -------------------------------------------------------------------------------- /bench/run_albatross.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/bench/run_albatross.py -------------------------------------------------------------------------------- /bench/run_flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/bench/run_flask.py -------------------------------------------------------------------------------- /bench/run_tornado.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/bench/run_tornado.py -------------------------------------------------------------------------------- /examples/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/examples/basic.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_data_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/tests/test_data_types.py -------------------------------------------------------------------------------- /tests/test_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/tests/test_request.py -------------------------------------------------------------------------------- /tests/test_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/tests/test_response.py -------------------------------------------------------------------------------- /tests/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kespindler/albatross/HEAD/tests/test_server.py --------------------------------------------------------------------------------