File: __init__.py

package info (click to toggle)
python-happybase 0.8-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 712 kB
  • ctags: 1,283
  • sloc: python: 991; makefile: 26
file content (13 lines) | stat: -rw-r--r-- 356 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
HappyBase, a developer-friendly Python library to interact with Apache
HBase.
"""

from ._version import __version__

from .connection import DEFAULT_HOST, DEFAULT_PORT, Connection
from .table import Table
from .batch import Batch
from .pool import ConnectionPool, NoConnectionsAvailable

# TODO: properly handle errors defined in Thrift specification