"A simple web framework based on Sanic"
Project description
Services
This is a pseudo-framework built in the shoulders of sanic and inspired by Django
The intention is to provide some tools for web services development with focus on data services.
The library tries to be the less intrusive possible, it is not intended to be a new framework but more to provided abstractions and code generation tools over good established libraries and technologies.
Features
- Async Web sever (Sanic)
- Generation code for apps (like Django)
- Multiple databases support (sync and async using SQLAlchemy 2.0)
- Schema migration tools pre-configurated to work in the first run (Alembic)
- OpenApi/Swagger docs generation (Sanic)
- Simple user system and authentication endpoints
- JWT support
- Vite support
- Simple tasks implementations
- Storage implementation for uploading files (local and google storage)
Quickstart
Note: please use your favorite tool for python environments and dependencies
python3 -m venv .venv
source .venv/bin/activate
pip install ai-services
Then you can initialize a project:
create-srv-project .
╭───────────────────────────────────────╮
│ 😸 Hello and welcome to AI services │
╰───────────────────────────────────────╯
Write a name for default web app please, avoid spaces and capital letters: (test_app):
The final name for the project is: test_app
╭─────────────────────────────────────────╮
│ 😸 Congrats!!! Project test_app created │
╰─────────────────────────────────────────╯
To test if everything is working you can run the following command:
srv web -L -D
It will ask you for a name for the firts app.
Then your folder will be:
» tree -a -L 2
.
├── alembic.ini
├── example
│ ├── __init__.py
│ ├── __pycache__
│ ├── api
│ ├── commands
│ ├── db.py
│ ├── managers.py
│ ├── migrations
│ ├── models.py
│ ├── tasks.py
│ ├── templates
│ ├── users_models.py
│ ├── views.py
│ └── web.py
└── server_conf
├── __init__.py
└── settings.py
Finally, the last step if you want to use the User system provided in the code, you will need to run a revision and upgrade action:
srv db revision test_app -m first -R 0001 -m first
srv db upgrade test_app
With the default configuration, it will creates a db.sqlite
file in the root of your project.
Note: srv db uses alembic under the hood and Alembic is configurated in a way that is possible keep using it outside of srv db
, it is more like a wrapper.
Status
:warning: The library is being in use in some production projects, but it is still under active development and therefore full backward compatibility is not guaranteed before reaching v1.0.0.
Roadmap:
- UserManager abstraction
- Add groups
- User Registration
- Expand command for users administration
- Custom commands hooks in
srv
- Dev env files {Makefile, Dockerfile, docker-compose, etc}
- Task Queue abstraction {Redis, Google Cloud Pub/Sub, etc}
- Simple task system implemented
- File upload (local and google storage)
- OAuth 2.0 integration
- documentation (guides and reference api)
- Tools and abstraction for logging (stdout, google cloud log, etc)
- Metrics (prometheus)
- Update to Sanic 22.9
- Update to SQLAlchemy 2.0
- Websockets examples
FAQ
Why Sanic?
Regardless FastAPI is the most popular (50K starts in GH vs 16k for sanic) async framework right know and django is the most feature complete and stable(no proofs) web framework in the python world. What is very appealing for me is the own server implementation of Sanic which seems simpler than WSGI and AWSGI (you can still use ASGI with sanic if you want), and because most of the time I need to build web apis to expose Machine Learning models, I found it to be a good match.
Usually models are very CPU and Mem intensive (an average Word2vec model needs at least 500mb with peaks of 1gb of RAM), so the strategy here is to load it in one main process and share it between the rest of workers. Sanic has a lot of conversations in their community about how process could be managed https://amhopkins.com/background-job-worker.
And why not Django, is because their ORM. I found SQLAlchemy more flexible and lightway than Django ORM.
In data/machine learning solutions is common to work in environments outside of the request/response cycle of a web app (Jupyter, Batch/ETL process, etc) it seems unnecesary to load a web environment for those cases. The other reason is that SQLAlchemy allows to work directly with RAW sql or table, inspect them and avoid the ORM part of the framework, which is very convenient when working with different sources of data.
Release
see docs/release.md
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 ai_services-0.5.5.tar.gz
.
File metadata
- Download URL: ai_services-0.5.5.tar.gz
- Upload date:
- Size: 123.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.23.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 375dd7ad671ecc5eab44086ec98cdee088ecb4686c18aa479072122106fbb6ba |
|
MD5 | 53e6d64b38dd34d84d788cd293b8a294 |
|
BLAKE2b-256 | d3e3fc0bae3a6e1901f20096641116315a2a2b39db443767a05545d442a2629d |
File details
Details for the file ai_services-0.5.5-py3-none-any.whl
.
File metadata
- Download URL: ai_services-0.5.5-py3-none-any.whl
- Upload date:
- Size: 176.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.23.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 275d42e25057c76f96d0ee8fd6f264d2a736c37090a1268d7a5ae8b5e9a20548 |
|
MD5 | 88f7370e95987183a76d4550957ee04e |
|
BLAKE2b-256 | 62b3dc2228ddd85be1dbb1f8c0f10e879b91c3db20a5dd13a1e2793224fa7782 |