The official Python library for the Black Forest Labs API
Project description
BFL Client - Black Forest Labs API Client
A Python client for interacting with the Black Forest Labs API.
Installation
You can install the package using either name:
pip install blackforest
Quick Start
# You can import using either name
from blackforest import BFLClient
# or
from blackforestlabs import BFLClient
import os
# For synchronous API call (great for testing, but please use "production" for async calls, for faster throughput)
os.environ["BFL_ENV"] = "dev"
# Initialize the client
client = BFLClient(api_key="your-api-key")
# Use the client to make API calls
inputs = {
"prompt": "a beautiful sunset over mountains, digital art style",
"width": 1024,
"height": 768,
"output_format": "jpeg"
}
response = client.generate("flux-pro-1.1", inputs)
# For Flux Kontext Pro with reference images
kontext_inputs = {
"prompt": "A beautiful landscape in the style of the reference image",
"input_image": "path/to/reference/image.jpg", # File path (auto-encoded) or base64
"input_image_2": "path/to/another/image.png", # Optional multiref (experimental)
"aspect_ratio": "16:9", # Between 1:4 and 4:1
"output_format": "png",
"seed": 42, # Optional for reproducibility
"safety_tolerance": 2, # 0-6, higher = less strict
"prompt_upsampling": True # Enhanced prompt processing
}
response = client.generate("flux-kontext-pro", kontext_inputs)
Features
- Official Python interface for Black Forest Labs API
- Automatic request handling and response parsing
- Type hints for better IDE support
- Support for all Flux models including Flux Kontext Pro with multi-reference capabilities
Supported Models
flux-dev- Development modelflux-pro- Professional modelflux-pro-1.1- Enhanced professional modelflux-pro-1.1-ultra- Ultra high-quality modelflux-kontext-pro- Context-aware model with reference image support and experimental multi-reference capabilitiesflux-pro-1.0-fill- Image inpainting modelflux-pro-1.0-expand- Image expansion modelflux-pro-1.0-canny- Canny edge-guided modelflux-pro-1.0-depth- Depth-guided model
Requirements
- Python 3.7+
- requests>=2.31.0
- pydantic>=2.0.0,
- pillow==10.4.0,
License
This project is licensed under the Apache 2.0 License - see the LICENSE file for details.
Contributing
Contributions are welcome! Please feel free to submit 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
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
File details
Details for the file blackforest-0.1.3a1.tar.gz.
File metadata
- Download URL: blackforest-0.1.3a1.tar.gz
- Upload date:
- Size: 18.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01e4345159743c204db9ee77dddf98e7c140ef8e6184a685499ae61ebcb0493b
|
|
| MD5 |
d2b9851326f904c8c4cb1677f5673b48
|
|
| BLAKE2b-256 |
5f63ee503231383cd152a37aca61104bfa17bdc3029aecac437b91deb482bda2
|
File details
Details for the file blackforest-0.1.3a1-py3-none-any.whl.
File metadata
- Download URL: blackforest-0.1.3a1-py3-none-any.whl
- Upload date:
- Size: 22.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa62b987b14c3c0a54dea4d2c00b053d9082addb18b0d5280d8a23258e4b2b9b
|
|
| MD5 |
2f0002376cb4cc5fa88f292eab10cf49
|
|
| BLAKE2b-256 |
53be42d1774303cf721252baa010bdc64bd9502d7b9664c8a9b00eb521f82b91
|