Python client for the Cerebro Data Access Service
Project description
Python client for RecordService implementations.
Dependencies
Required:
Python 3.4+
six, bit_array, thriftpy >=0.3.9
pip3 install six bit_array 'thriftpy>=0.3.9'
Optional:
pandas for conversion to DataFrame objects
Installation
pip3 install pycerebro
To verify:
>>> import cerebro.cdas
>>> cerebro.cdas.version()
'0.8.0-beta3'
Usage
from cerebro import context
ctx = context()
with ctx.connect(host='localhost', port=12050) as conn:
conn.list_databases()
pd = conn.scan_as_pandas("cerebro_sample.sample")
pd
To enable a connection to a server with token-authentication:
from cerebro import context
ctx = context()
ctx.enable_token_auth(token_str='my-token')
with ctx.connect(host='localhost', port=12050) as conn:
conn.list_databases()
To enable a connection to a server with kerberos-authentication:
from cerebro import context
ctx = context()
# Connecting to server principal 'cerebro/service@REALM'
ctx.enable_kerberos('cerebro', host_override='service')
with ctx.connect(host='localhost', port=12050) as conn:
conn.list_databases()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pycerebro-0.8.3.1.tar.gz
(47.9 kB
view details)
Built Distribution
pycerebro-0.8.3.1-py3.5.egg
(61.2 kB
view details)
File details
Details for the file pycerebro-0.8.3.1.tar.gz
.
File metadata
- Download URL: pycerebro-0.8.3.1.tar.gz
- Upload date:
- Size: 47.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42781516b543f485e4f2be464c9d97af360ebe2913844385ec45f52c11e696eb |
|
MD5 | ca695d0eb3c31beae07f95a6646329a2 |
|
BLAKE2b-256 | 32720560554d638f2b99b914215b9e96645336c4356650ff64ed68662a72e80e |
File details
Details for the file pycerebro-0.8.3.1-py3.5.egg
.
File metadata
- Download URL: pycerebro-0.8.3.1-py3.5.egg
- Upload date:
- Size: 61.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2605bd864b82377f2fa974015b84c8e757d989172ad92b6bb601780bdc894f8 |
|
MD5 | 8f2c19570f37777151fd3b77abbc4261 |
|
BLAKE2b-256 | bce468a50f0c6ef9d553390048c4b9000b5cdf40054773b60424db7638daf8b1 |