Flippy gives you a simple way to add feature flags to your Django application using a simple syntax:
# define a flag
flag_enable_chat = Flag(id="chat", name="Enable the chat feature")
# check the flag value for a specific user
chat_enabled = flag_enable_chat.get_state_for_request(request)
if chat_enabled:
...
The flags are defined in code and enabled for specific groups of users via Django Admin.
- A Flag is a parameter that controls if a feature should be enabled for users. For example, if you're adding chat to your application, you can hide it behind a flag
enable_chat
. - Rollout is the process of enabling features for your users. For example, you might want to have
enable_chat
initially equalFalse
for everyone, then enable it for a group of beta-testers, then if nothing explodes - roll it out to 25% of users, then 50% users and finally for everyone! - A Subject is an individual or a group that for whom you'd like to enable the feature flags. Depending on your case, you may want to enable a feature flag for...
- all users
- some percentage of users (progressive rollout)
- a percentage of anonymous visitors (based on their IP address)
- all users that fit some criteria (permissions, subscription plan...)
- Install
flippy
in your app:
pip install git+https://github.com/kos/flippy.git@master
- Add
flippy
to yourINSTALLED_APPS
setting:
INSTALLED_APPS = [
...
'flippy',
]
-
Run
python manage.py migrate
to create theRollout
model. -
Create a file
flags.py
somewhere in your application and define your first flag:
from flippy import Flag
flag_enable_chat = Flag(id="chat", name="Enable the chat feature")
- Use the flag somewhere in your code:
from .flags import flag_enable_chat
def some_page(request):
chat_enabled = flag_enable_chat.get_state_for_request(request)
if chat_enabled:
...
Now the flag is defined, but it will be always disabled.
- Visit the Django Admin in http://localhost:8000/admin/flippy/rollout/ and create a new rollout for this flag to enable it locally.
New flags can be added very easily by instantiating the Flag
class.
The initial state of each flag can be controlled using the default
parameter:
enable_logging = Flag(id="logging", default=True)
Hint: For local development, it's convenient to have the flags enabled by default, but at the same time you'd like them to be default-off on production until rolled out. There's a simple pattern that accomplishes this:
from django.conf import settings
enable_beta_features = Flag(..., default=settings.DEBUG)
Flippy comes with some generic subjects (Django users, IP addresses) for the most common use case, but you can get the most value by defining your own subjects.
For example, assume your application has users with various subscription levels:
class User(...):
subscription_level_choices = [
(0, "Trial"),
(1, "Standard"),
(2, "Premium"),
]
subscription_level = models.IntegerField(choices=subscription_level_choices)
Here's an example Subject
implementation that lets you roll out features to all (or a percentage of) Premium users:
from flippy import Subject
class PremiumUserSubject(Subject):
def get_identifier_for_request(self, request: HttpRequest) -> Optional[str]:
user = request.user
return (
str(user.pk)
if user.is_authenticated and user.subscription_level == 2
else None
)
def __str__(self):
return "Premium Users"
As you can see, the method get_identifier_for_request
returns either None
if the subject doesn't match the request (there's no user or the user is not premium), or otherwise, the user's ID. In fact, any string is acceptable here, as long as it's different between each premium user. (The value is later used as a part of a hash, in order to ensure that percentage-based rollouts are deterministic for each user.)
The next step is to register this subject in your Django settings, so that it becomes available as an option:
# settings.py
FLIPPY_SUBJECTS = [
# standard subjects
"flippy.subject.IpAddressSubject",
"flippy.subject.UserSubject",
# custom subjects
"your_app.subjects.PremiumUserSubject",
]
Of course you're not limited to users. If your application features multi-user Accounts, you can use the same approach and write an Account
subject. In that case, the function should return a group ID instead of user ID.
Alpha. You mileage may vary, things may and will break or change in future versions. I'm gathering feedback, so please try it out, open issues and describe what's broken or missing.