Skip to main content

Python/Python3 library to interact with Apache HBase,support HBase 2.0, time-range scan and HBase thrift 2 procotol.

Project description

EasyBase

https://travis-ci.com/wgzhao/easybase.svg?branch=master https://img.shields.io/codecov/c/github/wgzhao/easybase.svg https://img.shields.io/pypi/dm/easybase.svg https://img.shields.io/pypi/v/easybase.svg https://img.shields.io/pypi/pyversions/easybase.svg https://img.shields.io/pypi/implementation/easybase.svg

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

Feature highlight

  • easy using

  • support HBase Thrift 2 protocol

  • using thriftpy2 instead of old thriftpy

Installation

pip install easybase

Usage

Connect

import easybase
host, port = 'localhost', 9000
tbl = 'test1'
conn = easybase.connect(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)

You can get detail in DemoClient.py

License

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

easybase-1.0.1.macosx-10.9-x86_64.tar.gz (125.1 kB view hashes)

Uploaded Source

Built Distribution

easybase-1.0.1-py2.py3-none-any.whl (63.6 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page