|
1 | 1 | Optimizely Python SDK
|
2 | 2 | =====================
|
3 | 3 |
|
4 |
| -[](https://pypi.org/project/optimizely-sdk) |
6 |
| -[](https://travis-ci.org/optimizely/python-sdk) |
8 |
| -[](https://coveralls.io/github/optimizely/python-sdk) |
10 |
| -[](http://www.apache.org/licenses/LICENSE-2.0) |
| 4 | +[](https://pypi.org/project/optimizely-sdk) |
| 5 | +[](https://travis-ci.org/optimizely/python-sdk) |
| 6 | +[](https://coveralls.io/github/optimizely/python-sdk) |
| 7 | +[](http://www.apache.org/licenses/LICENSE-2.0) |
12 | 8 |
|
13 | 9 | This repository houses the official Python SDK for use with Optimizely
|
14 | 10 | Full Stack and Optimizely Rollouts.
|
@@ -126,21 +122,23 @@ notification_center.
|
126 | 122 | #### Advanced configuration
|
127 | 123 |
|
128 | 124 | The following properties can be set to override the default
|
129 |
| -configurations for [PollingConfigManager]{.title-ref}. |
| 125 | +configurations for [PollingConfigManager](#pollingconfigmanager). |
130 | 126 |
|
131 |
| - **PropertyName** **Default Value** **Description** |
132 |
| - ------------------ ----------------------------------------------------------- -------------------------------------------------------------------------------------- |
133 |
| - update_interval 5 minutes Fixed delay between fetches for the datafile |
134 |
| - sdk_key None Optimizely project SDK key |
135 |
| - url None URL override location used to specify custom HTTP source for the Optimizely datafile |
136 |
| - url_template https://cdn.optimizely.com/datafiles/{sdk_key}.json Parameterized datafile URL by SDK key |
137 |
| - datafile None Initial datafile, typically sourced from a local cached source |
| 127 | +| **Property Name** |**Default Value**| **Description** | |
| 128 | +|:-----------------------:|:---------------:|:--------------------------------------------------------------:| |
| 129 | +| update_interval | 5 minutes | Fixed delay between fetches for the datafile | |
| 130 | +| sdk_key | None | Optimizely project SDK key | |
| 131 | +| url | None | URL override location used to specify custom | |
| 132 | +| HTTP source for Optimizely datafile<br>url_template |https://cdn.optimizely.com/datafiles/{sdk_key}.json|Parameterized datafile URL by SDK key| |
| 133 | +| datafile | None | Initial datafile, typically sourced from a local cached source | |
138 | 134 |
|
139 | 135 | A notification signal will be triggered whenever a *new* datafile is
|
140 | 136 | fetched and Project Config is updated. To subscribe to these
|
141 | 137 | notifications, use:
|
142 | 138 |
|
143 |
| -`notification_center.add_notification_listener(NotificationTypes.OPTIMIZELY_CONFIG_UPDATE, update_callback)` |
| 139 | +``` |
| 140 | +notification_center.add_notification_listener(NotificationTypes.OPTIMIZELY_CONFIG_UPDATE, update_callback) |
| 141 | +``` |
144 | 142 |
|
145 | 143 | For Further details see the Optimizely [Full Stack documentation](https://docs.developers.optimizely.com/full-stack/docs) to learn how to set up your first Python project and use the SDK.
|
146 | 144 |
|
@@ -202,4 +200,4 @@ would be:
|
202 | 200 |
|
203 | 201 | ### Contributing
|
204 | 202 |
|
205 |
| -Please see [CONTRIBUTING](CONTRIBUTING.md). |
| 203 | +Please see [CONTRIBUTING](https://github.com/optimizely/python-sdk/blob/master/CONTRIBUTING.md). |
0 commit comments