The package provides enhanced support for writing REST APIs with Muffin framework
Project description
Muffin-REST – provides enhanced support for writing REST APIs with Muffin.
Features
API class to simplify the creation of REST APIs;
Automatic filtering and sorting for resources;
Support for Peewee ORM, Mongo, SQLAlchemy Core;
Auto documentation with Swagger;
Requirements
python >= 3.7
Installation
Muffin-REST should be installed using pip:
pip install muffin-rest
With SQLAlchemy Core support:
pip install muffin-rest[sqlalchemy]
With Peewee ORM support:
pip install muffin-rest[peewee]
With YAML support for autodocumentation:
pip install muffin-rest[yaml]
Usage
Create an API:
from muffin_rest import API
api = API()
Create endpoints and connect them to the API (example for sqlalchemy):
from muffin_rest.sqlalchemy import SAEndpoint
from project.api import api
@api.route
class MyEndpoint(SAEndpoint):
class Meta:
table = MyTable
database = db
Connect it to your Muffin application:
from project.api import api
api.setup(app, prefix='/api/v1')
Bug tracker
If you have any suggestions, bug reports or annoyances please report them to the issue tracker at https://github.com/klen/muffin-rest/issues
Contributing
Development of Muffin-REST happens at: https://github.com/klen/muffin-rest
Contributors
klen (Kirill Klenov)
License
Licensed under a MIT license.
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
File details
Details for the file muffin_rest-7.3.4.tar.gz
.
File metadata
- Download URL: muffin_rest-7.3.4.tar.gz
- Upload date:
- Size: 24.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.10.12 Linux/6.5.0-1023-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 45c2cf083ca064a276ece95de71e22b3d2a029c3e89bfb919d971f0db119e429 |
|
MD5 | b4fde078308c681ba28764f51984e684 |
|
BLAKE2b-256 | f3a26e2b5bc6b1ce321b4a36d1fc639a83c391b7be31c722264fc21befefd87c |
File details
Details for the file muffin_rest-7.3.4-py3-none-any.whl
.
File metadata
- Download URL: muffin_rest-7.3.4-py3-none-any.whl
- Upload date:
- Size: 35.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.10.12 Linux/6.5.0-1023-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43d1029f6f7fd4bf6c20f4176477047dc6af3398790d6a125827f88b792b6368 |
|
MD5 | 6e5569f4de8a7a9313b83e01fbc4d017 |
|
BLAKE2b-256 | 8a4c14e1e7f6165cd9721567b908b3ad52a051695dbca2a44ea065095a05b8b6 |