Skip to main content

Extending Framework

info

Learn how to extend Fluvius Framework with custom functionality.

Custom Drivers

Create custom database drivers:

from fluvius.data import Driver

class CustomDriver(Driver):
async def connect(self):
# Custom connection logic
pass

Next Steps