1 Star 0 Fork 0

bluedream_pp/pythonFirstInHead

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
downurl.py 893 Bytes
一键复制 编辑 原始数据 按行查看 历史
# -*- coding: utf-8 -*-
import urllib2
import re
def getdownload(url):
url = 'http://www.ygdy8.net/html/gndy/dyzz/20171112/55496.html' # 这是电影天堂最新电影的网站
conent = urllib2.urlopen(url)
conent = conent.read()
conent = conent.decode('gb2312', 'ignore').encode('utf-8', 'ignore')
pattern = re.compile('<a href="ftp://(.*?)">', re.S)
# print conent
items = re.findall(pattern, conent)
return items[0]
con = '◎片 名 釜山行/尸速列车(台)/尸杀列车(港)中国 ◎又 名 Train to Busan/Busanhaeng ◎年 代 2016 ◎国 家 韩国 ◎类 型 动作/惊悚/灾难 ◎语 言 韩语 ◎字 幕 中文 ◎IMDb评分 7.6/10 from 27,891 users ◎文件格式 x264 + AAC ◎视频尺寸 1280 x 720 ◎文件大??CD ◎片'
make_where = ['中国','法国','美国']
if True in map(lambda x: x in con, make_where):
print '下载'
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/bluedream_pp/pythonFirstInHead.git
git@gitee.com:bluedream_pp/pythonFirstInHead.git
bluedream_pp
pythonFirstInHead
pythonFirstInHead
master

搜索帮助