An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# madu

![](https://img.shields.io/github/license/uncle-lv/madu) ![](https://img.shields.io/github/stars/uncle-lv/madu) ![](https://img.shields.io/github/issues/uncle-lv/madu) ![](https://img.shields.io/github/forks/uncle-lv/madu) ![flask version](https://img.shields.io/badge/flask-2.0.1-red) ![python version](https://img.shields.io/badge/python-3.7.0-blue)

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.

hello flask

## Contributions

I'm looking forward to working with you to complete madu!

## Lisence

[MIT](https://github.com/uncle-lv/madu/blob/main/LICENSE)