Lightweight framework for building resource-oriented applications.
Project description
Roax
Ro·ax /ˈɹoʊ.æks/: A lightweight Python resource-oriented framework.
Introduction
Roax is a lightweight framework for building resource-oriented applications in Python. By composing your application as a set of resources that expose operations through a uniform interface, they can be automatically exposed through a REST and/or command line interface.
Features
- Resource operations accessed through WSGI based REST API.
- Command-line interface to resource operations.
- Generates OpenAPI interface description, compatible with Swagger UI.
- Schema enforcement of resource operation parameters and return values.
- Authorization to resource operations enforced through imperative security policies.
Quick start
Installation
pip install roax
Hello world
Here is a minimal application that responds with "Hello world!"
when the
client accesses http://localhost:8000/hello.
import roax.schema as schema
from roax.resource import Resource, operation
from roax.wsgi import App
from wsgiref.simple_server import make_server
class HelloResource(Resource):
@operation(returns=schema.str(), security=[])
def read(self):
return "Hello world!"
app = App("/", "Hello", "1.0")
app.register_resource("/hello", HelloResource())
if __name__== "__main__":
make_server("", 8000, app).serve_forever()
Develop
poetry install
poetry run pre-commit install
Test
poetry run pytest
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
roax-1.9.0.tar.gz
(33.5 kB
view details)
Built Distribution
roax-1.9.0-py3-none-any.whl
(38.0 kB
view details)
File details
Details for the file roax-1.9.0.tar.gz
.
File metadata
- Download URL: roax-1.9.0.tar.gz
- Upload date:
- Size: 33.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.17 CPython/3.7.4+ Linux/5.2.0-2-amd64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dbae51b4c9ffcb67c6935c8940011d00a8b3625b466541cb153f48b8e6c5b9fe |
|
MD5 | 1c72dd51e02ca438b4a32ace34ec718d |
|
BLAKE2b-256 | f1dcdcbd99997e4e763cd4187751ee7a26be756da4ce89a8d99ab352340f27ec |
File details
Details for the file roax-1.9.0-py3-none-any.whl
.
File metadata
- Download URL: roax-1.9.0-py3-none-any.whl
- Upload date:
- Size: 38.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.17 CPython/3.7.4+ Linux/5.2.0-2-amd64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 015ac8f6d1a8792f4b849fb6fdf6fd766e93ccb2b95be1294c9647881465c530 |
|
MD5 | a48ada6a3cb16a55b438ea8b19ac2cb5 |
|
BLAKE2b-256 | 0bd933c56d9fd0b33d807b75f02cc139bece4a724644b95449e26c4cb5253f8b |