Express-Server is a lightweight and fast web server for Python, inspired by the simplicity of Express.js.
Simple Syntax
from express_server import express
app = express()
def home(req,res,next):
return res.send("Hello World")
app.get("/",home)
app.listen(3000)
This is a Python library available through the pip registry.
Before installing, download and install python. Python 3.1 or higher is required.
Installation is done using the pip command:
$ pip install express-server
We are actively working on improving and expanding this project. While many features are functional, there may be bugs or incomplete functionality. If you encounter any issues or have suggestions, feel free to open an issue or contribute to the development.
🔒 This project is not intended for production use, and it may not be secure.
As a work in progress, security considerations have not been fully addressed. Avoid using this project in a production environment or with sensitive data.
- PyPI Releases: https://pypi.org/project/express-server/
- Github Code: https://github.com/avinashtare/express-server-python