PyImgur
PyImgur copied to clipboard
The simple way of using Imgur.
Great stuff you made :) I want to upload images (one at a time) to the same album without having to enter the PIN every time. Is this achievable? (it...
Awesome module. I've been trying to build an easy way to move all my imgur favorites between different photo sharing sites. I know the API call https://api.imgur.com/3/account/%s/gallery_favorites defaults to just...
Change this code [this code](https://github.com/Damgaard/PyImgur/blob/master/pyimgur/request.py#L94-L101]) to raise an exception instead of printing to stdout ``` py if not resp.ok: try: error_msg = "Imgur ERROR message: {}".format(content['error']) print(error_msg) print("-" * len(error_msg))...
Added [Random Gallery Images](http://api.imgur.com/endpoints/gallery#gallery-random) API
Hi! First off I want to thank you @Damgaard for creating an amazingly easy-to-use Python package for the Imgur API. I am writing this issue today suggesting you reconsider relicensing...
Using Python 2.7.5 on Arch Linux 3.11.6. Commit: fee5db091707ccc85cc56baf53f9f1360cf991be When authenticating using the PIN method: ``` Traceback (most recent call last): File "./uploader.py", line 84, in t = UploadThread() File...
Can a feature be added for pyimgur to read from stdin when path is a dash "-"? would be useful for something like: qrencode -t PNG "https://somesite.xyz" -o - |...
Working on a project that involves uploading mp4 files to imgur, attempting to do it using this causes some kind of very long error. Is there a way to use...
I am trying to use this API for commercial usage, so I followed the steps in the readme.md: https://github.com/Damgaard/PyImgur#mashape-api I then get this error: HTTPSConnectionPool(host='imgur-apiv3.p.mashape.com', port=443): Max retries exceeded with...
When i used im.upload_image(path, title="Image"), and show this error File "/opt/render/project/src/app.py", line 261, in handle_message uploaded_image = im.upload_image(path, title="Image") ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/opt/render/project/src/.venv/lib/python3.11/site-packages/pyimgur/__init__.py", line 1150, in upload_image resp = self._send_request(self._base_url +...