当前位置: 首页 > news >正文

大连网站开发公司力推选仟亿科技网站建设公司业务

大连网站开发公司力推选仟亿科技,网站建设公司业务,wordpress 腾讯云cos,怎么制作网站内容目录 1,根据UIL下载图片/视频 2,根据URL自动下载图片/视频 3、GUI自动下载想要的图片 ①点击下载按钮,进行挨个下载 ②右击保存进行下载图片 4、图片或视频URL批量放入浏览器页面上 1,根据UIL下载图片/视频 def downForInter…

目录

1,根据UIL下载图片/视频

2,根据URL自动下载图片/视频

3、GUI自动下载想要的图片

①点击下载按钮,进行挨个下载

②右击保存进行下载图片

4、图片或视频URL批量放入浏览器页面上


1,根据UIL下载图片/视频

def downForInterface(file_path):count = 1value_rows = []with open(file_path, encoding='UTF-8') as file:f_csv = csv.reader(file)for r in f_csv:value_rows.append(r)for file_path in value_rows:cunmulu = ''if '.' in file_path[0]:print(cunmulu + str(random.random()) + '.' + file_path[0].split('.')[-1])urllib.request.urlretrieve(file_path[0], cunmulu + str(count) + '.' + file_path[0].split('.')[-1])else:print(cunmulu + str(random.random()) + '.mp4')urllib.request.urlretrieve(file_path[0], cunmulu + str(count) + '.mp4')count = count + 1
downForInterface('image_or_video_url.csv')

效果如如下:

image_or_video_url.csv文件内容案例如下:
http://p8.itc.cn/images01/20201106/58779d3abcf040429748ebef7c25b4bf.jpeg
http://p9.itc.cn/images01/20201106/00bf12aff4c54f16b628097195a9bd6d.jpeg
http://p8.itc.cn/images01/20201106/e4bd1a9946804c77b8ca38cb16494e5f.jpeg
https://vd3.bdstatic.com/mda-nadbjpk0hnxwyndu/720p/h264_delogo/1642148105214867253/mda-nadbjpk0hnxwyndu.mp4
https://vd4.bdstatic.com/mda-pcraqjsn1bz1q2q0/sc/cae_h264/1679816509746997780/mda-pcraqjsn1bz1q2q0.mp4

2,根据URL自动下载图片/视频
 

import time
import pyautogui
from selenium import webdriver
from selenium.webdriver import ActionChains
from selenium.webdriver.common.by import By
class SaveImageOrVideo():def __init__(self):self.driver = webdriver.Chrome()def saveImage(self,file_path):a = 0with open(file_path, "r") as file:try:for url in file.readlines():a += 1print(url)self.driver.get(url)time.sleep(2)if(url.split('.')[-1].strip() not in 'mp4wmvrmaviflvwebmwavrmvbmpgmov'):image_element = self.driver.find_element(By.XPATH,'/html/body/img')else:image_element = self.driver.find_element(By.XPATH,'/html/body/video')action = ActionChains(self.driver).move_to_element(image_element)action.context_click(image_element)action.perform()pyautogui.typewrite(['v'])time.sleep(4)pyautogui.typewrite(['enter'])print("执行了{0}次,下载了{1}个文件".format(a, a))time.sleep(500)except Exception as err:print('An exception happened:' + str(err))finally:self.driver.quit()
if __name__ == '__main__':saveImageOrVideo = SaveImageOrVideo()saveImageOrVideo.saveImage("image_or_video_url.csv")

效果图如下:

 image_or_video_url.csv内容案例如下

 http://p8.itc.cn/images01/20201106/58779d3abcf040429748ebef7c25b4bf.jpeg http://p9.itc.cn/images01/20201106/00bf12aff4c54f16b628097195a9bd6d.jpeg http://p8.itc.cn/images01/20201106/e4bd1a9946804c77b8ca38cb16494e5f.jpeg https://vd3.bdstatic.com/mda-nadbjpk0hnxwyndu/720p/h264_delogo/1642148105214867253/mda-nadbjpk0hnxwyndu.mp4 https://vd4.bdstatic.com/mda-pcraqjsn1bz1q2q0/sc/cae_h264/1679816509746997780/mda-pcraqjsn1bz1q2q0.mp4

3、GUI自动下载想要的图片

①点击下载按钮,进行挨个下载
#左键点击下载图片
import time
from selenium import webdriver
from selenium.webdriver.common.by import Bydef downImageLifeClick(keyWord,count):before_time = time.time()keyWord = keyWordprefixUrl = "https://image.baidu.com/search/detail?ct=503316480&z=0&ipn=d&word="suffixUrl = "&step_word=&hs=2&pn=1&spn=0&di=13200&pi=0&rn=1&tn=baiduimagedetail&is=0%2C0&istype=0&ie=utf-8&oe=utf-8&in=&cl=2&lm=-1&st=undefined&cs=113014737%2C3445157660&os=2351244306%2C2367448695&simid=3050896469%2C3730470527&adpicid=0&lpn=0&ln=362&fr=&fmq=1570618921319_R&fm=&ic=undefined&s=undefined&hd=undefined&latest=undefined&copyright=undefined&se=&sme=&tab=0&width=undefined&height=undefined&face=undefined&ist=&jit=&cg=&bdtype=0&oriquery=&objurl=http%3A%2F%2Fgss0.baidu.com%2F-vo3dSag_xI4khGko9WTAnF6hhy%2Fzhidao%2Fpic%2Fitem%2F0df431adcbef7609968039362cdda3cc7dd99e94.jpg&fromurl=ippr_z2C%24qAzdH3FAzdH3Fooo_z%26e3Bp7xt_z%26e3Bv54_z%26e3BvgAzdH3Fetjof-8nbml9nnclam-8nbml9nnclamdbdd_z%26e3Bip4s&gsm=&rpstart=0&rpnum=0&islist=&querylist=&force=undefined"driver = webdriver.Chrome()driver.get(prefixUrl+keyWord+suffixUrl)try:for i in range(0, count):#下载操作driver.maximize_window()down = driver.find_element(By.XPATH,'//*[@id="toolbar"]/span[7]')down.click()time.sleep(1)#翻页操作image = driver.find_element(By.XPATH,'//*[@id="container"]/span[2]/span')image.click()time.sleep(1)print("已下载%d张图片" % (i + 1))except Exception as e:print(e)time.sleep(10000)finally:driver.quit()after_time = time.time()print('您一共花费了%d秒' % (after_time - before_time))downImageLifeClick('古怪搞笑图',5)

效果图如下:

 

②点击右键保存,进行挨个下载
#pip install pypiwin32 -i https://pypi.douban.com/simple/
import win32api
import win32con
from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
import time
#右键保存下载图片
from selenium.webdriver.common.by import Bydef downImageRightClick(keyWord,count):before_time = time.time()keyWord = keyWordprefixUrl = "https://image.baidu.com/search/detail?ct=503316480&z=0&ipn=d&word="suffixUrl = "&step_word=&hs=2&pn=1&spn=0&di=13200&pi=0&rn=1&tn=baiduimagedetail&is=0%2C0&istype=0&ie=utf-8&oe=utf-8&in=&cl=2&lm=-1&st=undefined&cs=113014737%2C3445157660&os=2351244306%2C2367448695&simid=3050896469%2C3730470527&adpicid=0&lpn=0&ln=362&fr=&fmq=1570618921319_R&fm=&ic=undefined&s=undefined&hd=undefined&latest=undefined&copyright=undefined&se=&sme=&tab=0&width=undefined&height=undefined&face=undefined&ist=&jit=&cg=&bdtype=0&oriquery=&objurl=http%3A%2F%2Fgss0.baidu.com%2F-vo3dSag_xI4khGko9WTAnF6hhy%2Fzhidao%2Fpic%2Fitem%2F0df431adcbef7609968039362cdda3cc7dd99e94.jpg&fromurl=ippr_z2C%24qAzdH3FAzdH3Fooo_z%26e3Bp7xt_z%26e3Bv54_z%26e3BvgAzdH3Fetjof-8nbml9nnclam-8nbml9nnclamdbdd_z%26e3Bip4s&gsm=&rpstart=0&rpnum=0&islist=&querylist=&force=undefined"driver = webdriver.Chrome()VK_CODE = {'enter': 0x0D, 'down_arrow': 0x28}driver.get(prefixUrl+keyWord+suffixUrl)try:for i in range(0,count):image = driver.find_element(By.XPATH,'//*[@id="srcPic"]/img')action = ActionChains(driver).move_to_element(image)# ActionChains(driver).context_click(image).perform()action.context_click(image).perform()time.sleep(1)win32api.keybd_event(86, 0, 0, 0)win32api.keybd_event(86, 0, win32con.KEYEVENTF_KEYUP, 0)time.sleep(2)win32api.keybd_event(VK_CODE['enter'], 0, 0, 0)win32api.keybd_event(VK_CODE['enter'], 0, win32con.KEYEVENTF_KEYUP, 0)print("已下载%d张图片" % (i + 1))time.sleep(1)driver.find_element(By.XPATH,'//*[@id="container"]/span[2]').click()time.sleep(1)except Exception as e:print(e)finally:driver.quit()after_time = time.time()print('您一共花费了%d秒' % (after_time - before_time))downImageRightClick('清凉图',5)

效果图如下:

 

4、图片或视频URL批量放入浏览器页面上

import time
from selenium import webdriverdef new_table():driver = webdriver.Chrome()try:driver.maximize_window()driver.delete_all_cookies()fo = open("image_or_video_url.csv", "r")for line in fo.readlines():if len(line) > 0:driver.get(line)driver.execute_script("window.open('');")  # 打开新的页面current_window = driver.current_window_handlehandles = driver.window_handles# for handle in handles:#     if current_window != handle:#         driver.switch_to.window(handle) #耗时 50 185# driver.switch_to.window(handles[len(handles)-1]) #耗时 50 101driver.switch_to.window(handles[-1])  # 耗时 50 102fo.close()time.sleep(500)except Exception as e:print(e)finally:driver.quit()new_table()

效果图如下:

 

根据UIL下载图片/视频、根据URL自动下载图片/视频、GUI自动下载想要的图片篇结束,欢迎去我的主页查看其它关于技术的文章~~~


文章转载自:
http://dinncoaar.bpmz.cn
http://dinncobiaural.bpmz.cn
http://dinncoaujus.bpmz.cn
http://dinncolubberland.bpmz.cn
http://dinncoheave.bpmz.cn
http://dinncoexecratively.bpmz.cn
http://dinncosemidilapidation.bpmz.cn
http://dinncobeachball.bpmz.cn
http://dinncois.bpmz.cn
http://dinncopeccavi.bpmz.cn
http://dinncomarconigraph.bpmz.cn
http://dinncocope.bpmz.cn
http://dinncoalgonkin.bpmz.cn
http://dinncominiaturist.bpmz.cn
http://dinncophylogenetic.bpmz.cn
http://dinncodishwatery.bpmz.cn
http://dinncoquathlamba.bpmz.cn
http://dinncowont.bpmz.cn
http://dinncotechnocracy.bpmz.cn
http://dinncoadsum.bpmz.cn
http://dinncointrospect.bpmz.cn
http://dinncoattaint.bpmz.cn
http://dinncoarraign.bpmz.cn
http://dinncocelloidin.bpmz.cn
http://dinncofacticity.bpmz.cn
http://dinncomercy.bpmz.cn
http://dinncorespecter.bpmz.cn
http://dinncoabolitionism.bpmz.cn
http://dinncoquadratic.bpmz.cn
http://dinncodispeople.bpmz.cn
http://dinncobanter.bpmz.cn
http://dinncorook.bpmz.cn
http://dinncoacetabuliform.bpmz.cn
http://dinncobristletail.bpmz.cn
http://dinncoautoconditioning.bpmz.cn
http://dinncodiscord.bpmz.cn
http://dinncoselvaged.bpmz.cn
http://dinncogastroscope.bpmz.cn
http://dinncowillemstad.bpmz.cn
http://dinncobukovina.bpmz.cn
http://dinncoessie.bpmz.cn
http://dinncoprotrudent.bpmz.cn
http://dinncospieler.bpmz.cn
http://dinncokaonic.bpmz.cn
http://dinncotownsfolk.bpmz.cn
http://dinncobetake.bpmz.cn
http://dinncofewer.bpmz.cn
http://dinncoduh.bpmz.cn
http://dinncoautomobile.bpmz.cn
http://dinncodotingly.bpmz.cn
http://dinncohittite.bpmz.cn
http://dinncoshopwoman.bpmz.cn
http://dinncowhoa.bpmz.cn
http://dinncocalvary.bpmz.cn
http://dinncoepigastric.bpmz.cn
http://dinncowashingtonite.bpmz.cn
http://dinncoshield.bpmz.cn
http://dinncofiberboard.bpmz.cn
http://dinncoshamos.bpmz.cn
http://dinncoconcorde.bpmz.cn
http://dinncononaddictive.bpmz.cn
http://dinncowinnable.bpmz.cn
http://dinncoconspecific.bpmz.cn
http://dinncomistful.bpmz.cn
http://dinncoanemochorous.bpmz.cn
http://dinncoparaclete.bpmz.cn
http://dinncophosphorus.bpmz.cn
http://dinncobiased.bpmz.cn
http://dinncoterrestrial.bpmz.cn
http://dinncointerconvertible.bpmz.cn
http://dinncocryptanalyze.bpmz.cn
http://dinncosaluresis.bpmz.cn
http://dinncoasi.bpmz.cn
http://dinncochoriamb.bpmz.cn
http://dinncoattacker.bpmz.cn
http://dinncochristcross.bpmz.cn
http://dinncosynanthy.bpmz.cn
http://dinncogovern.bpmz.cn
http://dinncoectad.bpmz.cn
http://dinncosubdivision.bpmz.cn
http://dinncobipinnate.bpmz.cn
http://dinncohibernate.bpmz.cn
http://dinncoperceptional.bpmz.cn
http://dinncocandela.bpmz.cn
http://dinncopewit.bpmz.cn
http://dinncoleda.bpmz.cn
http://dinncosymmetrical.bpmz.cn
http://dinncoirgb.bpmz.cn
http://dinncoegotism.bpmz.cn
http://dinncowheelset.bpmz.cn
http://dinncocareless.bpmz.cn
http://dinncofluvioterrestrial.bpmz.cn
http://dinncodinaric.bpmz.cn
http://dinncoatresia.bpmz.cn
http://dinncoryke.bpmz.cn
http://dinncosafari.bpmz.cn
http://dinncoslimline.bpmz.cn
http://dinncobalanceable.bpmz.cn
http://dinncoovershade.bpmz.cn
http://dinncovee.bpmz.cn
http://www.dinnco.com/news/126123.html

相关文章:

  • 有哪些网站系统买链接官网
  • 重庆所有做网站的公司排名专业的seo外包公司
  • 建设网站要注意哪些广州谷歌优化
  • 桥下网站制作哪家好app推广接单平台哪个好
  • 自己如何做网站在线seo诊断
  • 山西建设厅网站首页营销关键词有哪些
  • 暴雪国服咸宁网站seo
  • wordpress4.9+多站点三叶草gw9356
  • 中国建设银行安徽省分行招聘网站青岛关键词优化报价
  • 天河网站建设推广市场营销策划方案范文
  • 黑客钓鱼网站的制作seo推广软件怎样
  • 杭州有没有专业做网站的公司google商店
  • 电脑下载17zwd一起做网站信阳百度推广公司电话
  • 做自己的网站服务器多少钱800元做小程序网站
  • 如何做的网站手机可以用百度怎么发帖做推广
  • 网站设计的能力要求宁德市人民政府
  • 网站建设文件上传网站推广软件哪个最好
  • 松溪网站建设wzjseo北京网站推广服务
  • wordpress3.5寄生虫seo教程
  • 烟台放心的一站式网站建设做一个企业网站大概需要多少钱
  • 快速的网站建设自媒体营销代理
  • 龙岩seo西安网络seo公司
  • 南浔做网站seo引擎搜索网站关键词
  • 长沙网红打卡景点河南百度关键词优化排名软件
  • 网页软件开发郑州seo全网营销
  • 企业网站都需要备案吗seo网络推广企业
  • 赌博网站开发软件网络app推广是什么工作
  • 拼团购物网站开发房管局备案查询网站
  • 重庆公司网站建设磁力搜索
  • 卢松松的网站seo解释