This is an automated email from the ASF dual-hosted git repository. haonan pushed a commit to branch iotdb in repository https://gitbox.apache.org/repos/asf/tsfile.git
commit 2fe90ead51b1d80fe9000453d3a495a934138143 Author: CritasWang <[email protected]> AuthorDate: Wed Jul 3 23:04:36 2024 +0800 fix error link (#148) --- .asf.yaml | 2 ++ README-zh.md | 4 +++- README.md | 4 +++- python/README-zh.md | 34 ++++++++++++++++++++++++++++++++++ 4 files changed, 42 insertions(+), 2 deletions(-) diff --git a/.asf.yaml b/.asf.yaml index a98910de..f8ea8e76 100644 --- a/.asf.yaml +++ b/.asf.yaml @@ -26,6 +26,8 @@ github: - iot - big-data - java + - c++ + - python - tsfile features: wiki: true diff --git a/README-zh.md b/README-zh.md index 1c9c0e9c..8596329f 100644 --- a/README-zh.md +++ b/README-zh.md @@ -124,4 +124,6 @@ TsFile、CSV 和 Parquet 三种文件格式的比较 [Java](./java/tsfile/README-zh.md) -[C++](./cpp/tsfile/README-zh.md) \ No newline at end of file +[C++](./cpp/README-zh.md) + +[Python](./python/README-zh.md) \ No newline at end of file diff --git a/README.md b/README.md index 6251a3db..5b5636af 100644 --- a/README.md +++ b/README.md @@ -123,4 +123,6 @@ more see [Docs](https://iotdb.apache.org/UserGuide/latest/Basic-Concept/Encoding [Java](./java/tsfile/README.md) -[C++](./cpp/tsfile/README.md) +[C++](./cpp/README.md) + +[Python](./python/README.md) diff --git a/python/README-zh.md b/python/README-zh.md new file mode 100644 index 00000000..bd7c8f58 --- /dev/null +++ b/python/README-zh.md @@ -0,0 +1,34 @@ +<!-- + + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +--> + +# TsFile Python Document +<pre> +___________ ___________.__.__ +\__ ___/____\_ _____/|__| | ____ + | | / ___/| __) | | | _/ __ \ + | | \___ \ | \ | | |_\ ___/ + |____|/____ >\___ / |__|____/\___ > version 1.0.0 + \/ \/ \/ +</pre> + +## 使用 + +## 开发 \ No newline at end of file
