Skip to main content

Python client for the Molgenis EMX2 API

Project description

The Molgenis EMX2 Pyclient is Python package developed to be used for data management on Molgenis EMX2 servers. A detailed overview of the capabilities is presented in the MOLGENIS documentation.

Installation

The releases of the package are hosted at PyPI. The recommended way to install the latest version is through pip.

pip install molgenis-emx2-pyclient

How to use

Within your Python project import the class Client and instantiate it as a context manager. Operations and queries can then be executed from within the context.

from molgenis_emx2_pyclient import Client

username = 'username'
password = '...'

with Client('https://example.molgeniscloud.org') as client:
    client.signin(username, password)

    # Retrieve signin information
    print(client.status)
    """ Output:
    Host: https://example.molgeniscloud.org
    Status: Signed in
    Schemas:
        CatalogueOntologies
        catalogue
        ExampleSchema
        ...
    Version: v10.10.1
    """
    
    # Retrieve data from a table on a schema
    data = client.get(schema='ExampleSchema', table='Cohorts')
    
    # Create a new schema on the server
    client.create_schema(name='New Schema')
    
    # Delete a schema from the server
    client.delete_schema(name='New Schema')

Instead of signing in with a username and password the client can also be used while authorized by a (temporary) token that is generated on the server. See the MOLGENIS documentation for generating tokens

from molgenis_emx2_pyclient import Client

token = '...'

with Client('https://example.molgeniscloud.org', token=token) as client:

    # Retrieve signin information
    print(client.status)
    """ Output:
    Host: https://example.molgeniscloud.org
    User: token
    Status: session-less
    Schemas:
        CatalogueOntologies
        catalogue
        ExampleSchema
        ...
    Version: v10.32.1
    """
    
    ...
    ...

Development

Clone the molgenis-emx2 repository from GitHub

git clone git@github.com:molgenis/molgenis-emx2.git

Change the working directory to .../tools/pyclient

Create a virtual Python environment

On macOS:

python -m venv venv

On Linux:

python3.11 -m venv venv

On Windows:

py -3.11 venv venv

Activate the virtual environment

On macOS and Linux:

source venv/bin/activate

On Windows:

.venv\Scripts\activate.bat

Install the script dependencies

pip install -r requirements.txt

Build

Before building the source, the package build needs to be installed.

(venv) $ pip install build

(venv) $ python -m build

(venv) $ pip install dist/molgenis_emx2_pyclient*.whl

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

molgenis-emx2-pyclient-10.47.0.tar.gz (14.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

molgenis_emx2_pyclient-10.47.0-py3-none-any.whl (15.2 kB view details)

Uploaded Python 3

File details

Details for the file molgenis-emx2-pyclient-10.47.0.tar.gz.

File metadata

  • Download URL: molgenis-emx2-pyclient-10.47.0.tar.gz
  • Upload date:
  • Size: 14.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.2

File hashes

Hashes for molgenis-emx2-pyclient-10.47.0.tar.gz
Algorithm Hash digest
SHA256 1886cc4d8064f6022b895b53a3d90270a106190410b530bf4009f9c1a2a4c0c7
MD5 e5a560896e59c00db1dd01f81eac19ee
BLAKE2b-256 d4aa405b5e08956557e7a6619456b1bcd6579d9a3bdb8c473600ec80730223b1

See more details on using hashes here.

File details

Details for the file molgenis_emx2_pyclient-10.47.0-py3-none-any.whl.

File metadata

File hashes

Hashes for molgenis_emx2_pyclient-10.47.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c804307ff4513175012d3caf8b0e763ca8fbbacb36a432a08f775299d39439b4
MD5 e66098d74ba9724473005fdb8bc8e24a
BLAKE2b-256 39b43ce7b1784c003dac0f428ffbaac71ba0a695a1fe00045926a39ddc8dc36f

See more details on using hashes here.

Supported by

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