python-irodsclient icon indicating copy to clipboard operation
python-irodsclient copied to clipboard

A Python API for iRODS

Results 169 python-irodsclient issues
Sort by recently updated
recently updated
newest added

Client-end OS: Windows 10 Enterprise PRC: v1.1.6 iRODS version: 4.2.11 as released Attempting to use this script (pamlogin.py) to log in using PAM authentication from a Windows 10 client: ```...

bug

similar to functionality provided by: - `iticket ls` - `iticket ls-all`

enhancement

`open()` currently will honor the `kw.DEST_RESC_NAME_KW` keyword. `kw.RESC_NAME_KW` and `kw.RESC_HIER_STR_KW` are also honored by `open()` - so it may be that there is no reason to also support `kw.DEST_RESC_NAME_KW` as...

_I am not sure enough whether this is a limitation or an issue and also if this is an issue, then should this be here or in the logical quota...

documentation

Hi folks, I've been trying to use `RErrorStack` to display the errors on a failed upload via a `put()` and running into some issues following the documentation, can you tell...

Running the following script ``` #!/usr/bin/python # put.py from __future__ import print_function import sys from irods.test.helpers import make_session import irods.keywords as kw if len(sys.argv[1:3])==2: s = make_session() c = s.data_objects.put...

Allow collections to be transferred to (aka PUT) and from (aka GET) iRODS recursively, preserving the tree structure of all subcollections and contained objects.

Hello, for efficient collection synchronisation, it would be great to have an irsync-like function in the python API. Currently we implemented a workaround which first compares the local folder and...

enhancement

Trying to instantiate a _data object_ with a random string results in a terminal `CollectionDoesNotExist` exception: ```python import irods import irods.session import os import ssl env_file = os.path.expanduser('~/.irods/irods_environment.json') ssl_context =...

When using `put()` to upload files, the resource usage on the catalog server per transfer is minimal, but can add up for large numbers of (large) files (see #375). For...