资源简介


资源截图

代码片段和文件信息

import requests
import os
import re
import urllib
import sys
from bs4 import BeautifulSoup
from lxml import etree

domain=‘https://m.tt27.tv‘
url=‘https://m.tt27.tv/dianshiju/oumei/xiaoxiaoannidierji/‘

path = []

# 获取所有的电视剧集
def getAllEpisodes(url):
    content = urllib.request.urlopen(url).read().decode(‘gb2312‘)
    html = etree.HTML(content)
    html_data = html.xpath(‘/html/body/section/div[2]/div/ul/ul/li[*]/a‘)
    #print(html)
    for i in html_data:
        # i.text + “:“ + 
        print(i.text + “:“ + i.xpath(“@href“)[0])
        getOneEpisodes(i.xpath(“@href“)[0])
        break
        
# 获取某一集
def getOneEpisodes(url):
    content = urllib.request.urlopen(domain + url).read().decode(‘gb2

评论

共有 条评论