Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/airtai/faststream
FastStream is a powerful and easy-to-use Python framework for building asynchronous services interacting with event streams such as Apache Kafka, RabbitMQ, NATS and Redis.
https://github.com/airtai/faststream
asyncapi asyncio distributed-systems fastkafka faststream kafka nats propan python rabbitmq redis stream-processing
Last synced: 7 days ago
JSON representation
FastStream is a powerful and easy-to-use Python framework for building asynchronous services interacting with event streams such as Apache Kafka, RabbitMQ, NATS and Redis.
- Host: GitHub
- URL: https://github.com/airtai/faststream
- Owner: airtai
- License: apache-2.0
- Created: 2022-12-01T09:46:18.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-28T01:26:59.000Z (6 months ago)
- Last Synced: 2024-04-28T02:39:44.363Z (6 months ago)
- Topics: asyncapi, asyncio, distributed-systems, fastkafka, faststream, kafka, nats, propan, python, rabbitmq, redis, stream-processing
- Language: Python
- Homepage: https://faststream.airt.ai/latest/
- Size: 157 MB
- Stars: 1,796
- Watchers: 16
- Forks: 78
- Open Issues: 45
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Citation: CITATION.cff
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-streaming - FastStream - powerful and easy-to-use Python library simplifying the process of writing producers and consumers for message queues, handling all the parsing, networking and documentation generation automatically. Supports multiple protocols such as Apache Kafka, RabbitMQ and alike. (Table of Contents / Streaming Library)
- awesome-production-machine-learning - FastStream - A modern broker-agnostic streaming Python framework supporting Apache Kafka, RabbitMQ and NATS protocols, inspired by FastAPI and easily integratable with other web frameworks. (Data Stream Processing)
- awesome-pydantic - FastStream - FastStream simplifies the process of writing producers and consumers for message queues, handling all the parsing, networking and documentation generation automatically. (Web)
- awesome-pydantic - FastStream - FastStream simplifies the process of writing producers and consumers for message queues, handling all the parsing, networking and documentation generation automatically. (Web)
README
# FastStream
Effortless event stream integration for your services
---
---
## Features
[**FastStream**](https://faststream.airt.ai/latest/) simplifies the process of writing producers and consumers for message queues, handling all the
parsing, networking and documentation generation automatically.Making streaming microservices has never been easier. Designed with junior developers in mind, **FastStream** simplifies your work while keeping the door open for more advanced use cases. Here's a look at the core features that make **FastStream** a go-to framework for modern, data-centric microservices.
- **Multiple Brokers**: **FastStream** provides a unified API to work across multiple message brokers ([**Kafka**](https://kafka.apache.org/), [**RabbitMQ**](https://www.rabbitmq.com/), [**NATS**](https://nats.io/), [**Redis**](https://redis.io/) support)
- [**Pydantic Validation**](#writing-app-code): Leverage [**Pydantic's**](https://docs.pydantic.dev/) validation capabilities to serialize and validate incoming messages
- [**Automatic Docs**](#project-documentation): Stay ahead with automatic [**AsyncAPI**](https://www.asyncapi.com/) documentation
- **Intuitive**: Full-typed editor support makes your development experience smooth, catching errors before they reach runtime
- [**Powerful Dependency Injection System**](#dependencies): Manage your service dependencies efficiently with **FastStream**'s built-in DI system
- [**Testable**](#testing-the-service): Supports in-memory tests, making your CI/CD pipeline faster and more reliable
- **Extensible**: Use extensions for lifespans, custom serialization and middleware
- [**Integrations**](#any-framework): **FastStream** is fully compatible with any HTTP framework you want ([**FastAPI**](#fastapi-plugin) especially)
That's **FastStream** in a nutshell—easy, efficient, and powerful. Whether you're just starting with streaming microservices or looking to scale, **FastStream** has got you covered.
---
**Documentation**: https://faststream.airt.ai/latest/
---
## History
**FastStream** is a new package based on the ideas and experiences gained from [**FastKafka**](https://github.com/airtai/fastkafka) and [**Propan**](https://github.com/lancetnik/propan). By joining our forces, we picked up the best from both packages and created a unified way to write services capable of processing streamed data regardless of the underlying protocol. We'll continue to maintain both packages, but new development will be in this project. If you are starting a new service, this package is the recommended way to do it.
---
## Install
**FastStream** works on **Linux**, **macOS**, **Windows** and most **Unix**-style operating systems.
You can install it with `pip` as usual:```sh
pip install faststream[kafka]
# or
pip install faststream[rabbit]
# or
pip install faststream[nats]
# or
pip install faststream[redis]
```By default **FastStream** uses **PydanticV2** written in **Rust**, but you can downgrade it manually, if your platform has no **Rust** support - **FastStream** will work correctly with **PydanticV1** as well.
---
## Writing app code
**FastStream** brokers provide convenient function decorators `@broker.subscriber`
and `@broker.publisher` to allow you to delegate the actual process of:- consuming and producing data to Event queues, and
- decoding and encoding JSON-encoded messages
These decorators make it easy to specify the processing logic for your consumers and producers, allowing you to focus on the core business logic of your application without worrying about the underlying integration.
Also, **FastStream** uses [**Pydantic**](https://docs.pydantic.dev/) to parse input
JSON-encoded data into Python objects, making it easy to work with structured data in your applications, so you can serialize your input messages just using type annotations.Here is an example Python app using **FastStream** that consumes data from an incoming data stream and outputs the data to another one:
```python
from faststream import FastStream
from faststream.kafka import KafkaBroker
# from faststream.rabbit import RabbitBroker
# from faststream.nats import NatsBroker
# from faststream.redis import RedisBrokerbroker = KafkaBroker("localhost:9092")
# broker = RabbitBroker("amqp://guest:guest@localhost:5672/")
# broker = NatsBroker("nats://localhost:4222/")
# broker = RedisBroker("redis://localhost:6379/")app = FastStream(broker)
@broker.subscriber("in")
@broker.publisher("out")
async def handle_msg(user: str, user_id: int) -> str:
return f"User: {user_id} - {user} registered"
```Also, **Pydantic**’s [`BaseModel`](https://docs.pydantic.dev/usage/models/) class allows you
to define messages using a declarative syntax, making it easy to specify the fields and types of your messages.```python
from pydantic import BaseModel, Field, PositiveInt
from faststream import FastStream
from faststream.kafka import KafkaBrokerbroker = KafkaBroker("localhost:9092")
app = FastStream(broker)class User(BaseModel):
user: str = Field(..., examples=["John"])
user_id: PositiveInt = Field(..., examples=["1"])@broker.subscriber("in")
@broker.publisher("out")
async def handle_msg(data: User) -> str:
return f"User: {data.user} - {data.user_id} registered"
```---
## Testing the service
The service can be tested using the `TestBroker` context managers, which, by default, puts the Broker into "testing mode".
The Tester will redirect your `subscriber` and `publisher` decorated functions to the InMemory brokers, allowing you to quickly test your app without the need for a running broker and all its dependencies.
Using pytest, the test for our service would look like this:
```python
# Code above omitted 👆import pytest
import pydantic
from faststream.kafka import TestKafkaBroker@pytest.mark.asyncio
async def test_correct():
async with TestKafkaBroker(broker) as br:
await br.publish({
"user": "John",
"user_id": 1,
}, "in")@pytest.mark.asyncio
async def test_invalid():
async with TestKafkaBroker(broker) as br:
with pytest.raises(pydantic.ValidationError):
await br.publish("wrong message", "in")
```## Running the application
The application can be started using built-in **FastStream** CLI command.
Before running the service, install **FastStream CLI** using the following command:
```shell
pip install "faststream[cli]"
```To run the service, use the **FastStream CLI** command and pass the module (in this case, the file where the app implementation is located) and the app symbol to the command.
``` shell
faststream run basic:app
```After running the command, you should see the following output:
``` shell
INFO - FastStream app starting...
INFO - input_data | - `HandleMsg` waiting for messages
INFO - FastStream app started successfully! To exit press CTRL+C
```Also, **FastStream** provides you with a great hot reload feature to improve your Development Experience
``` shell
faststream run basic:app --reload
```And multiprocessing horizontal scaling feature as well:
``` shell
faststream run basic:app --workers 3
```You can learn more about **CLI** features [here](https://faststream.airt.ai/latest/getting-started/cli/)
---
## Project Documentation
**FastStream** automatically generates documentation for your project according to the [**AsyncAPI**](https://www.asyncapi.com/) specification. You can work with both generated artifacts and place a web view of your documentation on resources available to related teams.
The availability of such documentation significantly simplifies the integration of services: you can immediately see what channels and message formats the application works with. And most importantly, it won't cost anything - **FastStream** has already created the docs for you!
![HTML-page](https://github.com/airtai/faststream/blob/main/docs/docs/assets/img/AsyncAPI-basic-html-short.png?raw=true)
---
## Dependencies
**FastStream** (thanks to [**FastDepends**](https://lancetnik.github.io/FastDepends/)) has a dependency management system similar to `pytest fixtures` and `FastAPI Depends` at the same time. Function arguments declare which dependencies you want are needed, and a special decorator delivers them from the global Context object.
```python
from faststream import Depends, Loggerasync def base_dep(user_id: int) -> bool:
return True@broker.subscriber("in-test")
async def base_handler(user: str,
logger: Logger,
dep: bool = Depends(base_dep)):
assert dep is True
logger.info(user)
```---
## HTTP Frameworks integrations
### Any Framework
You can use **FastStream** `MQBrokers` without a `FastStream` application.
Just *start* and *stop* them according to your application's lifespan.```python
from aiohttp import webfrom faststream.kafka import KafkaBroker
broker = KafkaBroker("localhost:9092")
@broker.subscriber("test")
async def base_handler(body):
print(body)async def start_broker(app):
await broker.start()async def stop_broker(app):
await broker.close()async def hello(request):
return web.Response(text="Hello, world")app = web.Application()
app.add_routes([web.get("/", hello)])
app.on_startup.append(start_broker)
app.on_cleanup.append(stop_broker)if __name__ == "__main__":
web.run_app(app)
```### **FastAPI** Plugin
Also, **FastStream** can be used as part of **FastAPI**.
Just import a **StreamRouter** you need and declare the message handler with the same `@router.subscriber(...)` and `@router.publisher(...)` decorators.
```python
from fastapi import FastAPI
from pydantic import BaseModelfrom faststream.kafka.fastapi import KafkaRouter
router = KafkaRouter("localhost:9092")
class Incoming(BaseModel):
m: dict@router.subscriber("test")
@router.publisher("response")
async def hello(m: Incoming):
return {"response": "Hello, world!"}app = FastAPI()
app.include_router(router)
```More integration features can be found [here](https://faststream.airt.ai/latest/getting-started/integrations/fastapi/)
---
## Stay in touch
Please show your support and stay in touch by:
- giving our [GitHub repository](https://github.com/airtai/faststream/) a star, and
- joining our [EN Discord server](https://discord.gg/qFm6aSqq59)
- joining our [RU Telegram group](https://t.me/python_faststream)
Your support helps us to stay in touch with you and encourages us to
continue developing and improving the framework. Thank you for your
support!---
## Contributors
Thanks to all of these amazing people who made the project better!