python-irodsclient
python-irodsclient copied to clipboard
A Python API for iRODS
Add PRC endpoint for the [bulk registration API plugin](https://github.com/irods/irods_api_plugin_bulk_registration) Consider creating a separate manager for API plugins (similar to data objects and collections)
I can't figure out if it is possible to use python-irodsclient behind a proxy on windows, if so how? Best Regards,
update session.py to allow session creation providing an iRODSAccount object for a cleaner object-oriented use pattern
Is there a way to do 'iadmin aua' or 'iadmin lua' using the python API?
example script; ``` from __future__ import print_function import os from irods.session import iRODSSession try: env_file = os.environ['IRODS_ENVIRONMENT_FILE'] except KeyError: env_file = os.path.expanduser('~/.irods/irods_environment.json') session = iRODSSession(irods_env_file=env_file) obj = session.data_objects.get("/seq/illumina/library_merge/14200212.HXV2.paired308.19071ecea2/14200212.HXV2.paired308.19071ecea2.cram") print("%s/%s" %...
Would it be possible to enable the functionality of recursively putting directories to iRODS? Analogous to the `iput -r` icommand, see [iRODS Docu](https://docs.irods.org/master/icommands/user/#iput). Similar to [this issue](https://github.com/irods/python-irodsclient/issues/109) the DataObjectManager.put() method...
Hi, I am calling a rule for a data object in the EUDAT project. I'm following the metadata rule example [here](https://github.com/irods/python-irodsclient/blob/master/irods/test/rule_test.py#L78). Here's my rule from command line: ``` irule \...
At present, some of the code doesn't meet the [PEP8](https://www.python.org/dev/peps/pep-0008/#a-foolish-consistency-is-the-hobgoblin-of-little-minds) style guide, which means writing python using it often doesn't either which makes for IMHO less readable code and may...
Includes test with `atomic_metadata`. Other APIs that could use this feature include: `replica_truncate`
Update the client library's advertised server compatibility to 4.3.3 in preparation for that release. That this did not happen for release v2.1.0 will not be not an upgrade blocker for...