Lightweight, efficient and developer-friendly framework for component communication
Project description
FastCC
Framework for component communication with MQTT and Protocol Buffers :boom:.
- Lightweight :zap:
- Efficient :rocket:
- Developer-friendly :technologist:
This framework is built on top of empicano's aiomqtt.
Example
# app.py
from __future__ import annotations
import asyncio
import contextlib
import logging
import os
import sys
import fastcc
router = fastcc.Router()
@router.route("greet")
async def greet(name: str, *, database: dict[str, int]) -> str:
"""Greet a user.
Parameters
----------
name
The name of the user.
Autofilled by fastcc.
database
The database.
Autofilled by fastcc.
Returns
-------
str
The greeting message.
"""
# ... do some async work
await asyncio.sleep(0.1)
database[name] += 1
occurrence = database[name]
return f"Hello, {name}! Saw you {occurrence} times!"
async def main() -> None:
"""Run the app."""
logging.basicConfig(level=logging.INFO)
database: dict[str, int] = {"Alice": 0, "Bob": 0}
app = fastcc.FastCC("localhost")
app.add_router(router)
app.add_injector(database=database)
app.add_exception_handler(
KeyError,
lambda e: fastcc.MQTTError(repr(e), 404),
)
await app.run()
# https://github.com/empicano/aiomqtt?tab=readme-ov-file#note-for-windows-users
if sys.platform.lower() == "win32" or os.name.lower() == "nt":
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
with contextlib.suppress(KeyboardInterrupt):
asyncio.run(main())
# client.py
from __future__ import annotations
import asyncio
import contextlib
import logging
import os
import sys
import fastcc
_logger = logging.getLogger(__name__)
async def main() -> None:
"""Run the app."""
logging.basicConfig(level=logging.INFO)
async with fastcc.Client("localhost") as client:
try:
response = await client.request(
"greet",
"Charlie",
response_type=str,
)
except fastcc.MQTTError as e:
details = f"An error occurred on the server: {e.message}"
_logger.error(details)
response = await client.request("greet", "Alice", response_type=str)
_logger.info("response: %r", response)
# https://github.com/empicano/aiomqtt?tab=readme-ov-file#note-for-windows-users
if sys.platform.lower() == "win32" or os.name.lower() == "nt":
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
with contextlib.suppress(KeyboardInterrupt):
asyncio.run(main())
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
fastcc-3.3.1.tar.gz
(12.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
fastcc-3.3.1-py3-none-any.whl
(13.2 kB
view details)
File details
Details for the file fastcc-3.3.1.tar.gz.
File metadata
- Download URL: fastcc-3.3.1.tar.gz
- Upload date:
- Size: 12.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
442d8054ac3fd2c0894b691dc782abe08b63cb1927b46b1836d47ded139251d5
|
|
| MD5 |
93823da8839f25fd272f7c120b589957
|
|
| BLAKE2b-256 |
8610c2054c65e73741e397d0195a6343e74b845ea021f2cc0f8f4913f7df2bdb
|
File details
Details for the file fastcc-3.3.1-py3-none-any.whl.
File metadata
- Download URL: fastcc-3.3.1-py3-none-any.whl
- Upload date:
- Size: 13.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f4b6845e6219163a4fceb1e82cc681d9a8f9cfd87900f5e27918c99c3433947
|
|
| MD5 |
fff9263266e564c454e906dcb85226cd
|
|
| BLAKE2b-256 |
539ed0ff67c5332067d22800827dd85b04f0c6360e85b58c1b1d4d8187e4b805
|