Integration with ETL
Using Pipeline Data in Notebooks
from proai import get_pipeline_data
df = get_pipeline_data('user-analytics', run_id='latest')
print(df.head())
`
## Writing Notebook Results to Pipelines
```python
from proai import write_to_pipeline
write_to_pipeline('my-pipeline', 'notebook_output', df)
`
## See Also
- [ETL Jobs Overview](/docs/etl-jobs/overview)
- [Scheduling](/docs/notebooks/scheduling)