Re: Uploading images to imageshack.us with Python

2005-08-22 Thread Yoav
I would love a script to upload images to Imageshack.us. Any chance you can post the latest version or email it to me? Thanks. Ricardo Sanchez wrote: > I forgot to add that I'm behind a proxy, but I think that is > irrelevant. > > If you are not behind a proxy replace this line: > > print post

Re: Uploading images to imageshack.us with Python

2005-08-22 Thread Ricardo Sanchez
Ok, I solved it with the unvaluable help of a nice guy in the #python channel. It is a studid as it gets, replaced files = [('fileupload', 'b.jpg', open('b.jpg').read())] by files = [('fileupload', 'b.jpg', open('b.jpg', 'rb').read())] because binary files are not opened correctly in Windows X

Re: Uploading images to imageshack.us with Python

2005-08-21 Thread Ricardo Sanchez
I forgot to add that I'm behind a proxy, but I think that is irrelevant. If you are not behind a proxy replace this line: print post_multipart('proxy-a.mains.nitech.ac.jp', 8080, 'http://imageshack.us/index.php', params, files) with print post_multipart('imageshack.us', 80, '/index.php', params

Uploading images to imageshack.us with Python

2005-08-21 Thread Ricardo Sanchez
Hello, I'm trying to upload images to http://imageshac.us via a Python script. I have looked at the POST request with HTTPLiveHeaders Firefox extension when I upload an image, but I can't figure what's wrong. (if I disable the cookies in the browser, it still works, so it's not that). When I tr