Teselagen Biotechnology API client
Project description
TeselaGen Python API Client
The TeselaGen Python API Client runs on Python 3.
NOTE : All the following commands are supposed to be run on the base directory, unless specified.
Library Installation
This library contains the TeselaGen Python API Client.
To install it locally,
-
Install it with pip
pip3 install teselagen
Examples
To be able to run the examples
, you need to (after installing the library)
-
Clone or download
teselagen/examples
-
Open any notebook in the
examples
folder with Jupyter Notebook
Use the provided environment
You can use the provided docker environment that contains a ready to use installation of all required packages to run the notebooks. Here are the instructions according to your OS
Linux/MacOS
-
After clone/download, run the build script with
bash build.sh
-
Run the container with
bash run.sh
-
Open your browser and set the address:
http://localhost:8888
. From there you can explore all example notebooks
Development (Linux/MacOS)
Docker environment
-
Build the docker environment with command
bash build.sh
-
Run the container as a developer with the command
bash run_dev.sh
. With this command theteselagen
library will be installed in editable mode.
Dependencies
Install dependencies
If lock file exists (the lock file contains fixed versions of dependencies), the poetry install
command will install
all dependencies according to the lock file (lock file must be added to the repo). If the file does not exist, it
will generate the lock file again.
Update dependencies
Use this command if you made changes on the dependencies at the pyproject.toml
file:
poetry update
It is the equivalent to make an install after deleting the lock
file.
Tests
-
Add your credentials
To run the tests, you must create a
.credentials
file containing the test username and password, in the root folder.The content of
.credentials
file should look similar to the following:{ "username" : "ReplaceWithYourUsername", "password" : "ReplaceWithYourPassword" }
- NOTE: It should be a valid
JSON
file.JSON with Comments
(JSONC
) format is not supported.
- DO NOT COMMIT THIS FILE : .credentials
- NOTE: It should be a valid
-
Modify configuration
You may modify some test configuration parameters by creating a
.test_configuration
file. This is aJSON
formatted file, where you can edit the server name used for tests. This file must be stored next to.credentials
file. Here is an example{ "host_url" : "https://platform.teselagen.com" }
- NOTE: It should be a valid
JSON
file.JSON with Comments
(JSONC
) format is not supported.
- NOTE: It should be a valid
-
Run the tests
cd /home && python3 setup.py test
You may use the docker environment for testing. For that, first build the environment with
bash build.sh
. Then just run the container withbash run_dev.sh
. Once inside (docker exec -ti tgclient bash
), go tohome/
and you are ready to run the test command shown above.
Publishing
Publishing is limited to administrators. PyPi publishing is made by using poetry.
To publish:
-
Run
poetry build
from the project's root folder (same directory aspyproject.toml
) -
Be sure you have set the credentials with the api token:
poetry config pypi-token.pypi <TOKEN>
Ask for a token to administrators if needed
- Publish (check you have set a new version tag in
pyproject.toml
):
poetry publish
Notes
Default shell in Ubuntu
is dash
, to which /bin/sh
is symlinked. But dash
doesn't have the pipefail
option.
That's why some of our shell scripts have the following line:
# pipefail is necessary to propagate exit codes (but it may not be supported by your shell)
bash | set -o pipefail > /dev/null 2>&1
For example, the following commands will list all options supported by set
in each of the respective shells:
sh -c 'set -o'
dash -c 'set -o'
bash -c 'set -o'
zsh -c 'set -o'
So, in Ubuntu
it may be recommended to use bash
instead of sh
.
bash some_shell_script.sh
Or, as follows:
. some_shell_script.sh
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
File details
Details for the file teselagen-0.4.5.tar.gz
.
File metadata
- Download URL: teselagen-0.4.5.tar.gz
- Upload date:
- Size: 256.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.10 CPython/3.9.9 Linux/5.10.104-linuxkit
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fdccb86ca2893ff3132adfe3e28c12914b77c021ad71cfcfb6c645b60ff69af5 |
|
MD5 | 49e8de21ff4d418b25f7d1360f653aa6 |
|
BLAKE2b-256 | 6366f75e570bda64b8c2c832da1dfc8eff700da2ed6d9b4a7df4fa1ac6c3fb51 |
File details
Details for the file teselagen-0.4.5-py3-none-any.whl
.
File metadata
- Download URL: teselagen-0.4.5-py3-none-any.whl
- Upload date:
- Size: 267.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.10 CPython/3.9.9 Linux/5.10.104-linuxkit
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2327f0bd1e2440b49763794e4fd2f7b3e0a233e2bbd4ad9e2561c99ad803f74e |
|
MD5 | eb3a2781003faa21bf1b96644997ce1f |
|
BLAKE2b-256 | 9463c8215ba30a0a81490913024a52163130aaa2b2a3f42940ecbad2ebc563e1 |