https://github.com/uncle-lv/madu
madu is a simple WSGI HTTP Server
https://github.com/uncle-lv/madu
python wsgi-server
Last synced: 8 months ago
JSON representation
madu is a simple WSGI HTTP Server
- Host: GitHub
- URL: https://github.com/uncle-lv/madu
- Owner: uncle-lv
- License: mit
- Created: 2021-08-25T03:00:47.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-09-20T13:13:36.000Z (over 4 years ago)
- Last Synced: 2024-10-11T21:43:09.923Z (over 1 year ago)
- Topics: python, wsgi-server
- Language: Python
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# madu
     
madu is a simple WSGI HTTP Server
## Background
Out of my personal interests, I started this project. So there is no schedule for it. If you are also interested in it, welcome to star and fork it.
## Usage
### Install dependencies
Install dependencies from requirements.txt.
```bash
$ pip install -r requirements.txt
```
### Start madu
Using one of the commands below to start madu. It only supports Python3.
```bash
$ python server.py app:app
$ python3 server.py app:app
```
### Request
Sending a HTTP request with URL `http://localhost:8000/hello` by using your browser or other HTTP clients. Then you can see the response like this.
## Contributions
I'm looking forward to working with you to complete madu!
## Lisence
[MIT](https://github.com/uncle-lv/madu/blob/main/LICENSE)