Metadata-Version: 2.3
Name: tiny-data-warehouse
Version: 0.3.0
Summary: 
Author: Jean Carlo Machado
Author-email: jean.machado@getyourguide.com
Requires-Python: >=3.12,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: fire
Requires-Dist: matplotlib
Requires-Dist: pandas
Requires-Dist: pyarrow
Requires-Dist: pypdf2
Description-Content-Type: text/markdown

# Installation

```sh
pip install tiny-data-warehouse
```


## Minimal usage


### Write events
```py
from tiny_data_warehouse import DataWarehouse
tdw = DataWarehouse()
tdw.write_event('person', {'name': 'Foo', 'age': 30})
```


### Read events

```py
from tiny_data_warehouse import DataWarehouse
tdw = DataWarehouse()
df = tdw.event('person')
df.head() # reads as pandas dataframe
```


