Python is very simple crawler problem

"""
parse  post

1:
2:girlletterrequest
3::http://fanyi.baidu.com/sug
4:formdata kw:girl
5:return  json==> need package json
"""


from urllib import parse,request
-sharpmanage json moudel

import json

"""
1:data urlopen
2:json style result
3:encode "girl"
"""
baseurl = "http://fanyi.baidu.com/sug"

-sharp form ==> dict style


data ={
    "ke":"girl"
}


-sharpenode

data =parse.urlencode(data).encode("utf-8")-sharptype -bytes
-sharp-sharpencode string in "utf-8"style== change style to bytes ,not change content


-sharprequest headed (include data_lenth)

headers={
    -sharp post need content-lenth
    "Content-Lengh":len(data)

}

-sharp we have request header ,try request
req=request.Request(url=baseurl,data=data,headers=headers)

rsp=request.urlopen(req)
json_data= rsp.read().decode("utf-8")

print(type(json_data))-sharpstr

-sharpchange style str to dict

json_data=json.loads(json_data)

print(type(json_data))-sharpdict
print(json_data)



import requests
import json

url = 'http://fanyi.baidu.com/sug'
data = {'kw':'girl'}
res = requests.post(url, data=data)
content = json.loads(res.content.decode())
print(content)

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3bb68-412f8.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3bb68-412f8.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?