Skip to main content

Pure python SciDB client library implementation

Project description

Pure python SciDB client library.

This library aims to provide access to SciDB server through native network protocol based on protobuf. It still on early stages of development, so do not expect complete features support and stable work :)

Any feedback and patches are welcome: https://github.com/artyom-smirnov/scidb4py/

Runtime dependencies

  • python >= 2.7 or pypy >= 1.8 (python 3 not supported yet)

  • python-protobuf >= 2.4

  • bitstring

Build dependencies

  • protobuf-compiler >= 2.4

Installation

sudo pip install scidb4py

or

sudo python setup.py install

Examples

Iterating through array item-by-item

from scidb4py import Connection
conn = Connection('localhost', 1239)
conn.open()
array = conn.execute("select * from array(<a:int32>[x=0:3,2,0], '[0,1,2,3]')")
for pos, val in array:
    print '%d - %d' % (pos['x'], val['a'])
conn.close()

Iterating through array chunk-by-chunk, item-by-item

from scidb4py import Connection
conn = Connection('localhost', 1239)
conn.open()
array = conn.execute("select * from array(<a:int32 null>[x=0:2,3,0, y=0:2,3,0], '[[1,2,3][4,5,6][7,8,9]]')")
while not array.end:
    while not array.chunk_end:
        print '%s - %s' % (array.get_coordinates(), array.get_item("a"))
        array.next_item()
    array.next_chunk()
conn.close()

Changelog

0.0.6

  • Fixed bug #15 (Large chunk can not fit single network message)

  • Fixed reading strings greater than 8 bytes from RLE chunks

  • Added ‘active’ property to Connection which indicate active query

  • Basic query autocomplete and autocancel. Complete by default.

0.0.5

  • Fixed bug #14 (Strange bzipped chunk issue)

  • Fixed bug #5 (Compressed chunk support)

  • scidb4py now provide __version__ string

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

scidb4py-0.0.6.tar.gz (24.4 kB view details)

Uploaded Source

File details

Details for the file scidb4py-0.0.6.tar.gz.

File metadata

  • Download URL: scidb4py-0.0.6.tar.gz
  • Upload date:
  • Size: 24.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for scidb4py-0.0.6.tar.gz
Algorithm Hash digest
SHA256 d74bd2e9e80fff5fb37bb3a2bb39acd2b8d87f791dfc2f46ff60e1c90806b426
MD5 f6cf41aefb055420022fd1f993933130
BLAKE2b-256 949efbe848a65c3d0824e3788c13c706d349d55b192c299ab602036393352cae

See more details on using hashes here.

Supported by

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