I'm using the pyimgur
module to upload to imgur. It works fine with local files but is there a way to upload to imgur using a image URL(jpg,png). I looked around but couldn't find a solid answer. Current code I'm using is this(for local images),
import pyimgur
CLIENT_ID = "<id>"
im = pyimgur.Imgur(CLIENT_ID)
image = '<local-image>'
uploaded_image = im.upload_image(image, title='title')
Thank you