Metadata-Version: 2.1
Name: sankir-sdf
Version: 0.0.4
Summary: SDF Converter
Home-page: https://github.com/SanKirTech/sdf-converter
Author: SanKir Technologies Pvt Ltd
Author-email: sanjay@sankir.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: google-cloud-storage
Requires-Dist: google-cloud-bigquery
Requires-Dist: pandas

# Steps to run

1. Install sankir-sdf

```bash
pip3 install sankir-sdf
```

2. Create a `config.json` containing following fields:

```json
{
    "bucket_name":"sankir-storage-prospark",
    "input_path":"data/retail-data/q1",
    "output_path":"processed-retail-data/",
    "bigquery_table_name": "recon.reconciliation",
    "reprocess": true
}
```

3. Set `GOOGLE_APPLICATION_CREDENTIALS` environment variable
```bash
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/creds.json
```

4. Run the program with:

```bash
sankir-sdf /path/to/config.json
```


