Skip to main content

Official Shooju Client

Project description

shooju is the official python client for Shooju with the following features:

  • Authentication via username and api key

  • Getting series points and fields

  • Registering import jobs and writing and removing points and fields

Installation

Install using pip:

pip install shooju

Basic Usage

>>> from shooju import Connection, sid, Point
>>> from datetime import date
>>> conn = Connection(server = <API_SERVER>, user = <USERNAME>, api_key = <API_KEY>)
>>> job = conn.register_job('China Pop.')
>>> series_id = sid("users", <USERNAME>, "china", "population")
>>> job.put_point(series_id, Point(date(2012, 1, 1), 314.3))
>>> job.put_field(series_id, "unit", "millions")
>>> print conn.get_point(series_id, date(2012, 1, 1)).value
313.3
>>> print conn.get_field(series_id, "unit")
millions

Source

https://bitbucket.org/shooju/python-client

Changelist

0.4.5

  • Added remove_points and remove_fields methods to RemoteJob to clear the fields/points before sending new data.

0.4.4

  • Change Connection search default point size to 0

0.4.3

  • Fix another job cache error.

0.4.2

  • Added pre and post submit hooks to RemoteJob to perform actions after submitting a job to shooju

0.4.1

  • Fix job cache error, if exception was raised cache was not flushed

0.4

  • Connection().pd.search_series renamed to search

  • Change way DataFrame is formatted when using Connection().pd.search()

  • Added key_field parameters to Connection().pd.search() to add a custom name for the column using series fields

0.3

  • Connection().scroll() fixed

  • Initializing Connection doesn’t ping the API

  • If series does not exist get_point, get_points, get_field, get_fields return None

0.2

  • Connection().multi_get() renamed to mget()

  • mget().get_points(), get_fields(), get_point() and get_field() return index of their result

  • Connection().register_job() requires a description of more than 3 chars

  • Connection().scroll_series() renamed to scroll()

  • Renamed and rearranged Connection parameters: Connection(server, user, api_key)

  • Field object removed, fields return a simple dict

  • Points can have value of None

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

shooju-0.4.5.tar.gz (12.8 kB view hashes)

Uploaded Source

Supported by

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