简体   繁体   中英

Send file using POST from a Python script to a PHP Script

import urllib,MultipartPostHandler,urllib2,cookielib
cookies = cookielib.CookieJar()
opener =     urllib2.build_opener(urllib2.HTTPCookieProcessor(cookies),MultipartPostHandler.MultipartPostHandler)
urllib2.install_opener(opener)
login = urllib.urlencode(dict(admin_user='admin',admin_pass='****'))
o=opener.open('http://some_domain_name/admin/index.php',login)
print o.read()
### successfully logged-into the system ###################

With the help of above code I am able to log into admin panel. Here I am supposed to post some ads (Here I am automating the tasks and the fields covering ad-title, ad-desc, and mainly importantly series of images (list of images would be a better term I guess ;))

HTML Code snippet:

<form action="postad.php?cityid=15&subcatid=1" method="post" name="frmPost" enctype="multipart/form-data" 

 <!-- Some other code -->


<td><input name="showemail" type="radio" value="1" >&nbsp;</td>
<table class="postad" cellspacing="0" cellpadding="0" border="0" width="100%">

<tr>
    <td><b>Upload Pictures:</b><br>
    <span class="hint">Maximum filesize: 300KB</span><br>
                <input type="file" name="pic[]" size="69"><br>
        <img src="images/spacer.gif" height="2"><br>
                <input type="file" name="pic[]" size="69"><br>
        <img src="images/spacer.gif" height="2"><br>
                <input type="file" name="pic[]" size="69"><br>
        <img src="images/spacer.gif" height="2"><br>
                <input type="file" name="pic[]" size="69"><br>
        <img src="images/spacer.gif" height="2"><br>
                <input type="file" name="pic[]" size="69"><br>
        <img src="images/spacer.gif" height="2"><br>
            </td>
</tr>

</table>


<!-- some other code -->
<input name="do" type="hidden" id="do" value="post">
<button type="submit">Post Now</button>

So tackle this I am using this code, but Every time I am failing to attach images. Would you guys help me in this regard.

raw_params={"adtitle":"sample title",
        "area":"sample area",
        "addesc":"<p>sample post</p>",
        "price":"2000",
        "x[1]":"2012",
        "email":"abc@def.com",
        "showemail":"2",
        "subcatid":"15",
    "do":"post",
        }

encoded_params=urllib.urlencode(raw_params)
target_page = 'http://some_domain_name/admin/postad.php?cityid=15&subcatid=15'
opener.open(target_page,encoded_params)

I forget to tell you one thing this is the log I got from LIVEHTTPHeader (mozilla-plugin)

Content-Disposition: form-data; name="adtitle"

sample title
-----------------------------20165274802361271281051822614
Content-Disposition: form-data; name="area"

sample location
-----------------------------20165274802361271281051822614
Content-Disposition: form-data; name="addesc"

<p>sample post</p>
-----------------------------20165274802361271281051822614
Content-Disposition: form-data; name="price"

200
-----------------------------20165274802361271281051822614
Content-Disposition: form-data; name="x[1]"

2012
-----------------------------20165274802361271281051822614
Content-Disposition: form-data; name="email"

abc@def.com
-----------------------------20165274802361271281051822614
Content-Disposition: form-data; name="showemail"

2
-----------------------------20165274802361271281051822614
Content-Disposition: form-data; name="pic[]"; filename="3_d_flower.jpg"
Content-Type: image/jpeg

ÿØÿà

And please through some light on this: filename="3_d_flower.jpg

I'd definitely recommend the requests library for this. It makes multi-part POSTs much simpler . It also handles cookies much more simply.

The login code would look like this in requests:

import requests
o = requests.get('http://some_domain_name/admin/index.php', 
                 data={admin_user: 'admin',
                       admin_pass: '****'})
print o.text
print o.cookies
import urllib,MultipartPostHandler,urllib2,cookielib

cookies = cookielib.CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cookies),MultipartPostHandler.MultipartPostHandler)
urllib2.install_opener(opener)
login = urllib.urlencode(dict(admin_user='admin',admin_pass='****'))
o=opener.open('http://some_domain_name.com/admin/index.php',login)
print o.read()
### logged-into the system ###################
### Now post the things ####################
raw_params={"adtitle":"sample title",
        "area":"sample area",
        "addesc":"<p>sample post</p>",
        "price":"2000",
        "x[1]":"2012",
        "email":"abc@def.com",
        "showemail":"2",
    "pic[0]":open("indian_eye.jpg", "rb"),
    "pic[1]":open("nature.jpg", "rb"),
        "subcatid":"1",
    "do":"post",
        }




url="http://some_domain_name.com/admin/postad.php?cityid=15&subcatid=1"
opener.open(url, raw_params)

------------------------------------------------

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM