2023-05-01 20:00:32 +09:00
|
|
|
# mdrs-client-python
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2023-05-01 20:00:32 +09:00
|
|
|
The mdrs-client-python is python library and a command-line client for up- and downloading files to and from MDRS based repository.
|
|
|
|
|
|
|
|
## Installing
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2024-02-09 18:22:13 +09:00
|
|
|
```shell
|
2023-10-04 11:29:08 +09:00
|
|
|
poetry install
|
2023-05-01 20:00:32 +09:00
|
|
|
```
|
|
|
|
|
|
|
|
## Example Usage
|
|
|
|
|
|
|
|
### config create
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2023-05-01 20:00:32 +09:00
|
|
|
Create remote host configuration
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2024-02-09 18:22:13 +09:00
|
|
|
```shell
|
|
|
|
mdrs config create neurodata https://neurodata.riken.jp/api
|
2023-05-01 20:00:32 +09:00
|
|
|
```
|
|
|
|
|
|
|
|
### login
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2023-05-09 19:45:03 +09:00
|
|
|
Login to remote host
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2024-02-09 18:22:13 +09:00
|
|
|
```shell
|
|
|
|
mdrs login neurodata:
|
2023-05-01 20:00:32 +09:00
|
|
|
Username: (enter your login name)
|
|
|
|
Password: (enter your password)
|
2024-02-09 18:22:13 +09:00
|
|
|
|
|
|
|
mdrs login -u USERNAME -p PASSWORD neurodata:
|
2023-05-01 20:00:32 +09:00
|
|
|
```
|
|
|
|
|
|
|
|
### logout
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2023-05-01 20:00:32 +09:00
|
|
|
Logout from remote host
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2024-02-09 18:22:13 +09:00
|
|
|
```shell
|
|
|
|
mdrs logout neurodata:
|
2023-05-01 20:00:32 +09:00
|
|
|
```
|
|
|
|
|
|
|
|
### whoami
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2023-05-10 18:17:35 +09:00
|
|
|
Print current user name
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2024-02-09 18:22:13 +09:00
|
|
|
```shell
|
|
|
|
mdrs whoami neurodata:
|
2023-05-01 20:00:32 +09:00
|
|
|
```
|
|
|
|
|
|
|
|
### labs
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2023-05-01 20:00:32 +09:00
|
|
|
List all laboratories
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2024-02-09 18:22:13 +09:00
|
|
|
```shell
|
|
|
|
mdrs labs neurodata:
|
2023-05-01 20:00:32 +09:00
|
|
|
```
|
|
|
|
|
|
|
|
### ls
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2023-05-01 20:00:32 +09:00
|
|
|
List the folder contents
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2024-02-09 18:22:13 +09:00
|
|
|
```shell
|
|
|
|
mdrs ls neurodata:/NIU/Repository/
|
|
|
|
mdrs ls -p PW_OPEN_PASSWORD neurodata:/NIU/Repository/PW_Open/
|
|
|
|
mdrs ls -r neurodata:/NIU/Repository/Dataset1/
|
|
|
|
mdrs ls -J -r neurodata:/NIU/Repository/Dataset1/
|
2023-05-01 20:00:32 +09:00
|
|
|
```
|
|
|
|
|
|
|
|
### mkdir
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2023-05-01 20:00:32 +09:00
|
|
|
Create a new folder
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2024-02-09 18:22:13 +09:00
|
|
|
```shell
|
|
|
|
mdrs mkdir neurodata:/NIU/Repository/TEST
|
2023-05-01 20:00:32 +09:00
|
|
|
```
|
|
|
|
|
|
|
|
### upload
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2023-05-09 19:45:03 +09:00
|
|
|
Upload the file or directory
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2024-02-09 18:22:13 +09:00
|
|
|
```shell
|
|
|
|
mdrs upload ./sample.dat neurodata:/NIU/Repository/TEST/
|
|
|
|
mdrs upload -r ./dataset neurodata:/NIU/Repository/TEST/
|
2024-07-04 12:33:57 +09:00
|
|
|
mdrs upload -r -s ./dataset neurodata:/NIU/Repository/TEST/
|
2023-05-01 20:00:32 +09:00
|
|
|
```
|
|
|
|
|
|
|
|
### download
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2023-05-09 19:45:03 +09:00
|
|
|
Download the file or folder
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2024-02-09 18:22:13 +09:00
|
|
|
```shell
|
|
|
|
mdrs download neurodata:/NIU/Repository/TEST/sample.dat ./
|
|
|
|
mdrs download -r neurodata:/NIU/Repository/TEST/dataset/ ./
|
|
|
|
mdrs download -p PW_OPEN_PASSWORD neurodata:/NIU/Repository/PW_Open/Readme.dat ./
|
2023-05-01 20:00:32 +09:00
|
|
|
```
|
|
|
|
|
2023-05-09 19:45:03 +09:00
|
|
|
### mv
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2023-05-09 19:45:03 +09:00
|
|
|
Move or rename the file or folder
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2024-02-09 18:22:13 +09:00
|
|
|
```shell
|
|
|
|
mdrs mv neurodata:/NIU/Repository/TEST/sample.dat neurodata:/NIU/Repository/TEST2/sample2.dat
|
|
|
|
mdrs mv neurodata:/NIU/Repository/TEST/dataset neurodata:/NIU/Repository/TEST2/
|
2023-07-20 11:43:07 +09:00
|
|
|
```
|
|
|
|
|
|
|
|
### cp
|
|
|
|
|
|
|
|
Copy the file and folder
|
|
|
|
|
2024-02-09 18:22:13 +09:00
|
|
|
```shell
|
|
|
|
mdrs cp neurodata:/NIU/Repository/TEST/sample.dat neurodata:/NIU/Repository/TEST2/sample2.dat
|
|
|
|
mdrs cp -r neurodata:/NIU/Repository/TEST/dataset neurodata:/NIU/Repository/TEST2/
|
2023-05-01 20:00:32 +09:00
|
|
|
```
|
|
|
|
|
2023-05-09 19:45:03 +09:00
|
|
|
### rm
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2023-05-09 19:45:03 +09:00
|
|
|
Remove the file or folder
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2024-02-09 18:22:13 +09:00
|
|
|
```shell
|
2024-07-04 12:33:57 +09:00
|
|
|
mdrs rm neurodata:/NIU/Repository/TEST/sample.dat
|
|
|
|
mdrs rm -r neurodata:/NIU/Repository/TEST/dataset
|
2023-05-01 20:00:32 +09:00
|
|
|
```
|
|
|
|
|
2023-05-11 17:04:05 +09:00
|
|
|
### chacl
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2023-05-11 17:04:05 +09:00
|
|
|
Change the folder access level
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2024-02-09 18:22:13 +09:00
|
|
|
```shell
|
|
|
|
mdrs chacl private neurodata:/NIU/Repository/Private
|
|
|
|
mdrs chacl cbs_open -r neurodata:/NIU/Repository/CBS_Open
|
2024-07-04 12:33:57 +09:00
|
|
|
mdrs chacl pw_open -r -p PW_OPEN_PASSWORD neurodata:/NIU/Repository/PW_Open
|
2023-05-11 17:04:05 +09:00
|
|
|
```
|
|
|
|
|
2023-05-10 18:17:35 +09:00
|
|
|
### metadata
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2023-05-10 18:17:35 +09:00
|
|
|
Get a folder metadata
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2024-02-09 18:22:13 +09:00
|
|
|
```shell
|
|
|
|
mdrs metadata neurodata:/NIU/Repository/TEST/
|
|
|
|
mdrs metadata -p PW_OPEN_PASSWORD neurodata:/NIU/Repository/PW_Open/
|
2023-05-10 18:17:35 +09:00
|
|
|
```
|
|
|
|
|
2023-05-01 20:00:32 +09:00
|
|
|
### file-metadata
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2023-05-01 20:00:32 +09:00
|
|
|
Get the file metadata
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2024-02-09 18:22:13 +09:00
|
|
|
```shell
|
|
|
|
mdrs file-metadata neurodata:/NIU/Repository/TEST/dataset/sample.dat
|
|
|
|
mdrs file-metadata -p PW_OPEN_PASSWORD neurodata:/NIU/Repository/PW_Open/Readme.txt
|
2023-05-01 20:00:32 +09:00
|
|
|
```
|
|
|
|
|
|
|
|
### help
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2023-05-01 20:00:32 +09:00
|
|
|
Show the help message and exit
|
2023-07-20 11:43:07 +09:00
|
|
|
|
2024-02-09 18:22:13 +09:00
|
|
|
```shell
|
|
|
|
mdrs -h
|
2023-05-01 20:00:32 +09:00
|
|
|
```
|