A set of tools to run nanohub web apis
Project description
Nanohub remote
Stats
Latest Release | |
PyPI Downloads | |
Nanohub Tutorial |
Installation
pip install nanohub-remote
Usage
import nanohubremote as nr
auth_data = {
'client_id': XXXXXXXX,
'client_secret': XXXXXXXX,
'grant_type': 'password',
'username': XXXXXXXX,
'password': XXXXXXXX
}
# to get username and password, register on nanohub.org (https://nanohub.org/register/)
# to get client id and secret, create a web application (https://nanohub.org/developer/api/applications/new), use "https://127.0.0.1" as Redirect URL
session = nr.Session(auth_data)
Available Nanohub Points
Tools
TOOLNAME = '' # valid Nanoohub tool name e.g. pntoy
tool = nr.Tool(auth_data)
# Get Available input parameters
params = tool.getToolParameters(TOOLNAME)
# Submit a simulation experiment
job_id = tool.submitTool(params)
# Check Status
status = tool.checkStatus(job_id['job_id'])
# Get Results
results = tool.getResults(job_id['job_id'])
# Submit an wait for results
results = tool.submitTool(params, wait_results=True)
Sim2Ls
TOOLNAME = '' # valid Nanoohub tool name e.g. pntoy
s2l = nr.Sim2L(auth_data)
# Get Available input parameters
params = s2l.getToolParameters(TOOLNAME)
# Submit a simulation experiment
job_id = s2l.submitTool(params)
# Check Status
status = s2l.checkStatus(job_id['job_id'])
# Get Results
results = s2l.getResults(job_id['job_id'])
# Submit an wait for results
results = s2l.submitTool(params, wait_results=True)
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file nanohub_remote-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: nanohub_remote-0.1.3-py3-none-any.whl
- Upload date:
- Size: 14.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 88deed1ee8bd0782a203e90a23d757fdaf2b1013d94fc389e38f19ceb9d21eb5 |
|
MD5 | 2a3048dba9cb1d10adcd5d9a8a9db634 |
|
BLAKE2b-256 | 55a5021cd20db27ca099ff344b09112265a164d356e9e6a2761c5c155cae8d40 |