Metadata-Version: 2.1
Name: notifstats
Version: 0.0.3
Summary: Notification statistic collector
Home-page: https://github.com/kumparan/notification-stats
Author: I Putu Alfred Crosby
Author-email: alfred.crosby@kumparan.com
License: MIT
Download-URL: https://github.com/kumparan/notification-stats/archive/v_01.tar.gz
Keywords: Notification Statistic,Kumparan
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: google-cloud-bigquery (>=1.20.0)

## Stats collector

Notification event collector

### Usage
```
from datetime import datetime
from notifstats import capture_event


if __name__ == "__main__":
    data = {
        "notification_id": "test-12345",
        "event_type": "sent_to_slackbot",
        "object_id": "test-67890",
        "taxonomy_id": "test-2345",
        "created_at": datetime.now().isoformat(),
        "notification_type": "segmented",
    }

    capture_event(data=data)
```

### License
MIT (See LICENSE.txt file)

