• 待处理的电影天堂


    # coding=utf-8

    import requests
    from lxml import etree
    a='https://www.dytt8.net'
    headers={
    'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.80 Safari/537.36',
    'Referer':'https://www.dytt8.net/html/gndy/dyzz/list_23_3.html'
    }


    def get_detail_urls(url):
    response=requests.get(url,headers=headers)
    text=response.text
    html=etree.HTML(text)
    detail_urls=html.xpath("//table[@class='tbspan']//a/@href")
    detail_urls = map(print(lambda url:a+url,detail_urls))
    return detail_urls()

    def spider(url):
    base_url="https://www.dytt8.net/html/gndy/dyzz/list_23_().html"
    for x in format(1,8):
    url=base_url.format(x)
    detail_urls=get_detail_urls(url)
    for detail_url in detail_urls:
    movie=parse_detail_page(detail_url)

    def parse_detail_page(url):
    movie={}
    response = requests.get(url, headers=headers)
    text = response.text
    html = etree.HTML(text)
    title=html.xpath("//div[@class='title all'//font[@color='#07519a']/text()")[0]
    movie['title']=title
    print(title)

    zoomE=html.xpath("//div[@id='zoom']")[0]
    imgs=zoomE.xpath("//img[@src]")[0]
    covers=imgs[0]
    screenshot=imgs[1]
    movie['covers']=covers
    movie['screenshot']=screenshot
    infos=zoomE.xpath(".//text()")
    print(infos)
    for info in infos:



  • 相关阅读:
    创建用户自定义函数 SQL
    sql with as 用法
    将string转为同名类名,方法名。(c#反射)
    linq 实现对象映射
    sql 游标
    C#编程总结(六)异步编程
    线程加锁解锁,用于循环条件不确定大小
    滚动条随代码滚动
    C# 代码小技巧
    reload方法
  • 原文地址:https://www.cnblogs.com/lumc5/p/11216500.html
Copyright © 2020-2023  润新知