You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The AB Testing library implements multi-variance testing with a deterministic algorithm. It doesn't require any complex backend or database. Supporting both Javascript and Python.
37
37
@@ -58,9 +58,9 @@ The config file can be optionaly [hashed](#Configuration-File-Hashing-and-Protec
An helper library that implements hashing for the configurations (user profile and the configuration `force_include` section) in case you want to host the config file publicly but still keep the content private, or just don't want to leave PIIs been transmitted in plain text.
174
174
@@ -208,9 +208,9 @@ You'll want to make sure the salt is the same on your server and your client for
Python implementation for the same APIs in `@appannie/ab-testing` and `@appannie/ab-testing-hash-object`
216
216
@@ -224,7 +224,7 @@ pipenv install py-ab-testing
224
224
225
225
### Usage
226
226
227
-
Note: The `config` variable holds an `dict` with [configuration file format that documented here](../../README.md).
227
+
Note: The `config` variable holds an `dict` with [configuration file format that documented here](#configuration-file-reference).
228
228
229
229
```python
230
230
from ABTesting import ABTestingController
@@ -333,7 +333,7 @@ You shouldn't list user [private information (PII)](https://csrc.nist.gov/glossa
333
333
334
334
If you need to segment users using emails or information you wish/need to keep private, we suggest you to securely encrypt them.
335
335
336
-
We're providing an extra module [`@appannie/ab-testing-hash-object`](./packages/ab-testing-hash-object/README.md) aiming to simplify this flow. This module will encode the keys and the values of your user profile. You then need to call it with the same `salt` while preprocessing your configuration and once when defining the user profile:
336
+
We're providing an extra module `@appannie/ab-testing-hash-object` aiming to simplify this flow. This module will encode the keys and the values of your user profile. You then need to call it with the same `salt` while preprocessing your configuration and once when defining the user profile:
0 commit comments