ruling / dev-host-cl

http://d-h.st (Dev-Host) command line tool

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dev-host-cl

dev-host-cl is a python script that allows you to upload and manage files to http://d-h.st (Dev-Host) from a shell. It can be used anonymously or with your account's credentials.

Download

You can download and place the script in ~/bin to use it directly. For example:

     $ git clone git://github.com/GermainZ/dev-host-cl.git dev-host-cl
     $ cp dev-host-cl/devhost.py ~/bin/devhost
     $ chmod +x ~/bin/devhost

Usage

  • Syntax: devhost [-h] [-u USERNAME] [-p PASSWORD] ACTION ...
  • If only a username is specified, the password will be prompted for without having it display on screen.
  • Actions:
    • upload - Upload file (anonymously if no credentials are specified)
    • For the actions below, you must be the owner of the file and use your credentials to login, unless otherwise noted:
      • file-get-info - Get file info (public files need no authentication)
      • file-set-info - Set file info
      • file-delete - Delete file
      • file-move - Move file
      • folder-get-info - Return folder info (public folders need no authentication)
      • folder-set-info - Set folder info
      • folder-delete - Delete folder
      • folder-move - Move folder
      • folder-create - Create new folder
      • folder-content - Return folder content (public folders need no authentication)
    • For more help about an action: devhost ACTION -h
  • Example (to upload a file Anonymously): devhost upload file.txt

Dependencies

Installing python-requests

If you have root, Use pip, easy_install or your package manager to install requests

pip install requests
easy_install requests
apt-get install python-requests
pacman -S python-requests

If you do not have root, then install requests locally

curl -L https://github.com/kennethreitz/requests/tarball/master | tar xz
cd kennethreitz-requests*
python setup.py install --user
cd ..
rm -rf master kennethreitz-requests*

Notes

  • It's not possible to have streaming uploads with the requests module and d-h. This means the whole file is loaded into your memory before being uploaded. I might look into other modules if I have the time, but it's not a priority at the moment.

About

http://d-h.st (Dev-Host) command line tool

License:GNU General Public License v3.0