Skip to main content

OBiBa/Opal python client.

Project description

Opal Python CI

This Python-based command line tool allows to access to a Opal server through its REST API. This is the perfect tool for automating tasks in Opal using shell scripts.

See also the Opal R Client which offers a comprehensive programming interface.

Usage

Install with:

pip install obiba-opal

Note: obiba-opal depends on pycurl which itself depends on system libraries (mostly OpenSSL related). In case pycurl installation fails with pip, a quick fix is to install it via a system package:

# on Debian systems
sudo apt-get install python3-pycurl

# on RPM systems
sudo yum install python3-pycurl

CLI

To get the options of the command line:

opal --help

This command will display which sub-commands are available. For each sub-command you can get the help message as well:

opal <subcommand> --help

The objective of having sub-command is to hide the complexity of applying some use cases to the Opal REST API. More sub-commands will be developed in the future.

API

Opal Python client can be easily extended by using the exposed classes. The classes *Command return an Opal task object, to be followed with the TaskService. The classes *Service perform immediate operations.

from obiba_opal import OpalClient, HTTPError, Formatter, ImportCSVCommand, TaskService, FileService, DictionaryService

# if 2-factor auth is enabled, user will be asked for the secret code
# Personal access token authentication is also supported (and recommended)
client = OpalClient.buildWithAuthentication(server='https://opal-demo.obiba.org', user='administrator', password='password')

try:
    # upload a local CSV data file into Opal file system
    fs = FileService(client)
    fs.upload_file('./data.csv', '/tmp')

    # import this CSV file into a project
    task = ImportCSVCommand(client).import_data('/tmp/data.csv', 'CNSIM')
    status = TaskService(client).wait_task(task['id'])
    
    # clean data file from Opal
    fs.delete_file('/tmp/data.csv')

    if status == 'SUCCEEDED':
        dico = DictionaryService(client)
        table = dico.get_table('CNSIM', 'data')
        # do something ...
        dico.delete_tables('CNSIM', ['data'])
    else:
        print('Import failed!')
        # do something ...
except HTTPError as e:
    Formatter.print_json(e.error, True)
finally:
    client.close()

Mailing list

Have a question? Ask on our mailing list!

obiba-users@googlegroups.com

http://groups.google.com/group/obiba-users

License

OBiBa software are open source and made available under the GPL3 licence. OBiBa software are free of charge.

OBiBa acknowledgments

If you are using OBiBa software, please cite our work in your code, websites, publications or reports.

"The work presented herein was made possible using the OBiBa suite (www.obiba.org), a software suite developed by Maelstrom Research (www.maelstrom-research.org)"

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

obiba_opal-5.3.0.tar.gz (48.5 kB view details)

Uploaded Source

Built Distribution

obiba_opal-5.3.0-py3-none-any.whl (58.2 kB view details)

Uploaded Python 3

File details

Details for the file obiba_opal-5.3.0.tar.gz.

File metadata

  • Download URL: obiba_opal-5.3.0.tar.gz
  • Upload date:
  • Size: 48.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.12.11 Linux/6.11.0-1015-azure

File hashes

Hashes for obiba_opal-5.3.0.tar.gz
Algorithm Hash digest
SHA256 db2330f9d1c39831991594e8f1e0b7ed573e6b75846c703a7d0524cf31389a8d
MD5 db622c8f06da9cd7ed544f7ffa597c7e
BLAKE2b-256 be9e0c6290ddc7231f3fec28546b8b3810d881fc987d5cd7726440887f0fc116

See more details on using hashes here.

File details

Details for the file obiba_opal-5.3.0-py3-none-any.whl.

File metadata

  • Download URL: obiba_opal-5.3.0-py3-none-any.whl
  • Upload date:
  • Size: 58.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.12.11 Linux/6.11.0-1015-azure

File hashes

Hashes for obiba_opal-5.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8da1022c07e49be5dc9bd4b9f48acaff8f84acf0846bbad7b8e9f7920617b5e8
MD5 f1869e689e88b97654f369d3af2f8991
BLAKE2b-256 2b7d9dcb5e0f6c93b0ef077062a8afc9039c064f9d4c7797ac464b51edfe08c1

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