Webserver written as express.js
Project description
express.py
Python implementation of the widely used express.js
Why
Going to answer this first: because yes. More out of boredom and wanting to do something with my time rather than playing games. But oh well, here it is.
Installation
Install this package with a very very very very very simple command:
# Unix / macOS:
python3 -m pip install --upgrade web-express-py
# Windows:
py -3 -m pip install --upgrade web-express-py
After this, you can just import express into any of your projects using:
from express import express
Ok here comes stealing examples from express.js
Hello world example
from express import express
app = express()
@app.get("/")
def helloWorld(req, res):
res.send("Hello World!")
app.listen(3000)
Basic routing
from express import express
app = express()
@app.get("/")
def helloWorld(req, res):
res.send("Hello World!")
@app.post("/")
def aPostRequest(req, res):
res.send("Got a POST request")
@app.put("/user")
def updateUser(req, res):
res.send("Got a PUT request at /user")
def deleteUser(req, res):
res.send("Got a DELETE request at /user")
app.delete("/user", deleteUser)
app.listen(3000)
More routing info
If you want to read all of the routing API through the guide???? click here
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file web_express_py-0.0.7.tar.gz.
File metadata
- Download URL: web_express_py-0.0.7.tar.gz
- Upload date:
- Size: 25.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
265c270c175cc3c79c6fb97089ee8cc0174d78f2f844372fc27b65252b1c7ac5
|
|
| MD5 |
88a722545e3f9ed113814e5e60f87c4a
|
|
| BLAKE2b-256 |
7067c9d0c6b8a7542f578988e487c547e26ebd9fe21a94096853d585788d19c0
|
File details
Details for the file web_express_py-0.0.7-py3-none-any.whl.
File metadata
- Download URL: web_express_py-0.0.7-py3-none-any.whl
- Upload date:
- Size: 24.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e30a6f378d59e7ee93d5ba5197b455f4a548af71563ab14188f9c03a848087ba
|
|
| MD5 |
7f85e7554342c97daca67b41037ffa9c
|
|
| BLAKE2b-256 |
2a7ceb993136b2f8ebf107050dcf7450c68c652f99e1af02ffafe31f6918d254
|