Mockfly SDK for Python
Project description
mockfly-python-sdk SDK Documentation
General Overview:
The mockfly-python-sdk SDK provides a simple interface to interact with the Mockfly service. The SDK allows you to identify users and retrieve flags based on a user's evaluation key.
Getting Started:
To begin using mockfly-python-sdk, you need to install it. (Note: I'm assuming that the package is available on PyPI).
pip install mockfly-python-sdk
Then, you can import it into your project:
from mockfly import Mockfly
Constructor:
The SDK is initialized using the constructor. The constructor accepts the following parameters:
environment: The environment for which you are obtaining the flags: "production" or "test".auth_header: A string representing the authorization header required to make calls to the Mockfly API. This should be derived from your project's private API key.
Example:
mockfly = Mockfly(
environment='production',
auth_header='YOUR_PRIVATE_API_KEY',
)
Methods:
identify(value)
This method is used to identify a user within the system.
value: The user's evaluation key. It is essential to call this method beforeget_flag().
Example:
mockfly.identify('user@gmail.com')
get_flag(key)
This method is used to get a flag based on the provided key.
key: The key of the flag you wish to get.
Returns a dictionary that represents the flag value for the given key and the identified user.
Example:
try:
data = mockfly.get_flag('feature_toggle')
print(data)
except Exception as error:
print(error)
Error Handling:
The SDK has built-in validations and will raise errors in the following cases:
- If the
auth_headeris not provided when creating aMockflyinstance. - If attempting to get a flag without providing a key.
- If attempting to get a flag without previously identifying the user.
Conclusion:
The mockfly-python-sdk SDK simplifies interaction with the Mockfly service from Python applications. Ensure to handle potential errors and use the identify method before making calls to get_flag. Always remember that the auth_header value should be derived from the private API key of your project.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file mockfly-python-sdk-0.0.1.tar.gz.
File metadata
- Download URL: mockfly-python-sdk-0.0.1.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be705101cd9e59a2b24aedda94573d87973a46556bdea6df8c5905a19e478f90
|
|
| MD5 |
ecbd481f8d908b0336129b4f47989651
|
|
| BLAKE2b-256 |
5e48bfa6b74766011eabdf33efcb983940e6714dfedb6b6840a5c7e5d377fd2f
|