A simple asynchronous http server implemented in Python.
- It can respond with a 200.
- It can respond with a 404.
- It can respond with content.
- It can handle concurrent connections.
- It can GET a file.
- It can handle POST request and write to a file.
use python -m app.main
or ./your_server.sh
This is the solution to the "Build Your Own HTTP server" Challenge on Codecrafters