Python-based command-line client for OwnCloud
Project description
Copyright (c) 2016, 2017 Florian Kaiser, Klaus Reuter
https://gitlab.mpcdf.mpg.de/mpcdf/pocli
https://pypi.python.org/pypi/pocli
Released under the MIT License (MIT), see the LICENSE file.
Introduction
The pocli package provides a lightweight ownCloud command line client for basic file operations such as upload, download, directory creation and listing, and deletion. It is written in Python and built upon the official pyocclient package.
The development of pocli was motivated by the need for a tool to quickly up- or download single (or few) files on a computer which is operated without any graphical user interface (i.e. a typical HPC system), and where it may not be desirable to install the official client software. In case you have more complex requirements (continuous synchronization), please use the official client.
A typical use case is:
Upload a tarball from the login node of a HPC system to your ownCloud server using pocli.
Log in to your ownCloud server from your laptop via the web browser and share the tarball with other users (e.g. by sending a download URL via email).
Another use case would be:
Upload a tarball from HPC system A to your ownCloud server using pocli.
Download the tarball to HPC system B from your ownCloud server using pocli.
Note that – deliberately – no recursive operations are supported.
Requirements and installation
pocli was developed and tested with Python 2.7.12 and Python 3.5.2. Please drop us a line in case pocli does not work with other (newer) Python versions.
The package including its dependencies can be installed easily via pip:
pip install --user pocli
Alternatively, the package can be installed from the source distribution. First, as a requirement, pocli needs the official ownCloud Python module:
pip install --user pyocclient
The pocli package itself can then be installed in the standard way:
python setup.py install --user
Make sure to add the installation directory to the PATH environment variable, on a Unix system this is for example “~/.local/bin”. The previous examples pass the “–user” flag in order to work purely in the user’s homedirectory. In case this flag is omitted, system-wide locations are chosen.
Functionality examples (optional arguments are given in parentheses)
The pocli package provides the oc command. Moreover, the alias ds can be used interchangeably to comply with the naming of the MPCDF DataShare service. It takes positional and named arguments in analogy to e.g. git. The following examples illustrate the basic usage:
basic help
oc --help
command-specific help
oc command --help
list remote files and folders, defaults to “/”
oc ls <remote_folder>
create remote directory “temp”
oc mkdir temp
upload single file to the ownCloud root directory
oc put file1
upload multiple files to the ownCloud “temp” directory
oc put --directory=temp file1 file2 file3
download single file from ownCloud to the current working directory
oc get file1
download multiple files to the local “temp” directory
oc get --directory=temp file1 file2 file3
remove remote file(s)
oc rm file1 file2
check if a connection to the server can be established successfully based on the present configuration
oc check
Configuration
The connection to an ownCloud instance requires a valid configuration. The configuration file in JSON format is located at “~/.ocrc” and is created at the first invocation of the oc command. The initial default configuration is for the MPCDF DataShare service, however, it can be configured freely to connect to other ownCloud instances. Simply adapt the configuration file to your needs. No credentials are ever stored in “~/.ocrc”.
Further configuration can be overridden by environment variables, * OC_CONFIG_FILE can override the location of the configuration file * OC_USER can override the username of the configuration file * OC_SERVER can override the server address of the configuration file * OC_DEBUG can override the DEBUG setting of the configuration file
Password handling
Security concerns arise in particular if the ownCloud password is identical to the password used for other services at the same site. To this end, by default, the oc executable asks the user to type the password at each invocation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pocli-0.1.12.tar.gz
.
File metadata
- Download URL: pocli-0.1.12.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 867326003a5c61e50857bff65c2bd94ebb14b62563755f31b90b16242cecd4b7 |
|
MD5 | be87a97cd611e4c5d1f2a2ab0f026c93 |
|
BLAKE2b-256 | dd33c86174f35d88c1031b3878df9790a4653a8dc8fe0512dcf39803afaa59a6 |