Setup the SDK
1
Install the SDK
Install the sdk using pip3:
The Statsig SDK is not compatible with python 2. You must be on python 3.7+ to use the Statsig SDK.
2
Initialize the SDK
After installation, you will need to initialize the SDK using a Server Secret Key from the Statsig console.There is also an optional parameter named
Do NOT embed your Server Secret Key in client-side applications, or expose it in any external-facing documents. However, if you accidentally expose it, you can create a new one in the Statsig console.
options
that allows you to pass in a StatsigOptions to customize the SDK.initialize
will perform a network request. After initialize
completes, virtually all SDK operations will be synchronous (See Evaluating Feature Gates in the Statsig SDK). The SDK will fetch updates from Statsig in the background, independently of your API calls.Working with the SDK
Checking a Feature Flag/Gate
Now that your SDK is initialized, let’s fetch a Feature Gate. Feature Gates can be used to create logic branches in code that can be rolled out to different users from the Statsig Console. Gates are always CLOSED or OFF (thinkreturn false;
) by default. From this point on, all APIs will require you to specify the user (see Statsig user) associated with the request. For example, check a gate for a certain user like this: Reading a Dynamic Config
Feature Gates can be very useful for simple on/off switches, with optional but advanced user targeting. However, if you want to be able send a different set of values (strings, numbers, and etc.) to your clients based on specific user attributes, e.g. country, Dynamic Configs can help you with that. The API is very similar to Feature Gates, but you get an entire json object you can configure on the server and you can fetch typed parameters from it.Getting a Layer/Experiment
Then we have Layers/Experiments, which you can use to run A/B/n experiments. We offer two APIs, but we recommend the use of layers to enable quicker iterations with parameter reuse.Retrieving Feature Gate Metadata
In certain scenarios, you may need more information about a gate evaluation than just a boolean value. For additional metadata about the evaluation, use the Get Feature Gate API, which returns a FeatureGate object:Logging an Event
Now that you have a Feature Gate or an Experiment set up, you may want to track some custom events and see how your new features or different experiment groups affect these events. This is super easy with Statsig - simply call the Log Event API and specify the user and event name to log; you additionally provide some value and/or an object of metadata to be logged together with the event:retry_queue_size
, which allows you to adjust the memory allocated for handling retries. While service outages are rare, increasing the retry_queue_size can help minimize event loss by providing additional memory to buffer events during such occurrences. This option is generally not needed for typical use but offers added flexibility in exceptional situations. Statsig User
When calling APIs that require a user, you should pass as much information as possible in order to take advantage of advanced gate and config conditions (like country or OS/browser level checks), and correctly measure impact of your experiments on your metrics/events. At least one identifier, either userID or a Custom ID, is required to provide a consistent experience for a given user (as explained here). BesidesuserID
, we also have email
, ip
, userAgent
, country
, locale
and appVersion
as top-level fields on StatsigUser. In addition, you can pass any key-value pairs in an object/dictionary to the custom
field and be able to create targeting based on them. Note that while typing is lenient on the StatsigUser
object to allow you to pass in numbers, strings, arrays, objects, and potentially even enums or classes, the evaluation operators will only be able to operate on primitive types - mostly strings and numbers. While we attempt to smartly cast custom field types to match the operator, we cannot guarantee evaluation results for other types. For example, setting an array as a custom field will only ever be compared as a string - there is no operator to match a value in that array. Private Attributes
Have sensitive user PII data that should not be logged? No problem, we have a solution for it! On the StatsigUser object we also have a field calledprivateAttributes
, which is a simple object/dictionary that you can use to set private user attributes. Any attribute set in privateAttributes
will only be used for evaluation/targeting, and removed from any logs before they are sent to Statsig server. For example, if you have feature gates that should only pass for users with emails ending in “@statsig.com”, but do not want to log your users’ email addresses to Statsig, you can simply add the key-value pair { email: "my_user@statsig.com" }
to privateAttributes
on the user and that’s it! Statsig Options
initialize()
takes an optional parameter options
in addition to the secret key that you can provide to customize the Statsig client. Here are the current options and we are always adding more to the list: Create a StatsigOptions
class to pass in with the following available parameters: (unit of measure for time related options is seconds) Sets the environment tier (for gates to evaluate differently in development and production)You can set an environment tier with the
StatsigEnvironmentTier
enum or just as a str
Enforces a minimum timeout on network requests from the SDK
Sets the maximum timeout on download config specs and id lists network requests for initialization
How often the SDK updates rulesets from Statsig servers
How often the SDK updates idlists from Statsig servers
Disables all network requests. SDK returns default values and will not log events. Useful in combination with overrides to mock behavior for tests
a string that represents all rules for all feature gates, dynamic configs and experiments. It can be provided to bootstrap the Statsig server SDK at initialization in case your server runs into network issue or Statsig server is down temporarily.
a callback function that’s called whenever we have an update for the rules; it’s called with a logical timestamp and a JSON string (used as is for bootstrapValues mentioned above). Note that as of v0.6.0, this will be called from a background thread that the SDK uses to update config values.
The number of events to batch before flushing the queue to the network. Default 500.Note that events are also batched every minute by a background thread
A data store with custom storage behavior for config specs. Can be used to bootstrap Statsig server (takes priority over
bootstrap_values
).Configuration network for each endpoint, for example, download_config_spec, get_id_lists
Fallback to Statsig CDN for download config specs and get id lists if the overridden api failed.
List of sources SDK tries to get download_config_specs from when initialize. The list is ordered, SDK tries to get source from first element, and stops when getting dcs successfully
List of sources SDK tries to get download_config_specs from when downloading. The list is ordered, SDK tries to get source from first element, and stops when getting dcs successfully
set_environment_parameter
function, but that takes in string values only: Shutdown
To gracefully shutdown the SDK and ensure all events are flushed:Client SDK Bootstrapping
The Statsig server SDK can be used to generate the initialization values for a client SDK. This is useful for server-side rendering (SSR) or when you want to pre-fetch values for a client.Local Overrides
You can override the values returned by the SDK for testing purposes. This can be useful for local development when you want to test specific scenarios.Multi-Instance Usage
If you need to create multiple independent instances of the Statsig SDK (for example, to use different API keys or configurations), you can use the instance-based approach:Forward Proxy Configuration
You can configure the SDK to use a forward proxy for network requests: Basic setup to stream download config spec from forward proxy:push_worker_failover_threshold
retries, the sdk will start polling from Statsig until reconnecting to the forward proxy. You can customize Streaming Failover Behavior. You can also define the sources/endpoints SDK poll from, SDK will try from source at index 0, and stops trying if get a response. FAQs
How can I mock Statsig for testing?
The python server SDK, starting in version 0.5.1+, supports a few features to make testing easier. First, there is aStatsigOption
parameter called localMode
. Setting localMode
to true will cause the SDK to never hit the network, and only return default values. This is perfect for dummy environments or test environments that should not access the network. Next, there are the overrideGate
and overrideConfig
APIs on the global statsig
interface, see Local Overrides These can be used to set a gate or config override for a specific user, or for all users (by not providing a specific user ID). We suggest you enable localMode
and then override gates/configs/experiments to specific values to test the various code flows you are building.