blob: 6f9179997c617def0f603794fd7aa21b704c5e7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
"""
HappyBase, a developer-friendly Python library to interact with Apache
HBase.
"""
import thriftpy as _thriftpy
_thriftpy.install_import_hook()
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
|