https://github.com/avinashtare/express-server-python
Express-Server is a lightweight and fast web server for Python, inspired by the simplicity of Express.js.
https://github.com/avinashtare/express-server-python
express express-python python
Last synced: 29 days ago
JSON representation
Express-Server is a lightweight and fast web server for Python, inspired by the simplicity of Express.js.
- Host: GitHub
- URL: https://github.com/avinashtare/express-server-python
- Owner: avinashtare
- License: mit
- Created: 2024-01-12T20:46:33.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-01T20:15:23.000Z (almost 2 years ago)
- Last Synced: 2025-09-24T23:16:35.199Z (3 months ago)
- Topics: express, express-python, python
- Language: Python
- Homepage: https://pypi.org/project/express-server/
- Size: 49.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Express-Server
Express-Server is a lightweight and fast web server for Python, inspired by the simplicity of Express.js.

**Simple Syntax**
```python
from express_server import express
app = express()
def home(req,res,next):
return res.send("Hello World")
app.get("/",home)
app.listen(3000)
```
### Installation
This is a [Python](https://python.org/) library available through the pip registry.
Before installing, download and install [python](https://www.python.org/downloads/). Python 3.1 or higher is required.
Installation is done using the pip command:
```shell
$ pip install express-server
```
#### 🛠️ **This project is currently in development! Use For Fun**
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.
#### Security Notice
🔒 **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.
#### Links
* PyPI Releases: https://pypi.org/project/express-server/
* Github Code: https://github.com/avinashtare/express-server-python