MOLGENIS EMX2 Python tooling for a BBMRI Biobank Directory
Project description
molgenis-emx2-directory-client
MOLGENIS EMX2 Python tooling for a BBMRI Biobank Directory
Description
This library contains tools for the MOLGENIS EMX2 BBMRI Biobank Directory that help with staging and publishing the data of the national nodes. Staging is the process of copying data from a national node's external server (for example BBMRI-NL) to the staging area on the Directory server. Not all national nodes have external servers; these do not need to be staged. Publishing is the process of copying and combining the data from the staging areas to the public combined tables of the Directory.
Usage
These tools can be used as a library in a script. Start by installing the library with
pip install molgenis-emx2-directory-client.
For an example of how to use this library to stage and publish nodes, see dev.py.
If you just want to retrieve the data of a node for another purpose, you can use the DirectorySession
and ExternalServerSession directly:
import logging
import asyncio
import os
from molgenis_emx2.directory_client.directory_client import DirectorySession
from molgenis_emx2.directory_client.directory_client import NodeData
os.environ['NN_SCHEMA_PREFIX'] = "BBMRI"
# Get the staging and published data of NL from the directory
async def get_data():
# Set up the logger
logging.basicConfig(level="INFO", format=" %(levelname)s: %(name)s: %(message)s")
logging.getLogger("requests").setLevel(logging.WARNING)
logging.getLogger("urllib3").setLevel(logging.WARNING)
# Login to the directory with a DirectorySession
with DirectorySession(url="<DIRECTORY_URL>", schema="<DIRECTORY_SCHEMA>") as session:
# Apply the 'signin' method with the username and password
session.signin(username, password)
nl = session.get_node("NL")
nl_staging_data: NodeData = session.get_staging_node_data(nl)
nl_published_data: NodeData = session.get_published_node_data(nl)
# Now you can use the NodeData objects as you wish
for person in nl_staging_data.persons.rows:
print(person)
# Now you can use the NodeData objects as you wish
for biobank in nl_published_data.biobanks.rows:
print(biobank)
if __name__ == "__main__":
asyncio.run(get_data())
For developers
Clone the molgenis-emx2 repository from GitHub
git clone git@github.com:molgenis/molgenis-emx2.git
Change the working directory to .../tools/directory
This project uses pre-commit and pipenv for the development workflow. Install pre-commit and pipenv if you haven't already:
pip install pre-commit
pip install pipenv
Install the git commit hooks:
pre-commit install
Create an environment and install the package including all (dev) dependencies:
pipenv install --dev
Enter the environment:
pipenv shell
Build and run the tests:
tox
Build
Before building the source, the package bumpversion needs to be installed.
(venv) $ pip install bumpversion
Bump the source version. This will update setup.py and init.py. NB! Make sure that the version numbers in these file have single quotes. Always start with creating a new -dev0 version with major, minor or patch parameter depending on the release scope
(venv) $ ./bump-version.sh major
OR
(venv) $ ./bump-version.sh minor
OR
(venv) $ ./bump-version.sh patch
Then either create a new dev-version in case any changes have been made
(venv) $ ./bump-version.sh build
Or if all is fine, create a new release version
(venv) $ ./bump-version.sh release
After bumping the version, the source can be build
(venv) $ tox -e build
Then dev (and release) versions of the source can be uploaded to testpypi
(venv) $ tox -e publish -- --skip-existing --repository testpypi
And release versions of the source can be uploaded to pypi
(venv) $ tox -e publish -- --skip-existing --repository pypi
Or install locally
(venv) $ pip install dist/molgenis_emx2_pyclient*.whl
When releasing a new version, don't forget to update CHANGELOG.md and, if applicable, README.md and AUTHORS.md.
Note
This project has been set up using PyScaffold 4.0.2. For details and usage information on PyScaffold see https://pyscaffold.org/.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file molgenis_emx2_directory_client-1.4.1.tar.gz.
File metadata
- Download URL: molgenis_emx2_directory_client-1.4.1.tar.gz
- Upload date:
- Size: 70.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4492d824476bd3a48bf6c5a6bb5ba1ca35fb9c212b0288c0313933e59c335d59
|
|
| MD5 |
9ebe7c0b72bed180dcd36570b573611a
|
|
| BLAKE2b-256 |
173b8f51eabe52fd8ad61b61334b2841e9b37def3d86c2708244a7fa66c3845e
|
File details
Details for the file molgenis_emx2_directory_client-1.4.1-py2.py3-none-any.whl.
File metadata
- Download URL: molgenis_emx2_directory_client-1.4.1-py2.py3-none-any.whl
- Upload date:
- Size: 36.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7fa1f02f0c75369365ec14b1b1d137703ee285985bfaa329685991f904dc52c
|
|
| MD5 |
b0f5ed6ffb95151b9d5db11123590160
|
|
| BLAKE2b-256 |
016e99c1652d2e8a22e8d2e82764f0830b2982f7b610bfea93426997ac2b05af
|