• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Python 给我一个链接西瓜视频随便下载爬虫

    1.实现原理

     

    2.程序代码

    程序代码如下:

    import re
    from selenium import webdriver
    
    
    # url="https://www.ixigua.com/6982149651281478152?logTag=cc6bf98fd0f8fe35fe0e"
    url=input("输入视频链接:")
    group_id=re.findall('https://www.ixigua.com/(.*)\&;logTag=.*',url)
    url='https://www.ixigua.com/embed?group_id='+group_id[0]
    
    # 进入浏览器设置
    options = webdriver.ChromeOptions()
    # 设置中文
    options.add_argument('lang=zh_CN.UTF-8')
    # 更换头部
    options.add_argument('user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36"')
    
    driver=webdriver.Chrome(options=options)
    driver.get(url=url)
    driver.implicitly_wait(5)
    infos=driver.find_elements_by_xpath("//xg-definition/ul/li")
    for info in infos[:-1]:
        print(info.get_attribute("definition"))
        print('http:'+info.get_attribute("url"))
    
    

     

    3.运行结果


    Python爬虫下载西瓜视频

    到此这篇关于Python 给我一个链接 西瓜视频随便下载 爬虫的文章就介绍到这了,更多相关Python爬虫视频内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    您可能感兴趣的文章:
    • python 网页解析器掌握第三方 lxml 扩展库与 xpath 的使用方法
    • python网络爬虫精解之pyquery的使用说明
    • python爬虫之Appium爬取手机App数据及模拟用户手势
    • python网络爬虫精解之XPath的使用说明
    上一篇:基于python + django + whoosh + jieba 分词器实现站内检索功能
    下一篇:python爬虫学习笔记--BeautifulSoup4库的使用详解
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    Python 给我一个链接西瓜视频随便下载爬虫 Python,给我,一个,链接,西瓜,