An open API service indexing awesome lists of open source software.

https://github.com/xrmx/primadatapipeline

La mia prima data pipeline talk demo project
https://github.com/xrmx/primadatapipeline

data-engineering go luigi pipeline python

Last synced: 7 months ago
JSON representation

La mia prima data pipeline talk demo project

Awesome Lists containing this project

README

          

# La mia prima data pipeline

## setup api

```
cd api
go build
```

## setup pipeline

```
python3 -m venv venv
. ./venv/bin/activate
pip install wheel
cd pipeline
python setup.py install
cd -
```

## setup superset

https://github.com/airbnb/superset/blob/master/docs/installation.rst#making-your-own-build

## quickstart

Start the api on a terminal:

```
./api/api
```

On another one we create the db and execute the pipeline for today:

```
. ./venv/bin/activate

python3 createdb.py

luigi.sh $(date +%Y-%m-%d)
```