Skip to content

wingify/vwo-fme-python-sdk

Repository files navigation

VWO Feature Management and Experimentation SDK for Python

PyPI version CI codecov License

Overview

The VWO Feature Management and Experimentation SDK (VWO FME Python SDK) enables python developers to integrate feature flagging and experimentation into their applications. This SDK provides full control over feature rollout, A/B testing, and event tracking, allowing teams to manage features dynamically and gain insights into user behavior.

Requirements

  • Works with Python: 3.6 onwards.

Installation

It's recommended you use virtualenv to create isolated Python environments.

pip install vwo-fme-python-sdk

Basic Usage Example

The following example demonstrates initializing the SDK with a VWO account ID and SDK key, setting a user context, checking if a feature flag is enabled, and tracking a custom event.

from vwo import init

options = {
   'sdk_key': '32-alpha-numeric-sdk-key', # SDK Key
   'account_id': '123456' # VWO Account ID
}

vwo_client = init(options)

# set user context
user_context = {'id': 'unique_user_id'}
# returns a flag object
get_flag = vwo_client.get_flag('feature_key', user_context)
# check if flag is enabled
is_enabled = get_flag.is_enabled()
# get varible
int_var = get_flag.get_variable('int_variable_key', 'default_value')

# track event
vwo_client.track_event('event_name', user_context, event_properties)

# set attribute
vwo_client.set_attribute('attribute_key', 'attribute_value', user_context)

Advanced Configuration Options

To customize the SDK further, additional parameters can be passed to the init() API. Here’s a table describing each option:

Parameter Description Required Type Example
account_id VWO Account ID for authentication. Yes str '123456'
sdk_key SDK key corresponding to the specific environment to initialize the VWO SDK Client. You can get this key from VWO Application. Yes str '32-alpha-numeric-sdk-key'
poll_interval Time interval for fetching updates from VWO servers (in milliseconds). No int 60_000
gateway_service Configuration for integrating VWO Gateway Service. Service. No Dictionary see Gateway section
storage Custom storage connector for persisting user decisions and campaign data. data. No Dictionary See Storage section
logger Toggle log levels for more insights or for debugging purposes. You can also customize your own transport in order to have better control over log messages. No Dictionary See Logger section
integrations Callback function for integrating with third-party analytics services. No Function See Integrations section
batch_event_data Configuration for batch event processing to optimize network requests No Dictionary See Batch Events section
threading Toggle threading for better (enabled by default) performance. No Dictionary See Threading section

User Context

The context uniquely identifies users and is crucial for consistent feature rollouts. A typical context is a dictionary that includes an id key for identifying the user. It can also include other attributes that can be used for targeting and segmentation, such as custom_variables, user_agent, and ip_address.

Parameters Table

The following table explains all the parameters in the context dictionary:

Parameter Description Required Type
id Unique identifier for the user. Yes str
custom_variables Custom attributes for targeting. No Dict
user_agent User agent string for identifying the user's browser and operating system. No str
ip_address IP address of the user. No str

Example

context = {
    'id': 'unique_user_id',
    'custom_variables': {
        'age': 25,
        'location': 'US'
    },
    'user_agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36',
    'ip_address': '1.1.1.1'
}

Basic Feature Flagging

Feature Flags serve as the foundation for all testing, personalization, and rollout rules within FME. To implement a feature flag, first use the get_flag() method to retrieve the flag configuration. The get_flag() method provides a simple way to check if a feature is enabled for a specific user and access its variables. It returns a GetFlag object that contains methods like is_enabled() for checking the feature's status and get_variable() for retrieving any associated variables.

Parameter Description Required Type
feature_key Unique identifier of the feature flag Yes str
context Dictionary containing user identification and contextual information Yes Dict

Example usage:

feature_flag = vwo_client.get_flag("feature_key", context)
is_enabled = feature_flag.is_enabled()

if is_enabled:
  print("Feature is enabled!")

  # Get and use feature variable with type safety
  variable_value = feature_flag.get_variable('feature_variable', 'default_value')
  print("Variable value: " + variable_value)
else:
  print("Feature is not enabled!")

Custom Event Tracking

Feature flags can be enhanced with connected metrics to track key performance indicators (KPIs) for your features. These metrics help measure the effectiveness of your testing rules by comparing control versus variation performance, and evaluate the impact of personalization and rollout campaigns. Use the track_event() method to track custom events like conversions, user interactions, and other important metrics:

Parameter Description Required Type
event_name Name of the event you want to track Yes str
context Dictionary containing user identification and contextual information Yes Dict
event_properties Additional properties/metadata associated with the event No Dict

Example usage:

vwo_client.track_event('event_name', context, event_properties)

Pushing Attributes

User attributes provide rich contextual information about users, enabling powerful personalization. The set_attribute() method in VWOClient provides a simple way to associate these attributes with users in VWO for advanced segmentation. The method accepts an attribute key, value, and dictionary containing the user information. Here's what you need to know about the method parameters:

Parameter Description Required Type
attribute_key The unique identifier/name of the attribute you want to set Yes str
attribute_value The value to be assigned to the attribute Yes Any
context Dictionary containing user identification and other contextual information Yes Dict

Example usage:

vwo_client.set_attribute('attribute_key', 'attribute_value', context)

Polling Interval Adjustment

The poll_interval is an optional parameter that allows the SDK to automatically fetch and update settings from the VWO server at specified intervals. The polling interval can be configured in three ways:

  1. Set via SDK options: If poll_interval is specified in the initialization options (must be >= 1000 milliseconds), that interval will be used
  2. VWO Application Settings: If configured in your VWO application settings, that interval will be used
  3. Default Fallback: If neither of the above is set, a 10 minute (600,000 milliseconds) polling interval is used

Setting this parameter ensures your application always uses the latest configuration by periodically checking for and applying any updates.

options = {
    'sdk_key': '32-alpha-numeric-sdk-key', # SDK Key
    'account_id': '123456', # VWO Account ID
    'poll_interval': 60000 # Set the poll interval to 60 seconds
}

vwo_client = init(options)

Gateway

The VWO FME Gateway Service is an optional but powerful component that enhances VWO's Feature Management and Experimentation (FME) SDKs. It acts as a critical intermediary for pre-segmentation capabilities based on user location and user agent (UA). By deploying this service within your infrastructure, you benefit from minimal latency and strengthened security for all FME operations.

Why Use a Gateway?

The Gateway Service is required in the following scenarios:

  • When using pre-segmentation features based on user location or user agent.
  • For applications requiring advanced targeting capabilities.
  • It's mandatory when using any thin-client SDK (e.g., Go).

How to Use the Gateway

The gateway can be customized by passing the gateway_service parameter in the init configuration.

options = {
    'sdk_key': '32-alpha-numeric-sdk-key', # SDK Key
    'account_id': '123456', # VWO Account ID
    'gateway_service': {
        'url': 'http://custom.gateway.com'
    }
}
vwo_client = init(options)

Storage

The SDK operates in a stateless mode by default, meaning each get_flag call triggers a fresh evaluation of the flag against the current user context.

To optimize performance and maintain consistency, you can implement a custom storage mechanism by passing a storage parameter during initialization. This allows you to persist feature flag decisions in your preferred database system (like Redis, MongoDB, or any other data store).

Key benefits of implementing storage:

  • Improved performance by caching decisions
  • Consistent user experience across sessions
  • Reduced load on your application

The storage mechanism ensures that once a decision is made for a user, it remains consistent even if campaign settings are modified in the VWO Application. This is particularly useful for maintaining a stable user experience during A/B tests and feature rollouts.

from vwo import StorageConnector
class UserStorage(StorageConnector):
    def get(self, key: str, user_id: str):
        return client_db.get(f"{key}_{user_id}")

    def set(self, value: dict):
        key = f"{value.get('featureKey')}_{value.get('userId')}"
        client_db[key] = {
            'rolloutKey': value.get('rolloutKey'),
            'rolloutVariationId': value.get('rolloutVariationId'),
            'rolloutId': value.get('rolloutId'),
            'experimentKey': value.get('experimentKey'),
            'experimentVariationId': value.get('experimentVariationId'),
            'experimentId': value.get('experimentId'),
        }
        return True
        
options = {
    'sdk_key': '32-alpha-numeric-sdk-key', # SDK Key
    'account_id': '123456', # VWO Account ID
    'storage': UserStorage()
}

vwo_client = init(options)

Integrations

VWO FME SDKs provide seamless integration with third-party tools like analytics platforms, monitoring services, customer data platforms (CDPs), and messaging systems. This is achieved through a simple yet powerful callback mechanism that receives VWO-specific properties and can forward them to any third-party tool of your choice.

def callback(properties):
    # properties will contain all the required VWO specific information
    print(properties)

options = {
    'sdk_key': '32-alpha-numeric-sdk-key', # SDK Key
    'account_id': '12345', # VWO Account ID
    'integrations': {
        'callback': callback
    }
}
vwo_client = init(options)

Logger

VWO by default logs all ERROR level messages to your server console. To gain more control over VWO's logging behaviour, you can use the logger parameter in the init configuration.

Parameter Description Required Type Default Value
level Log level to control verbosity of logs Yes str ERROR
prefix Custom prefix for log messages No str VWO-SDK
transport Custom logger implementation No object See example below

Example 1: Set log level to control verbosity of logs

options = {
    'account_id': '123456', # VWO Account ID
    'sdk_key': '32-alpha-numeric-sdk-key', # SDK Key
    'logger': {
        'level': 'DEBUG'
    }
}
vwo_client = init(options)

Example 2: Add custom prefix to log messages for easier identification

options = {
    'account_id': '123456', # VWO Account ID
    'sdk_key': '32-alpha-numeric-sdk-key', # SDK Key
    'logger': {
        'level': 'DEBUG',
        'prefix': 'CUSTOM LOG PREFIX'
    }
}
vwo_client = init(options)

Example 3: Implement custom transport to handle logs your way

The transport parameter allows you to implement custom logging behavior by providing your own logging functions. You can define handlers for different log levels (debug, info, warn, error, trace) to process log messages according to your needs.

For example, you could:

  • Send logs to a third-party logging service
  • Write logs to a file
  • Format log messages differently
  • Filter or transform log messages
  • Route different log levels to different destinations

The transport object should implement handlers for the log levels you want to customize. Each handler receives the log message as a parameter.

For single transport you can use the transport parameter. For example:

from vwo import init

class CustomTransport:
    def __init__(self, config):
        self.level = config.get('level', "ERROR")
        self.config = config

    def log(self, level, message):
        # your custom implementation here

options = {
    'sdk_key': '32-alpha-numeric-sdk-key', # SDK Key
    'account_id': '123456', # VWO Account ID
    'logger' {
        'transport': CustomTransport({'level': 'INFO'})
    }
}

vwo_client = init(options)

For multiple transports you can use the transports parameter. For example:

from vwo import init

class CustomTransportForInfo:
    def __init__(self, config):
        self.level = config.get('level', "INFO")
        self.config = config

    def log(self, level, message):
        # your custom implementation here

class CustomTransportForError:
    def __init__(self, config):
        self.level = config.get('level', "ERROR")
        self.config = config

    def log(self, level, message):
        # your custom implementation here

options = {
    'sdk_key': '32-alpha-numeric-sdk-key', # SDK Key
    'account_id': '123456', # VWO Account ID
    'logger' {
        'transports': [
            CustomTransportForInfo({'level': 'INFO'}),
            CustomTransportForError({'level': 'ERROR'})
        ]
    }
}

vwo_client = init(options)

Threading

The SDK leverages threading to efficiently manage concurrent operations. Threading is enabled by default, but can be disabled by configuring the threading parameter during initialization. This gives you control over the SDK's concurrency behavior based on your application's needs.

Parameter Description Required Type Default
enabled Enable or disable threading. No Boolean true
max_workers Maximum number of threads to use. No Integer 5

Disable Threading

When threading is disabled, all tracking calls will block the main execution thread until they complete. This means your application will wait for each VWO operation before continuing.

Example showing blocking behavior:

# By disabling threading, the SDK will wait for the response from the server for each tracking call.
from vwo import init

options = {
    'sdk_key': '32-alpha-numeric-sdk-key', # SDK Key
    'account_id': '123456', # VWO Account ID
    'threading': {
        'enabled': False
    }
  }

  vwo_client = init(options)

Enable Threading (Default)

Threading in the VWO SDK provides several important benefits:

  1. Asynchronous Event Tracking: When enabled, all tracking calls are processed asynchronously in the background. This prevents these network calls from blocking your application's main execution flow.

  2. Improved Performance: By processing tracking and network operations in separate threads, your application remains responsive and can continue serving user requests without waiting for VWO operations to complete.

Example of how threading improves performance:

  • Without threading: Each tracking call blocks until the server responds
  • With threading: Tracking calls return immediately while processing happens in background

The SDK uses a thread pool to manage these concurrent operations efficiently. The default pool size of 5 threads is suitable for most applications, but you can adjust it based on your needs:

# By default, threading is enabled and the max_workers is set to 5.
# you can customize the max_workers by passing the max_workers parameter in the threading configuration.
from vwo import init

options = {
    'sdk_key': '32-alpha-numeric-sdk-key', # SDK Key
    'account_id': '123456', # VWO Account ID
    'threading': {
        'enabled': True,
        'max_workers': 10
    }
  }

  vwo_client = init(options)

Batch Events

The batch_event_data configuration allows you to optimize network requests by batching multiple events together. This is particularly useful for high-traffic applications where you want to reduce the number of API calls.

Parameter Description Required Type Default
request_time_interval Time interval (in seconds) after which events are flushed to the server No Number 600
events_per_request Maximum number of events to batch together before sending to the server No Number 100
flush_callback Callback function to be executed after events are flushed No Function See example

Example usage:

from vwo import init

def event_flush_callback(error, payload):
    # your implementation here

options = {
    'sdk_key': '32-alpha-numeric-sdk-key', # SDK Key
    'account_id': '123456', # VWO Account ID
    'batch_event_data': {
        'events_per_request': 60,  # Send up to 100 events per request
        'request_time_interval': 100, # Flush events every 60 seconds
        'flush_callback': event_flush_callback
    }
}

vwo_client = init(options)

You can also manually flush events using the flush_events() method:

vwo_client.flush_events()

Local development

python setup.py develop

Running Unit Tests

python setup.py test

Authors

Version History

The version history tracks changes, improvements, and bug fixes in each version. For a full history, see the CHANGELOG.md.

Contributing

We welcome contributions to improve this SDK! Please read our contributing guidelines before submitting a PR.

Code of Conduct

Our Code of Conduct outlines expectations for all contributors and maintainers.

License

Apache License, Version 2.0

Copyright 2024-2025 Wingify Software Pvt. Ltd.

About

VWO Feature Management and Experimentation SDK for Python

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages