wgzhao / easybase

Developer-friendly Python library to interact with Apache HBase, supports time range scan and multi-versions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EasyBase

image

image

image

image

image

EasyBase is a developer-friendly Python library to interact with Apache HBase . The original source code forked from HappyBase.

Feature highlight

  • easy using
  • support HBase Thrift 2 protocol(HBase Thrift 1 is NO longer supported)
  • using thriftpy2 instead of old thriftpy

Installation

pip install easybase

Usage

Connect

import easybase
host, port = 'localhost', 9000
tbl = 'test1'
conn = easybase.Connection(host=host, port=port)
table = conn.table(tbl)
rs = conn.scan(limit=10)
for row in rs:
  print(row)

Create Table

table_def = {'cf1':dict(),
             'cf2':{'max_versions':2000}}
conn.create_table('test1', table_def)

Write row to table

puts = {'cf1:c1': 'v1',
        'cf1:c2': 'v2'
       'cf2:c2': 'v3'}
tbl = conn.table('test1')
tbl.put(row='rk1', puts)

Get row from table

rk = 'rk1'
tbl = conn.table('test1')
rs = tbl.row(rk)

Scan rows

tbl = conn.table('test1')
scanner = tbl.scan(row_start='rk_0001', row_stop='rk_0100')
for row in scanner:
  print(row)

Get all namespace

for ns in conn.list_namespaces():
     print(ns)

You can get detail in DemoClient.py

License

MIT License http://www.opensource.org/licenses/MIT.

About

Developer-friendly Python library to interact with Apache HBase, supports time range scan and multi-versions

License:Other


Languages

Language:Python 71.1%Language:Thrift 27.6%Language:Shell 0.9%Language:Makefile 0.4%