Skip to main content

Aidbox client for python

Project description

|Build Status| |codecov| |pypi|

aidbox-py
=========

Aidbox client for python. This package provides an API for CRUD
operations over aidbox resources

API
===

To obtain token by email and password use static method:
``Aidbox.obtain_token(host, email, password)``

To create Aidbox instance use:

``Aidbox(host, token)``

Returns an instance of the connection to the aidbox server which
provides: \* .reference(resource_type, id, **kwargs) - returns
``AidboxReference`` to the resource \* .resource(resource_type,
**\ kwargs) - returns ``AidboxResource`` which described below \*
.resources(resource_type) - returns ``AidboxSearchSet``

``AidboxResource``

provides: \* .save() - creates or updates resource instance \* .delete()
- deletes resource instance \* .to_reference(**kwargs) - returns
``AidboxReference`` for this resource \* setattr/getattr using dot
operator

``AidboxReference``

provides: \* .to_resource() - returns ``AidboxResource`` for this
reference

``AidboxSearchSet``

provides: \* .search(param=value) \* .limit(count) \* .page(page) \*
.sort(\ *args) * .execute() - makes query to the server and returns a
list of ``AidboxResource`` \* .first() - returns ``AidboxResource`` or
None \* .get(id=id) - returns ``AidboxResource`` or raises
``AidboxResourceNotFound``

Usage
=====

Create an instance

.. code:: python

ab = Aidbox(host='host', token='token')

Fetch list of resource’s instances

.. code:: python

resources = ab.resources('Patient') # Return lazy search set
resources = resources.search(name='John').limit(10).page(2).sort('-id', 'name')

resources.execute() # Returns list of AidboxResource

Get the particular instance of resource

.. code:: python

res = ab.resources('Entity').get(id=1)

Create new resource’s instance

.. code:: python

res = ab.resource('Entity')
res.name = 'Chat'
res.save() # Creates new instance

res.name = 'Chat2'
res.save() # Updates the instance

res.delete() # Deletes the instance

.. |Build Status| image:: https://travis-ci.org/beda-software/aidbox-py.svg?branch=master
:target: https://travis-ci.org/beda-software/aidbox-py
.. |codecov| image:: https://codecov.io/gh/beda-software/aidbox-py/branch/master/graph/badge.svg
:target: https://codecov.io/gh/beda-software/aidbox-py
.. |pypi| image:: https://img.shields.io/pypi/v/aidbox.svg
:target: https://pypi.python.org/pypi/aidbox

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

aidbox-0.1.0.tar.gz (6.1 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