Python Client for Keen IO
Project description
Keen IO Official Python Client Library
======================================
[![Build Status](https://secure.travis-ci.org/keenlabs/KeenClient-Python.png)](http://travis-ci.org/keenlabs/KeenClient-Python)
This is the official Python Client for the [Keen IO](https://keen.io/) API. The
Keen IO API lets developers build analytics features directly into their apps.
This is still under active development. Stay tuned for improvements!
### Installation
Use pip to install!
pip install keen
This client is known to work on Python 2.6, 2.7, 3.2 and 3.3
### Usage
To use this client with the Keen IO API, you have to configure your Keen IO Project ID and its access keys (if you need an account, [sign up here](https://keen.io/) - it's free).
Setting a write key is required for publishing events. Setting a read key is required for running queries. The recommended way to set this configuration information is via the environment. The keys you can set are `KEEN_PROJECT_ID`, `KEEN_WRITE_KEY`, `KEEN_READ_KEY`, and `KEEN_MASTER_KEY`.
If you don't want to use environment variables for some reason, you can directly set values as follows:
```python
keen.project_id = "xxxx"
keen.write_key = "yyyy"
keen.read_key = "zzzz"
keen.master_key = "abcd"
```
You can also configure unique client instances as follows:
```python
from keen.client import KeenClient
client = KeenClient(
project_id="xxxx",
write_key="yyyy",
read_key="zzzz",
master_key="abcd"
)
```
##### Send Events to Keen IO
Once you've set `KEEN_PROJECT_ID` and `KEEN_WRITE_KEY`, sending events is simple:
```python
keen.add_event("sign_ups", {
"username": "lloyd",
"referred_by": "harry"
})
```
Or if using unique client instances:
```python
client.add_event(...)
```
##### Send Batch Events to Keen IO
You can upload Events in a batch, like so:
```python
# uploads 4 events total - 2 to the "sign_ups" collection and 2 to the "purchases" collection
keen.add_events({
"sign_ups": [
{ "username": "nameuser1" },
{ "username": "nameuser2" }
],
"purchases": [
{ "price": 5 },
{ "price": 6 }
]
})
```
That's it! After running your code, check your Keen IO Project to see the event/events has been added.
##### Do analysis with Keen IO
Here are some examples of querying. Let's assume you've added some events to the "purchases" collection.
```python
keen.count("purchases") # => 100
keen.sum("purchases", target_property="price") # => 10000
keen.minimum("purchases", target_property="price") # => 20
keen.maximum("purchases", target_property="price") # => 100
keen.average("purchases", target_property="price") # => 49.2
keen.sum("purchases", target_property="price", group_by="item.id") # => [{ "item.id": 123, "result": 240 }, { ... }]
keen.count_unique("purchases", target_property="user.id") # => 3
keen.select_unique("purchases", target_property="user.email") # => ["bob@aol.com", "joe@yahoo.biz"]
keen.extraction("purchases", timeframe="today") # => [{ "price" => 20, ... }, { ... }]
keen.multi_analysis("purchases", analyses={"total":{"analysis_type":"sum", "target_property":"price"}, "average":{"analysis_type":"average", "target_property":"price"}) # => {"total":10329.03, "average":933.93}
step1 = {
"event_collection": "signup",
"actor_property": "user.email"
}
step2 = {
"event_collection": "purchase",
"actor_property": "user.email"
}
keen.funnel([step1, step2], timeframe="today") # => [2039, 201]
```
#### Advanced Usage
See below for more options.
##### Overwriting event timestamps
Two time-related properties are included in your event automatically. The properties “keen.timestamp” and “keen.created_at” are set at the time your event is recorded. You have the ability to overwrite the keen.timestamp property. This could be useful, for example, if you are backfilling historical data. Be sure to use [ISO-8601 Format](https://keen.io/docs/event-data-modeling/event-data-intro/#iso-8601-format).
Keen stores all date and time information in UTC!
```python
keen.add_event("sign_ups", {
"keen": {
"timestamp": "2012-07-06T02:09:10.141Z"
},
"username": "lloyd",
"referred_by": "harry"
})
```
##### Get from Keen IO with a Timeout
By default, GET requests will timeout after 305 seconds. If you want to manually override this, you can create a KeenClient with the "get_timeout" parameter. This client will fail GETs if no bytes have been returned by the server in the specified time. For example:
```python
from keen.client import KeenClient
client = KeenClient(
project_id="xxxx",
write_key="yyyy",
read_key="zzzz",
get_timeout=100
)
```
This will cause queries such as count(), sum(), and average() to timeout after 100 seconds. If this timeout limit is hit, a requests.Timeout will be raised. Due to a bug in the requests library, you might also see an SSLError (https://github.com/kennethreitz/requests/issues/1294)
##### Send to Keen IO with a Timeout
By default, POST requests will timeout after 305 seconds. If you want to manually override this, you can create a KeenClient with the "post_timeout" parameter. This client will fail POSTs if no bytes have been returned by the server in the specified time. For example:
```python
from keen.client import KeenClient
client = KeenClient(
project_id="xxxx",
write_key="yyyy",
read_key="zzzz",
master_key="abcd",
post_timeout=100
)
```
This will cause both add_event() and add_events() to timeout after 100 seconds. If this timeout limit is hit, a requests.Timeout will be raised. Due to a bug in the requests library, you might also see an SSLError (https://github.com/kennethreitz/requests/issues/1294)
##### Create Scoped Keys
The Python client enables you to create [Scoped Keys](https://keen.io/docs/security/#scoped-key) easily. For example:
```python
from keen.client import KeenClient
from keen import scoped_keys
api_key = KEEN_MASTER_KEY
write_key = scoped_keys.encrypt(api_key, {"allowed_operations": ["write"]})
read_key = scoped_keys.encrypt(api_key, {"allowed_operations": ["read"]})
```
`write_key` and `read_key` now contain scoped keys based on your master API key.
### Changelog
##### 0.3.14
+ Added compatibility for pip 1.0
##### 0.3.13
+ Added compatibility for pip < 1.5.6
##### 0.3.12
+ Made requirements more flexible.
##### 0.3.11
+ Added `requirements.txt` to pypi package.
##### 0.3.10
+ Fixed requirements in `setup.py`
+ Updated test inputs and documentation.
##### 0.3.9
+ Added ```master_key``` parameter.
##### 0.3.8
+ Mocked tests.
+ Added ```median``` query method.
+ Added support for `$python setup.py test`.
##### 0.3.7
+ Upgraded to requests==2.5.1
##### 0.3.6
+ Added ```max_age``` parameter for caching.
##### 0.3.5
+ Added client configurable timeout to gets.
##### 0.3.4
+ Added ```percentile``` query method.
##### 0.3.3
+ Support ```interval``` parameter for multi analyses on the keen module.
##### 0.3.2
+ Reuse internal requests' session inside an instance of KeenApi.
##### 0.3.1
+ Support ```property_names``` parameter for extractions.
##### 0.3.0
+ Added client configurable timeout to posts.
+ Upgraded to requests==2.2.1.
##### 0.2.3
+ Fixed sys.version_info issue with Python 2.6.
##### 0.2.2
+ Added interval to multi_analysis.
##### 0.2.1
+ Added stacktrace_id and unique_id to Keen API errors.
##### 0.2.0
+ Added add_events method to keen/__init__.py so it can be used at a module level.
+ Added method to generate image beacon URLs.
##### 0.1.9
+ Added support for publishing events in batches
+ Added support for configuring client automatically from environment
+ Added methods on keen module directly
##### 0.1.8
+ Added querying support
##### 0.1.7
+ Bugfix to use write key when sending events - do not use 0.1.6!
##### 0.1.6
+ Changed project token -> project ID.
+ Added support for read and write scoped keys.
+ Added support for generating scoped keys yourself.
+ Added support for python 2.6, 3.2, and 3.3
##### 0.1.5
+ Added documentation.
### To Do
* Asynchronous insert
* Scoped keys
### Questions & Support
If you have any questions, bugs, or suggestions, please
report them via Github Issues. We'd love to hear your feedback and ideas!
### Contributing
This is an open source project and we love involvement from the community! Hit us up with pull requests and issues.
======================================
[![Build Status](https://secure.travis-ci.org/keenlabs/KeenClient-Python.png)](http://travis-ci.org/keenlabs/KeenClient-Python)
This is the official Python Client for the [Keen IO](https://keen.io/) API. The
Keen IO API lets developers build analytics features directly into their apps.
This is still under active development. Stay tuned for improvements!
### Installation
Use pip to install!
pip install keen
This client is known to work on Python 2.6, 2.7, 3.2 and 3.3
### Usage
To use this client with the Keen IO API, you have to configure your Keen IO Project ID and its access keys (if you need an account, [sign up here](https://keen.io/) - it's free).
Setting a write key is required for publishing events. Setting a read key is required for running queries. The recommended way to set this configuration information is via the environment. The keys you can set are `KEEN_PROJECT_ID`, `KEEN_WRITE_KEY`, `KEEN_READ_KEY`, and `KEEN_MASTER_KEY`.
If you don't want to use environment variables for some reason, you can directly set values as follows:
```python
keen.project_id = "xxxx"
keen.write_key = "yyyy"
keen.read_key = "zzzz"
keen.master_key = "abcd"
```
You can also configure unique client instances as follows:
```python
from keen.client import KeenClient
client = KeenClient(
project_id="xxxx",
write_key="yyyy",
read_key="zzzz",
master_key="abcd"
)
```
##### Send Events to Keen IO
Once you've set `KEEN_PROJECT_ID` and `KEEN_WRITE_KEY`, sending events is simple:
```python
keen.add_event("sign_ups", {
"username": "lloyd",
"referred_by": "harry"
})
```
Or if using unique client instances:
```python
client.add_event(...)
```
##### Send Batch Events to Keen IO
You can upload Events in a batch, like so:
```python
# uploads 4 events total - 2 to the "sign_ups" collection and 2 to the "purchases" collection
keen.add_events({
"sign_ups": [
{ "username": "nameuser1" },
{ "username": "nameuser2" }
],
"purchases": [
{ "price": 5 },
{ "price": 6 }
]
})
```
That's it! After running your code, check your Keen IO Project to see the event/events has been added.
##### Do analysis with Keen IO
Here are some examples of querying. Let's assume you've added some events to the "purchases" collection.
```python
keen.count("purchases") # => 100
keen.sum("purchases", target_property="price") # => 10000
keen.minimum("purchases", target_property="price") # => 20
keen.maximum("purchases", target_property="price") # => 100
keen.average("purchases", target_property="price") # => 49.2
keen.sum("purchases", target_property="price", group_by="item.id") # => [{ "item.id": 123, "result": 240 }, { ... }]
keen.count_unique("purchases", target_property="user.id") # => 3
keen.select_unique("purchases", target_property="user.email") # => ["bob@aol.com", "joe@yahoo.biz"]
keen.extraction("purchases", timeframe="today") # => [{ "price" => 20, ... }, { ... }]
keen.multi_analysis("purchases", analyses={"total":{"analysis_type":"sum", "target_property":"price"}, "average":{"analysis_type":"average", "target_property":"price"}) # => {"total":10329.03, "average":933.93}
step1 = {
"event_collection": "signup",
"actor_property": "user.email"
}
step2 = {
"event_collection": "purchase",
"actor_property": "user.email"
}
keen.funnel([step1, step2], timeframe="today") # => [2039, 201]
```
#### Advanced Usage
See below for more options.
##### Overwriting event timestamps
Two time-related properties are included in your event automatically. The properties “keen.timestamp” and “keen.created_at” are set at the time your event is recorded. You have the ability to overwrite the keen.timestamp property. This could be useful, for example, if you are backfilling historical data. Be sure to use [ISO-8601 Format](https://keen.io/docs/event-data-modeling/event-data-intro/#iso-8601-format).
Keen stores all date and time information in UTC!
```python
keen.add_event("sign_ups", {
"keen": {
"timestamp": "2012-07-06T02:09:10.141Z"
},
"username": "lloyd",
"referred_by": "harry"
})
```
##### Get from Keen IO with a Timeout
By default, GET requests will timeout after 305 seconds. If you want to manually override this, you can create a KeenClient with the "get_timeout" parameter. This client will fail GETs if no bytes have been returned by the server in the specified time. For example:
```python
from keen.client import KeenClient
client = KeenClient(
project_id="xxxx",
write_key="yyyy",
read_key="zzzz",
get_timeout=100
)
```
This will cause queries such as count(), sum(), and average() to timeout after 100 seconds. If this timeout limit is hit, a requests.Timeout will be raised. Due to a bug in the requests library, you might also see an SSLError (https://github.com/kennethreitz/requests/issues/1294)
##### Send to Keen IO with a Timeout
By default, POST requests will timeout after 305 seconds. If you want to manually override this, you can create a KeenClient with the "post_timeout" parameter. This client will fail POSTs if no bytes have been returned by the server in the specified time. For example:
```python
from keen.client import KeenClient
client = KeenClient(
project_id="xxxx",
write_key="yyyy",
read_key="zzzz",
master_key="abcd",
post_timeout=100
)
```
This will cause both add_event() and add_events() to timeout after 100 seconds. If this timeout limit is hit, a requests.Timeout will be raised. Due to a bug in the requests library, you might also see an SSLError (https://github.com/kennethreitz/requests/issues/1294)
##### Create Scoped Keys
The Python client enables you to create [Scoped Keys](https://keen.io/docs/security/#scoped-key) easily. For example:
```python
from keen.client import KeenClient
from keen import scoped_keys
api_key = KEEN_MASTER_KEY
write_key = scoped_keys.encrypt(api_key, {"allowed_operations": ["write"]})
read_key = scoped_keys.encrypt(api_key, {"allowed_operations": ["read"]})
```
`write_key` and `read_key` now contain scoped keys based on your master API key.
### Changelog
##### 0.3.14
+ Added compatibility for pip 1.0
##### 0.3.13
+ Added compatibility for pip < 1.5.6
##### 0.3.12
+ Made requirements more flexible.
##### 0.3.11
+ Added `requirements.txt` to pypi package.
##### 0.3.10
+ Fixed requirements in `setup.py`
+ Updated test inputs and documentation.
##### 0.3.9
+ Added ```master_key``` parameter.
##### 0.3.8
+ Mocked tests.
+ Added ```median``` query method.
+ Added support for `$python setup.py test`.
##### 0.3.7
+ Upgraded to requests==2.5.1
##### 0.3.6
+ Added ```max_age``` parameter for caching.
##### 0.3.5
+ Added client configurable timeout to gets.
##### 0.3.4
+ Added ```percentile``` query method.
##### 0.3.3
+ Support ```interval``` parameter for multi analyses on the keen module.
##### 0.3.2
+ Reuse internal requests' session inside an instance of KeenApi.
##### 0.3.1
+ Support ```property_names``` parameter for extractions.
##### 0.3.0
+ Added client configurable timeout to posts.
+ Upgraded to requests==2.2.1.
##### 0.2.3
+ Fixed sys.version_info issue with Python 2.6.
##### 0.2.2
+ Added interval to multi_analysis.
##### 0.2.1
+ Added stacktrace_id and unique_id to Keen API errors.
##### 0.2.0
+ Added add_events method to keen/__init__.py so it can be used at a module level.
+ Added method to generate image beacon URLs.
##### 0.1.9
+ Added support for publishing events in batches
+ Added support for configuring client automatically from environment
+ Added methods on keen module directly
##### 0.1.8
+ Added querying support
##### 0.1.7
+ Bugfix to use write key when sending events - do not use 0.1.6!
##### 0.1.6
+ Changed project token -> project ID.
+ Added support for read and write scoped keys.
+ Added support for generating scoped keys yourself.
+ Added support for python 2.6, 3.2, and 3.3
##### 0.1.5
+ Added documentation.
### To Do
* Asynchronous insert
* Scoped keys
### Questions & Support
If you have any questions, bugs, or suggestions, please
report them via Github Issues. We'd love to hear your feedback and ideas!
### Contributing
This is an open source project and we love involvement from the community! Hit us up with pull requests and issues.
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
keen-0.3.14.tar.gz
(15.5 kB
view hashes)