Home > other >  To climb in taobao shop image, hope comment!!!!!!
To climb in taobao shop image, hope comment!!!!!!

Time:04-17

Learned in crawl taobao commodity items made up of a piece of code, PyCharm Community Edition tip:
1, we knew the name 'uapools' from the outer scope, I only know about the problem in uapools and def ua (uapools), have read the interpretation of the same problem from the Internet, but not always, who can tell me how to make the change, adjust?
2, this code is not successful climb take pictures, solving, personal analysis to because no successful invocation parameters ua (uapools) so there is no into the secondary circulation, do not know whether it is right,
The code is as follows:
The import urllib. Request
The import re
Import the random

Keyname="dress"
Key=urllib. Request. Quote (keyname)
Uapools=[" Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 "
"(KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36",
"Mozilla/5.0 (Windows NT 6.1; Win64. X64) AppleWebKit/537.36 (KHTML, like Gecko)
""Chrome/86.0.4240.111 Safari/537.36",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Maxthon 2.0), "
]

Def ua (uapools) :
Thisua=the random choice (uapools)
Print (thisua)
Headers=(" the user-agent, "thisua)
Opener=urllib. Request. Build_opener ()
Opener. Addheaders=[headers]
For the installation of the global #
Urllib. Request. Install_opener (opener)


For I in range (1, 1) :
Url="https://s.taobao.com/search? Q="+ key +" & amp; S="+ STR (I - 1) * (44)
Ua (uapools)
The date=urllib. Request. Urlopen (url). The read (). The decode (" utf-8 ", "ignore")
Pat='" pic_url ":"//(. *?) "'
Imglist=re.com running (pat). The.findall (date)
For j in range (0, len (imglist) :
Thisimg=imglist [j]
Thisimgurl="http://" + thisimg
Localfile="D: \ \ Program Files \ \ (x86) PyCharm Community Edition 2020.3.4 \ \ date \ \ page \ " \
Taobao \ \ "" + STR (I) + STR (j) +". JPG "
Urllib. Request. Urlretrieve (thisimgurl, filename=localfile)



CodePudding user response:

I have to def ua (uapools) :
Thisua=the random choice (uapools) uapools instead of pools, solve the problem of naming conflicts.
  • Related