4
Téléchargement

J'essaie d'utiliser AjaxUpload avec Python: http://valums.com/ajax-upload/image Python avec AjaxUpload

Je voudrais savoir comment accéder au fichier téléchargé avec Python. Sur le site Web, il est dit:

* PHP: $_FILES['userfile'] 
* Rails: params[:userfile] 

Quelle est la syntaxe de Python?

request.params ['userfile'] ne semble pas fonctionner.

Merci d'avance! Voici mon code actuel (à l'aide de PIL importés comme image)

im = Image.open(request.params['myFile'].file) 

Répondre

0

dans django, vous pouvez utiliser:

request.FILES['file'] 

au lieu de:

request.POST['file'] 

je ne savais pas comment faire dans les pylônes ... peut-être que c'est le même concept ..

1
import cgi 

#This will give you the data of the file, 
# but won't give you the filename, unfortunately. 
# For that you have to do some other trick. 
file_data = cgi.FieldStorage.getfirst('file') 

#<IGNORE if you're not using mod_python> 

#(If you're using mod_python you can also get the Request object 
# by passing 'req' to the relevant function in 'index.py', like "def func(req):" 
# Then you access it with req.form.getfirst('file') instead. NOTE that the 
# first method will work even when using mod_python, but the first FieldStorage 
# object called is the only one with relevant data, so if you pass 'req' to the 
# function you have to use the method that uses 'req'.) 

#</IGNORE> 

#Then you can write it to a file like so... 
file = open('example_filename.wtvr','w')#'w' is for 'write' 
file.write(file_data) 
file.close() 

#Then access it like so... 
file = open('example_filename.wtvr','r')#'r' is for 'read' 

#And use file.read() or whatever else to do what you want. 
1

Je travaille avec Pyramid et j'essayais de faire la même chose. Après quelque temps je suis venu avec cette solution. Je ne suis pas sûr si c'est le «bon», mais il semble fonctionner.