corelink
This is the official python module for interfacing with a Corelink server. Details regarding the Corelink project can be found at corelink.hpc.nyu.edu.
This package is split into two submodules:
corelink.corelink
contains the main client-facing Corelink functionscorelink.resources
contains other functions and processes in the background of corelink- notably,
corelink.resources.control
contains all the possible Corelink control functions a user can send.
All functions in corelink.corelink
and corelink.resources.control
are migrated into the main corelink
namespace.
1""" 2This is the official python module for interfacing with a Corelink server. 3Details regarding the Corelink project can be found at [corelink.hpc.nyu.edu](https://corelink.hpc.nyu.edu). 4 5This package is split into two submodules: 6- `corelink.corelink` contains the main client-facing Corelink functions 7- `corelink.resources` contains other functions and processes in the background of corelink 8- notably, `corelink.resources.control` contains all the possible Corelink control functions a user can send. 9 10All functions in `corelink.corelink` and `corelink.resources.control` are migrated into the main `corelink` namespace. 11""" 12from .corelink import * 13from .resources.control import * 14from .resources.plugin import * 15# or: 16# from .resources import control 17# for namespace separation