Skip to content

Commit 5bf2444

Browse files
committed
v0.2.1 released 补全了一些依赖库安装
1 parent 6ac603a commit 5bf2444

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,11 @@ $ pip install unimeta
1414
```
1515

1616
```pycon
17-
>>> from unimeta.pipeline import MysqlSource, ClickHouseSink, Pipeline
17+
>>> from unimeta.pipeline import Pipeline
1818
>>> mysql = "mysql://root:[email protected]:3306/hr"
1919
>>> clickhouse = "clickhouse://127.0.0.1:9000/hr"
2020
>>> meta = "unimetad://[email protected]:8000/mysql2ch"
2121
>>> pipe = Pipeline(source, sink, meta)
22-
>>> pipe.sync_tables()
2322
>>> pipe.sync()
2423
```
2524

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@
3030
"mysqlclient",
3131
"fastapi",
3232
"uvicorn",
33-
"aiokafka"
33+
"aiokafka",
34+
'aioch',
35+
'aiohttp'
3436
]
3537

3638
kwargs = {

unimeta/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.2.0'
1+
__version__ = '0.2.1'

0 commit comments

Comments
 (0)