https://github.com/zonca/scidrive-python-client
Python command-line client for VOBox
https://github.com/zonca/scidrive-python-client
Last synced: 10 months ago
JSON representation
Python command-line client for VOBox
- Host: GitHub
- URL: https://github.com/zonca/scidrive-python-client
- Owner: zonca
- Created: 2013-10-11T17:19:34.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-10-11T17:29:02.000Z (about 12 years ago)
- Last Synced: 2025-01-13T09:23:43.534Z (12 months ago)
- Language: Python
- Size: 115 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
Awesome Lists containing this project
README
SciDrive Python Client
==================
A Python module that provides the tools you need to authenticate with, and use the SciDrive's Dropbox API.
Getting started
---------------
To set up the SciDrive module and install dependencies:
1. Run the setup script:
$ pip install -e git://github.com/dimm0/scidrive-python-client.git#egg=scidrive-python-client
(will make link to sources)
or
$ pip install http://github.com/dimm0/scidrive-python-client/tarball/master
(will extract the project into site-packages)
or
$ git clone git://github.com/dimm0/scidrive-python-client.git
$ cd scidrive-python-client
$ pip install -e .
(to have a local checked out project folder)
2. Start by querying the user info:
$ sdrv info
This will create a `~/.scidrive/scidrive_config.cfg` config file and request the user to authorize in VO SSO either
using the browser or by opening the URL. When the authorization is done, the user account info will be displayed.
3. To query the current folder contents (/vosync by default), run:
$ sdrv ls /
There is more information on configuring the script in [Wiki](https://github.com/dimm0/scidrive-python-client/wiki)