Fire up your models with the flame 🔥
Project description
Fire up your models with the flame 🔥
Flama
Flama is a python library which establishes a standard framework for development and deployment of APIs with special focus on machine learning (ML). The main aim of the framework is to make ridiculously simple the deployment of ML APIs, simplifying (when possible) the entire process to a single line of code.
The library builds on Starlette, and provides an easy-to-learn philosophy to speed up the building of highly performant GraphQL, REST and ML APIs. Besides, it comprises an ideal solution for the development of asynchronous and production-ready services, offering automatic deployment for ML models.
Some remarkable characteristics:
- Generic classes for API resources with the convenience of standard CRUD methods over SQLAlchemy tables.
- A schema system (based on Marshmallow or Typesystem) which allows the declaration of inputs and outputs of endpoints very easily, with the convenience of reliable and automatic data-type validation.
- Dependency injection to make ease the process of managing parameters needed in endpoints via the use of
Component
s. Flama ASGI objects likeRequest
,Response
,Session
and so on are defined asComponent
s ready to be injected in your endpoints. Component
s as the base of the plugin ecosystem, allowing you to create custom or use those already defined in your endpoints, injected as parameters.- Auto generated API schema using OpenAPI standard.
- Auto generated
docs
, and provides a Swagger UI and ReDoc endpoints. - Automatic handling of pagination, with several methods at your disposal such as
limit-offset
andpage numbering
, to name a few.
Installation
Flama is fully compatible with all supported versions of Python. We recommend you to use the latest version available.
For a detailed explanation on how to install flama visit: https://flama.dev/docs/getting-started/installation.
Getting Started
Visit https://flama.dev/docs/getting-started/quickstart to get started with Flama.
Documentation
Visit https://flama.dev/docs/ to view the full documentation.
Example
from flama import Flama
app = Flama(
title="Hello-🔥",
version="1.0",
description="My first API",
)
@app.route("/")
def home():
"""
tags:
- Salute
summary:
Returns a warming message.
description:
This is a more detailed description of the method itself.
Here we can give all the details required and they will appear
automatically in the auto-generated docs.
responses:
200:
description: Warming hello message!
"""
return {"message": "Hello 🔥"}
This example will build and run a Hello 🔥
API. To run it:
flama run examples.hello_flama:app
Authors
- José Antonio Perdiguero López (@perdy)
- Miguel Durán-Olivencia (@migduroli)
Contributing
This project is absolutely open to contributions so if you have a nice idea, please read our contributing docs before submitting a pull request.
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 flama-1.0.1.tar.gz
.
File metadata
- Download URL: flama-1.0.1.tar.gz
- Upload date:
- Size: 270.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.10.6 Linux/5.15.0-1031-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aca162535d592f314735370050dedf947ee592b87b558084c050a057e991c2f4 |
|
MD5 | 68cd6a29b0c79d40671ab0dd2588807f |
|
BLAKE2b-256 | 9aef3f602be37d65bf347e7b57260038e1e20517468b343e4e31b3f6e7bea0de |
File details
Details for the file flama-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: flama-1.0.1-py3-none-any.whl
- Upload date:
- Size: 302.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.10.6 Linux/5.15.0-1031-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 45a1fb4feb9396debdc31b9e0ee1e3de4848ee96e87312fb456ccb7a88468a39 |
|
MD5 | 01d89437372ae282ba9f0348eb58667f |
|
BLAKE2b-256 | 8493d822912040a035c86169cf219737f73bce566b4347bdfbcca921d0ec0eb6 |