https://github.com/ibbd-dev/ibbdetl
Python ETL for ibbd
https://github.com/ibbd-dev/ibbdetl
etl python3
Last synced: about 1 year ago
JSON representation
Python ETL for ibbd
- Host: GitHub
- URL: https://github.com/ibbd-dev/ibbdetl
- Owner: ibbd-dev
- License: apache-2.0
- Created: 2017-05-11T08:43:40.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-12-13T03:19:18.000Z (over 8 years ago)
- Last Synced: 2025-01-05T22:24:40.717Z (about 1 year ago)
- Topics: etl, python3
- Language: Python
- Homepage:
- Size: 98.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IbbdETL
通用的etl工具:通过写配置文件,实现数据的ETL。
## 安装及使用
```sh
# install
# 注意:可能需要sudo
python3 setup.py install
# 帮助
ibbdetl --help
# 使用方式
ibbdetl /path/to/config_file.yml
# 测试时,可以直接指定输出到控制台
ibbdetl /path/to/config_file.yml --console
```
## demo
见项目:https://github.com/ibbd-dev/ibbdETL-demos
## 开发过程使用
```sh
python3 src/etl.py conf/hello.yml
```
## 文档
- 目录:`./docs/`
- 配置文件格式说明文档:`./docs/config.md`
- 模块开发说明文档:`./docs/dev.md`