Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 568 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 568 Bytes

http-server

A simple asynchronous http server implemented in Python.

Features

  • 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.

To run the server

use python -m app.main or ./your_server.sh

Note

This is the solution to the "Build Your Own HTTP server" Challenge on Codecrafters