Upload to imgur using API(v3). Support CLI, KDE,Zenity(GTK) and Mac dialog upload. And you can also use your account to upload :).
Project description
Upload to imgur using API(v3). Support CLI, KDE, Zenity(GTK) and Mac dialog upload.
Feature
Installation
python setup.py install
or
sudo pip install imgurup
Usage
img [-h] [-f [<image path> [<image path> ...]]] [-d [<album id>]] [-g] [-n] [-q]
Optional arguments:
-h, --help show this help message and exit -f [<image path> [<image path> ...]] The images you want to upload -d [<album id>] The album id you want your image to be uploaded to -g GUI mode -n Anonymous upload -s Add command in the context menu of file manager(Support Gnome and KDE) -q Choose album with each file -t Use image name as the title
Packcage Dependency
None
Todo
None
Customize example
from imgurup import Imgur class MyImgur(Imgur): def get_error_dialog_args(self, msg='Error'): args = [ 'zenity', '--error', '--text={text}'.format(text=msg), ] return args def get_auth_msg_dialog_args(self, auth_msg, auth_url): args = [ 'zenity', '--entry', '--text={msg}'.format(msg=auth_msg), '--entry-text={link}'.format(link=auth_url), ] return args def get_enter_pin_dialog_args(self, token_msg): args = [ 'zenity', '--entry', '--text={msg}'.format(msg=token_msg), ] return args def get_ask_image_path_dialog_args(self): args = [ 'zenity', '--file-selection', ] return args def get_ask_album_id_dialog_args(self, albums, no_album_msg): i = 1 arg = [ 'zenity', '--list', '--text="Choose the album"', '--column=No.', '--column=Album name', '--column=Privacy', ] for album in albums: arg.append(str(i)) arg.append('{album[title]}'.format(album=album)) arg.append('{album[privacy]}'.format(album=album)) i += 1 arg.append(str(i)) arg.append(no_album_msg) arg.append('public') def get_show_link_dialog_args(self, links): args = [ 'zenity', '--info', '--text={links}'.format(links=links), ] return args
License
(The MIT License)
Copyright (C) 2013 黃健瑋(Chien-Wei Huang)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
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.