pawprint
pawprint allows you to quickly track events occurring in your application, and analyse them using pandas. For the full API, see the documentation. These are a work in progress.
Write data flexibly
tracker.write(event="server_booted")
tracker.write(event="logged_in", user_id="alice")
tracker.write(event="navigation", user_id="bob", metadata={"to": "dashboard"})
tracker.write(event="invoice", metadata={"details": {"amount": 1214, "from": "Ardbeg"}})
tracker.write(event="invoice", metadata={"details": {"amount": 123, "from": "Lagavulin"}})
Query data intuitively
Read the full dataset.
tracker.read()
id timestamp user_id event metadata
0 1 2017-03-31 15:51:50.590018 None server_booted None
1 2 2017-03-31 15:51:50.599256 alice logged_in None
2 3 2017-03-31 15:51:50.610069 bob navigation {'to': 'dashboard'}
3 4 2017-03-31 15:51:50.620759 None invoice {'details': {'from': 'Ardbeg', 'amount': 1214}}
4 5 2017-03-31 15:51:50.629837 None invoice {'details': {'from': 'Lagavulin', 'amount': 123}}
List only events where the user was Alice.
tracker.read("event", user_id="alice")
event
0 logged_in
Query unstructured data to find out who invoiced you and when.
tracker.read("timestamp", "metadata__details__from", event="invoice")
timestamp json_field
0 2017-03-31 15:51:50.620759 Ardbeg
1 2017-03-31 15:51:50.629837 Lagavulin
Perform aggregates over time.
tracker.count("logged_in", resolution="week")
datetime count
0 2017-03-27 1
Aggregate JSON subfields.
tracker.sum(event="invoice", field="metadata__details__amount", resolution="year")
datetime sum
0 2017-01-01 1337.0
Documentation
For installation, dependencies, API details, and a quickstart, please RTFM !
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pawprint-2.1.1.tar.gz
(11.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
pawprint-2.1.1-py3-none-any.whl
(12.3 kB
view details)
File details
Details for the file pawprint-2.1.1.tar.gz.
File metadata
- Download URL: pawprint-2.1.1.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.1.post20191125 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1b78333f7c3929382ee878e5ad3946aa9628c6bc9a17f55be07ce64e4f6c89c
|
|
| MD5 |
2a1d3a5d6ff35b6fb4fcca49e28c9c31
|
|
| BLAKE2b-256 |
e271d85dd14f161592b6e41b5f35581828852fdbd4f79a18f752e9999d228b58
|
File details
Details for the file pawprint-2.1.1-py3-none-any.whl.
File metadata
- Download URL: pawprint-2.1.1-py3-none-any.whl
- Upload date:
- Size: 12.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.1.post20191125 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3dacd3ed69bc49d9427ea53bf948dfd99212216e1ef982473686952b4ff9cde3
|
|
| MD5 |
74a2635b72a7d5aaa66dce90ed5426e1
|
|
| BLAKE2b-256 |
65ee467789a965b18235510f7e3a5f2e0f0a7d9e3873449b3e2122dedb4a5888
|