diff options
| author | Wouter Bolsterlee <uws@xs4all.nl> | 2016-03-20 21:32:17 +0100 |
|---|---|---|
| committer | Wouter Bolsterlee <uws@xs4all.nl> | 2016-03-20 21:32:17 +0100 |
| commit | 5afb6114646032d8792df61922eb643e4e1d243e (patch) | |
| tree | 73b36a81dc66ee0dbf1dd6a249284d7a2457f5ad /happybase/__init__.py | |
| parent | 9cbd718c10a3089f234f1eac1236b631e1f8e7cd (diff) | |
| parent | 12be787c9abf40e67acc396fce05bbf276c09ca9 (diff) | |
| download | happybase-dev.tar.gz | |
Merge branch 'port-to-thriftpy'dev
Diffstat (limited to 'happybase/__init__.py')
| -rw-r--r-- | happybase/__init__.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/happybase/__init__.py b/happybase/__init__.py index 11e350d..6f91799 100644 --- a/happybase/__init__.py +++ b/happybase/__init__.py @@ -3,11 +3,12 @@ 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 - -# TODO: properly handle errors defined in Thrift specification |
