Introduction


app = Flow()
service = app.service("my-service")
@service.endpoint("/", method="GET")
def get():
return "Hello World"
@app.consumer(
source=Topic(topic_id="input-topic"),
sink=AnalysisTable("output-table"))
def process(element: Dict[str, Any]):
return element
@app.collector("/collect", method="POST", sink=AnalysisTable("output-table"))
def collect(request: Dict[str, Any]):
return element
What is BuildFlow?
BuildFlow is a Python framework that allows you to build your entire backend system using one framework. With our simple decorator pattern you can turn any function into a component of your backend system. Allowing you to serve data over HTTP, dump data to a datastore, or process async data from message queues. All of these can use our built in IO connectors allowing you to create, manage, and connect to your cloud resources using pure Python.
Simply install BuildFlow to get started:
pip install buildflow
Main Features
Guides
Tutorial: Image Classification
Manage Cloud Resources
Setup Google Authentication
Load and Serve a Model
Serve Data from Postgres
Schedule Async Tasks
Ready to Use Examples
Get started quickly with any of our example projects.
Image Classification
Classify images as they are uploaded to a remote storage bucket (S3, GCS).
Llama 2 AI Chat
Build an AI chatbot that uses the Llama 2 model.
SaaS Application
Build a SaaS application that uses Google authentication and postgres for permanent storage.