Feature flags, with a GUI - SQL Alchemy backend
Project description
flypper-sqlalchemy
Flypper-sqlalchemy is a storage backend for the flypper package.
It is backed by a RDBMS through the SQL-Alchemy library so it an be used in a distributed environment and be persisted across restarts.
Installation
Use the package manager pip to install flypper-sqlalchemy.
pip install flypper-sqlalchemy
Usage
Build a storage backend:
from flypper_sqlalchemy.storage.sqla import SqlAlchemyStorage
# Create tables, make sure they are created, for instance with `create_all()`.
SqlAlchemyStorage.build_flags_table(sqla_metadata=metadata)
SqlAlchemyStorage.build_metadata_table(sqla_metadata=metadata)
storage = SqlAlchemyStorage(session=session_proxy)
# Or instead, depending on the use-case:
#
# storage = SqlAlchemyStorage(engine=engine)
)
Use it in the web UI:
from flypper.wsgi.web_ui import FlypperWebUI
web_ui = FlypperWebUI(storage=storage)
Use it in your code:
- Build a client for your app
- Use a context
from flypper.client import Client as FlypperClient
# Once per thread
flypper_client = FlypperClient(storage=storage, ttl=10)
# Once per request
flypper_context = FlypperContext(
client=flypper_client,
entries={"user_id": "42"},
)
# Every time you need
flypper_context.is_enabled("flag_name")
flypper_context.is_enabled(
"other_flag_name",
entries={"item_reference": "blue-shampoo"},
)
Q&A
How to use the ORM layer of SQL-Alchemy?
We can use the Hybrid Declarative mapping capability to build a mapped class from flypper's tables:
from sqlalchemy.ext.declarative import declarative_base
from flypper_sqlalchemy.storage.sqla import SqlAlchemyStorage
Base = declarative_base()
class FlypperFlag(Base):
__table__ = SqlAlchemyStorage.build_flags_table(
sqla_metadata=Base.metadata,
)
class FlypperMetadata(Base):
__table__ = SqlAlchemyStorage.build_metadata_table(
sqla_metadata=Base.metadata,
)
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
Project details
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 flypper-sqlalchemy-0.1.6.tar.gz.
File metadata
- Download URL: flypper-sqlalchemy-0.1.6.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.11 CPython/3.9.5 Linux/5.11.0-7633-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08cbd20a3b385df808d1953a0cf47273f3594bb1d48c11617f96197ca34b6526
|
|
| MD5 |
cbfa63a0f1d789450753b6047e681986
|
|
| BLAKE2b-256 |
f76dd1b72bdb71b159fdbabd777a88017017d1030ba4d5cfcecd860950f3d401
|
File details
Details for the file flypper_sqlalchemy-0.1.6-py3-none-any.whl.
File metadata
- Download URL: flypper_sqlalchemy-0.1.6-py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.11 CPython/3.9.5 Linux/5.11.0-7633-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38bea363b0a93e29f9439adcf6ecef12f98bf52c1d10b9308673707b0b908091
|
|
| MD5 |
86a4dce80b6b94567638142a01a768f0
|
|
| BLAKE2b-256 |
8ec98bc3f7634880e375404ca027221061cca053937302a83651739c8171918b
|