Metadata-Version: 2.1
Name: databurglar
Version: 0.0.1
Summary: SQLAlchemy Package for data tracking.
Home-page: https://github.com/dpasse/qa
License: UNKNOWN
Keywords: Data Collection,SqlAlchemy
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: SQLAlchemy==2.0.32
Requires-Dist: pydantic==2.8
Requires-Dist: psycopg2==2.9.9

# qa - SqlAlchemy Plugin for Data Collection

<p>
  <b>SOMETHING</b> happened at <b>SOMETIME</b> and we would like to <b>COLLECT</b> it.
</p>

<hr />

### Init
```python
from qa.models import setup_data_collection, setup_surveys

engine: Engine = ...

## setup tables to collect data based on a `UserEvent`
setup_data_collection(
    engine,
    UserEvent
)

## setup tables to build dynamic data collection forms/surveys
setup_surveys(engine)
```

### Queries

### Commands

### Local Project Setup
```
  python3 -m venv env
  .\env\Scripts\activate
  pip install -r requirements.txt
```


