1 Star 0 Fork 1

cc/IPTV

forked from UndCover/IPTV 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
bupt_iptv.py 1.42 KB
一键复制 编辑 原始数据 按行查看 历史
UndCover 提交于 2020-07-07 16:42 . bupt
#coding=utf-8
#!/usr/bin/python
# 导入requests库
import requests
# 导入文件操作库
import os
import re
import bs4
from bs4 import BeautifulSoup
import sys
import time
import importlib
importlib.reload(sys)
# 给请求指定一个请求头来模拟chrome浏览器
global headers
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36'}
# proxy='username:password@124.243.226.18:8888'
global proxies
proxies = {
'http':'http://athena05:808',
'https':'https://athena05:808'
}
# 爬图地址
mziTu = 'http://ivi.bupt.edu.cn'
def lineParse(_url):
res_sub = requests.get(_url, headers=headers,proxies=proxies)
# res_sub.encoding = 'gb2312'
res_sub.encoding = 'utf-8'
# 解析html
soup_sub = BeautifulSoup(res_sub.text, 'html.parser')
all_div = soup_sub.find_all('div',class_='row')
m3u = '#EXTM3U\n'
for i in range(1,len(all_div)-1):
tDiv = all_div[i]
lineDiv = tDiv.find_all('div')
for subDiv in lineDiv:
tP = subDiv.find('p').get_text()
tLink = mziTu + subDiv.find_all('a')[1].get('href')
m3u = m3u + '#EXTINF:-1 ,' + tP + '\n'+tLink+'\n'
f = open('bupt.m3u', 'w', encoding='utf-8')
f.write(m3u)
f.close()
print('生成成功')
return soup_sub
if __name__ == '__main__':
lineParse(mziTu)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cjcv/iptv.git
git@gitee.com:cjcv/iptv.git
cjcv
iptv
IPTV
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385