forked from segmentio/analytics-python
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enhancement: Updates for V1.0.0 Release (#3)
* Bumped version * Updated README.md
- Loading branch information
1 parent
4da7df9
commit 0785837
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,13 +8,13 @@ More details on the Python SDK can be found in our [**documentation**](https://d | |
|
||
Install `rudder-sdk-python` using `pip`: | ||
|
||
``` | ||
```bash | ||
pip install rudder-sdk-python | ||
``` | ||
|
||
## Initializing the RudderStack Client | ||
|
||
``` | ||
```python | ||
import rudder_analytics | ||
|
||
rudder_analytics.write_key = <SOURCE_WRITE_KEY> | ||
|
@@ -25,7 +25,7 @@ rudder_analytics.data_plane_url = <DATA_PLANE_URL> | |
|
||
Once the RudderStack client is initialized, you can use it to send your customer events. A sample `track` call is shown below: | ||
|
||
``` | ||
```python | ||
rudder_analytics.track('developer_user_id', 'Simple Track Event', { | ||
'key1': 'val1' | ||
}) | ||
|
@@ -35,10 +35,10 @@ For more information on the supported calls, refer to the [**documentation**](ht | |
|
||
## About RudderStack | ||
|
||
[**RudderStack**](https://rudderstack.com/) is a customer data platform for developers. Our tooling makes it easy to deploy pipelines that collect customer data from every app, website and SaaS platform, then activate it in your warehouse and business tools. | ||
[**RudderStack**](https://rudderstack.com/) is a customer data platform for developers. Our tooling makes it easy to deploy pipelines that collect customer data from every app, website and SaaS platform, then activate it in your warehouse and business tools. | ||
|
||
More information on RudderStack can be found [**here**](https://github.com/rudderlabs/rudder-server). | ||
|
||
## Contact Us | ||
|
||
If you come across any issues while configuring or using this SDK, you can start a conversation on our [**Slack**](https://resources.rudderstack.com/join-rudderstack-slack) channel. | ||
For more information on any of the sections covered in this readme, you can [**contact us**](mailto:%[email protected]) or start a conversation on our [**Slack**](https://resources.rudderstack.com/join-rudderstack-slack) channel. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
VERSION = '1.0.0-beta.2' | ||
VERSION = '1.0.0' |