vote up 3 vote down star
3

Hello everyone,

I'm currently trying to initiate a file upload with urllib2 and the urllib2_file library. Here's my code:

import sys
import urllib2_file
import urllib2

URL='http://aquate.us/upload.php'
d = [('uploaded', open(sys.argv[1:]))]
req = urllib2.Request(URL, d)
u = urllib2.urlopen(req)
print u.read()

I've placed this .py file in my My Documents directory and placed a shortcut to it in my Send To folder (the shortcut URL is ).

When I right click a file, choose Send To, and select Aquate (my python), it opens a command prompt for a split second and then closes it. Nothing gets uploaded.

I knew there was probably an error going on so I typed the code into CL python, line by line. When I ran the u=urllib2.urlopen(req) line, I didn't get an error; alt text

instead, the cursor simply started blinking on a new line beneath that line. I waited a couple of minutes to see if something would happen but it just stayed like that. To get it to stop, I had to press ctrl+break.

What's up with this script?

Thanks in advance!

[Edit] Forgot to mention -- when I ran the script without the request data (the file) it ran like a charm. Is it a problem with urllib2_file?

[edit 2]:

import MultipartPostHandler, urllib2, cookielib,sys
import win32clipboard as w
cookies = cookielib.CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cookies),MultipartPostHandler.MultipartPostHandler)
params = {"uploaded" : open("c:/cfoot.js") }
a=opener.open("http://www.aquate.us/upload.php", params)
text = a.read()
w.OpenClipboard()
w.EmptyClipboard()
w.SetClipboardText(text)
w.CloseClipboard()

That code works like a charm if you run it through the command line. Just thought I'd share that with everyone. However, I have another question.

I have this as a shortcut in my Send To folder: C:\Python25\pythonw.exe C:\Documents and Settings\\My Documents\aquate.pyw

Nothing happens when I run that though. I know a window isn't supposed to come up but my clipboard is never updated. Why is it not executing?

flag

75% accept rate

3 Answers

vote up 2 vote down

If you're using Python 2.5 or newer, urllib2_file is both unnecessary and unsupported, so check which version you're using (and perhaps upgrade).

If you're using Python 2.3 or 2.4 (the only versions supported by urllib2_file), try running the sample code and see if you have the same problem. If so, there is likely something wrong either with your Python or urllib2_file installation.

EDIT:

Also, you don't seem to be using either of urllib2_file's two supported formats for POST data. Try using one of the following two lines instead:

d = ['uploaded', open(sys.argv[1:])]
## --OR-- ##
d = {'uploaded': open(sys.argv[1:])}
link|flag
vote up 0 vote down

I've updated the first question. I've got it to work in command line but when I'm trying to use it in the Send To folder through a shortcut it just doesn't work.

No one has any ideas? :(

link|flag
Its not a problem with the spaces in the filename is it? Sometimes python gets confused with them – Andrew Cox Jan 3 at 19:38
Nope, there are no spaces in the filename. Like I mentioned, it works perfectly in the command line, so I'm not sure if the code is the problem here. – Salty Jan 4 at 1:43
If its not related to the code, maybe you get better answers by posting another question? Also, if you want to update your question, edit (button at top of page) the question rather than providing an answer for it. :) – mizipzor Jan 27 at 12:22
vote up -1 vote down

First, there's a third way to run Python programs.

From cmd.exe, type python myprogram.py. You get a nice log. You don't have to type stuff one line at a time.

Second, check the urrlib2 documentation. You'll need to look at urllib, also.

A Request requires a URL and a urlencoded encoded buffer of data.

data should be a buffer in the standard application/x-www-form-urlencoded format. The urllib.urlencode() function takes a mapping or sequence of 2-tuples and returns a string in this format.

You need to encode your data.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.