A really lightweight and simple API server, built on the socketserver module
Project description
Meager
Meager is a tiny web framework built on the socketserver module in Python.
Installation
Meager is available on PyPI.
You can install meager using pip: pip install meager
Examples
This is the simplest way of using meager, returning html upon a request to "/".
The module is heavily inspired by flask, and it's ease of use, and readability.
Example returning html
import meager
app = meager.Server(host="0.0.0.0", port=8080) # Set binding ip address and port, default is localhost:2090
@app.router.route("/")
def index(request):
return "<h1>Hello world!</h1>"
app.serve()
Example returning JSON
import meager
app = meager.Server()
example_dict = {"key1": "val1", "key2": "val2"}
@app.router.route("/")
def index(request):
return example_dict # It can detect if you're sending a dictionary
# and automatically changes the "Content-Type:" header to application/json
app.serve()
Dynamic GET example
import meager
app = meager.Server()
@app.router.route(request, "/api/<name>")
def api(name):
return {"status": "success", "name": name}
app.serve()
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
meager-0.3.5.tar.gz
(3.9 kB
view details)
File details
Details for the file meager-0.3.5.tar.gz
.
File metadata
- Download URL: meager-0.3.5.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3d03729270841919b50eee12a40a45ee3e9309f6e683dbfc77de0e2ed5253a84 |
|
MD5 | 6522c870e408226f7e116caa70bc041e |
|
BLAKE2b-256 | 8f210e1bf9c50dc0ee4100c6760ae85cf67e26e4b757df693f93dfc4daa84903 |