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

By default, the `iput`/`iget` iCommands redirect the connection to a resource server when up/downloading a data object over a certain size. The `-I` option can be used to force this....

enhancement
consortium-member

Looks fine to me. Does the member variable `pam_password` have anything to do with the new pam_password authentication flow/lib? _Originally posted by @korydraughn in https://github.com/irods/python-irodsclient/pull/367#pullrequestreview-986702019_

Like icommands, PRC could keep a memory of current working directory per-session. Methods could be added to resolve relative paths including . and .. as path elements. In doing this,...

enhancement

#330 will be included in release v1.1.0, but it has only been manually tested. Write some real tests to verify its (continuing) proper operation.

testing

On a dataset where the user only has read permission, the following code downloads the file to the current directory: ``` obj = session.data_objects.get(source_path) ``` However, if we tell iRODS...

I think that Session.data_objects.put() should refuse to overwrite an existing irods object unless FORCE_FLAG_KW is set; but as currently implemented it overwrites regardless.

Dear all, I'm trying to use the python-irodsclient using PAM authentication. My test script is: import os from irods.session import iRODSSession env_file = os.path.expanduser('~/.irods/irods_environment.json') with iRODSSession(irods_env_file=env_file) as session: session.collections.get(mypath).path where...

documentation

Hello, While trying the anonymous ticket-based access, I'm encountering an issue which cannot be reproduced with authenticated access, especially when it comes to get() multiple files sequentially. ### Context ####...

It seems possible both client and server aspects of handling tickets could be more straightforward, from a library perspective. Investigate: - do queries for a data object in the Python...