JoshCap20 / areion

The fastest Python web server. A lightweight, fast, and extensible asynchronous Python web server framework.
MIT License
0 stars 1 forks source link

Implement support for handling request body #68

Closed JoshCap20 closed 1 month ago

JoshCap20 commented 1 month ago

Body is now parsed from HTTP request into the request object.

It is currently stored as bytes for efficiency, but in future could add methods to sanitize it. Leaving to developer for now

Closes #64 and closes #60