This is an automated email from the ASF dual-hosted git repository.
jiangtian pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/tsfile.git
from 6a5f8330 feature: finish multiple flush for c++_tsfile (#110)
add ff5617b1 Python wrapper. (#112)
No new revisions were added by this update.
Summary of changes:
.github/workflows/unit-test.yml | 13 +-
.gitignore | 11 +
cpp/src/cwrapper/TsFile-cwrapper.cc | 16 +-
cpp/src/reader/tsfile_executor.cc | 4 +
pom.xml | 37 +++
python/README.md | 66 +++++
python/examlpes.py | 82 +++++++
python/pom.xml | 127 ++++++++++
cpp/test_all.sh => python/requirements.txt | 8 +-
python/setup.py | 125 ++++++++++
python/test.py | 171 +++++++++++++
cpp/test_all.sh => python/tsfile/__init__.py | 2 +-
python/tsfile/tsfile.pxd | 104 ++++++++
python/tsfile/tsfile.py | 145 +++++++++++
python/tsfile/tsfile_pywrapper.pyx | 348 +++++++++++++++++++++++++++
15 files changed, 1245 insertions(+), 14 deletions(-)
create mode 100644 python/README.md
create mode 100644 python/examlpes.py
create mode 100644 python/pom.xml
copy cpp/test_all.sh => python/requirements.txt (86%)
create mode 100644 python/setup.py
create mode 100644 python/test.py
copy cpp/test_all.sh => python/tsfile/__init__.py (94%)
create mode 100644 python/tsfile/tsfile.pxd
create mode 100644 python/tsfile/tsfile.py
create mode 100644 python/tsfile/tsfile_pywrapper.pyx