Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/etalab/notebooks

🤓 📓 📊
https://github.com/etalab/notebooks

datascience jupyter notebooks open-data

Last synced: 2 months ago
JSON representation

🤓 📓 📊

Awesome Lists containing this project

README

        

## Workflow

### Exécution ponctuelle

- git -> papermill -> [s3, commuter]

### Exécutions cycliques

- `./dags/` contient la description des graphes d'exécution qui seront fourni à une instance [airflow](https://airflow.apache.org)
- accès à l'instance airflow avec un tunnel ssh

## Bonnes pratiques

### Synchroniser les notebooks sans leurs sorties

https://github.com/kynan/nbstripout

```
$ pip install --upgrade nbstripout
$ nbstripout --install
```

`enum34` peut poser problème. Dans quel cas :

```
$ pip uninstall enum34
```

### Diff lisibles

https://nbdime.readthedocs.io

```
$ pip install nbdime
$ nbdime config-git --enable
```