Metadata-Version: 2.1
Name: apache-iotdb
Version: 0.11.0
Summary: Apache IoTDB client API
Home-page: https://github.com/apache/iotdb
Author:  Apache Software Foundation
Author-email: dev@iotdb.apache.org
License: Apache License, Version 2.0
Description: <!--
        
            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.
        
        -->
        
        # Apache IoTDB
        
        [![Build Status](https://www.travis-ci.org/apache/iotdb.svg?branch=master)](https://www.travis-ci.org/apache/iotdb)
        [![codecov](https://codecov.io/gh/thulab/iotdb/branch/master/graph/badge.svg)](https://codecov.io/gh/thulab/iotdb)
        [![GitHub release](https://img.shields.io/github/release/apache/iotdb.svg)](https://github.com/apache/iotdb/releases)
        [![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
        ![](https://github-size-badge.herokuapp.com/apache/iotdb.svg)
        ![](https://img.shields.io/github/downloads/apache/iotdb/total.svg)
        ![](https://img.shields.io/badge/platform-win10%20%7C%20macox%20%7C%20linux-yellow.svg)
        ![](https://img.shields.io/badge/java--language-1.8-blue.svg)
        [![IoTDB Website](https://img.shields.io/website-up-down-green-red/https/shields.io.svg?label=iotdb-website)](https://iotdb.apache.org/)
        
        
        Apache IoTDB (Database for Internet of Things) is an IoT native database with high performance for 
        data management and analysis, deployable on the edge and the cloud. Due to its light-weight 
        architecture, high performance and rich feature set together with its deep integration with 
        Apache Hadoop, Spark and Flink, Apache IoTDB can meet the requirements of massive data storage, 
        high-speed data ingestion and complex data analysis in the IoT industrial fields.
        
        
        # Apache IoTDB Python Client API
        
        Using the package, you can write data to IoTDB, read data from IoTDB and maintain the schema of IoTDB.
        
        ## Requirements
        
        You have to install thrift (>=0.13) before using the package.
        
        ## How to use (Example)
        
        First, download the package: `pip3 install apache-iotdb`
        
        You can get an example of using the package to read and write data at here: [Example](https://github.com/apache/iotdb/blob/rel/0.11/client-py/src/SessionExample.py)
        
        (you need to add `import iotdb` in the head of the file)
        
        Or:
        
        ```python
        
        from iotdb.Session import Session
        
        ip = "127.0.0.1"
        port_ = "6667"
        username_ = 'root'
        password_ = 'root'
        session = Session(ip, port_, username_, password_)
        session.open(False)
        zone = session.get_time_zone()
        session.close()
        
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.7
Description-Content-Type: text/markdown
