PyImgur icon indicating copy to clipboard operation
PyImgur copied to clipboard

The simple way of using Imgur.

Results 20 PyImgur issues
Sort by recently updated
recently updated
newest added

I've been using the following code to upload PNGs to imgur: `im = pyimgur.Imgur(CLIENT_ID)` `uploaded_image = im.upload_image(PATH, title=PLOTNAME)` But when going on my imgur account and going on my submitted...

Potentially I'm just being dumb, but I'm running into this weird situation where the PyImgur is able to upload 2 or so images and then it starts complaining that I...

Really makes no sense to have in here. Makes it impossible for me to catch rate limit/file size errors. Additionally breaks my curses screen and forces me to restart the...

In Imgur's documentation, you are able to specify the an integer that represents the number of the paginated gallery. PyImgur does not offer an argument for the page number, and...

I've packaged pyimgur for Anaconda, see https://github.com/conda-forge/pyimgur-feedstock and https://github.com/conda-forge/staged-recipes/pull/6818.

Python 3 should be added to `setup.py` specifiers and also in pypi metadata.

Whats the preferred way to run tests? I think tests should also be included in the source dist, btw, esp for packaging..

I'm getting the following error: ``` Imgur ERROR message: {'code': 429, 'message': 'You are uploading too fast. Please wait 37 more minutes.', 'type': 'ImgurException', 'exception': []} ---------------------------------------------------------------------------------------------------------------------------------------------------- ``` Is there...

Also changes this so that it's a dictionary instead, which is easier to handle (e.g. should the response header keys change on imgur API side) Currently setting the rate imits...

I added an option to "upload_image" to upload an image by passing the raw data of it. The new 'data' parameter is a string of the image's data. (I needed...