Developer Guides
How to run an AB Test in Python
Step 1: Create a Basic Python Web Server
First, you’ll need a simple Python web server. Flask is a lightweight WSGI web application framework that’s perfect for this purpose.
Step 1: Creating a Simple Python “Hello World” Application
- Set Up Your Python Environment:
- Ensure Python is installed on your system. You can download it from python.org.
- Optionally, create a virtual environment for your project to manage dependencies:
- Create a New Python File:
- In your project directory, create a file named
app.py
.
- In your project directory, create a file named
- Write a Simple Python Program:
- Open
app.py
in your favorite text editor or IDE and write a simple Python program:
- Open
- Run Your Program:
- Run your program from the command line or terminal:
- You should see “Hello, World!” printed to the console.
Step 2: Integrate Statsig for A/B Testing
- Install Statsig SDK:
- Add the Statsig SDK to your project:
- Initialize Statsig in Your Application:
- Modify
app.py
to include initialization of the Statsig SDK and to check a feature flag. You will need a server secret key from Statsig, which you can get from the Statsig dashboard.
- Replace
'your_server_secret_key'
with your actual server secret key from Statsig. - Replace
'your_experiment_name'
with the name of your experiment.
- Modify
Step 3: Creating the A/B Test in Statsig Console
- Log Into Statsig Console:
- Access the Statsig Console and sign in.
- Create an Experiment:
- Navigate to the “Experiments” section and click “Create New”.
- Fill in the experiment details, including a unique key for
'your_experiment_name'
.
- Configure Experiment Variants:
- Define your variants, for example,
variant_a
andvariant_b
. - Add a parameter called
'text'
for each variant and configure the text you wish to display, such as “This is Control Variant” and “This is Test Variant”.
- Define your variants, for example,
- Launch Your Experiment:
- After setting up your variants and their parameters, save your configurations and start the experiment.
By following these steps, you’ve set up a Python Flask application that utilizes Statsig for running an A/B test, dynamically serving different text content based on the experiment’s variant. This setup enables data-driven decisions and iterative improvements based on user interactions.