Metadata-Version: 1.0
Name: clickhouse-http-client
Version: 1.0.2
Summary: clickhouse http client, author liyuanjun
Home-page: https://github.com/tomoncle/clickhouse-http-client
Author: liyuanjun
Author-email: 1123431949@qq.com
License: MIT
Description: clickhouse-http-client
        ======================
        clickhouse http client.
        
        Install
        =======
        
        Use source::
        
           $ git clone https://github.com/tomoncle/clickhouse-http-client.git
           $ cd clickhouse-http-client
           $ sudo python setup.py install
        
        Use pip::
        
           $ pip install clickhouse-http-client
        
        
        
        Usage
        =====
        
        init::
        
           from clickhouse_http_client import ClickHouse
           ck = ClickHouse(password="123456")
        
        query::
        
           ck.text("select * from table_name")
           ck.json("select * from table_name")
        
        delete::
        
           ck.delete("table_name", "id IS NOT NULL")
        
        save::
        
           ck.insert("table_name", {"name":"tomoncle", "age":"27"})
        
        update::
        
           ck.update("table_name", "status=1", {"name":"tomoncle", "age":"27"})
        
        
Platform: UNKNOWN
