概述
#coding=utf-8
import urllib
import urllib2
import re
#url='https://www.mgtv.com/b/316354/4256331.html'#下载的电影视频
#http://4.wjsou.com/#API接口
url=raw_input(unicode("请输入电影地址:","utf-8").encode("gbk"))
def down_movie(url):
api = "https://000o.cc/2018/api.php"
headers = {"Content-Type":"application/x-www-form-urlencoded; charset=UTF-8"}
post={
"referer":"http://000o.cc/jx/ty.php?url="+url,
"time":"1528635404",
"key":"8553f0e81b786829b6869b82fcf27bd4",
"url":url
}
data = urllib.urlencode(post)
request = urllib2.Request(api, data=data, headers = headers)
response = urllib2.urlopen(request)
html=response.read()
#print(html)
pattern = re.compile(r&#
最后
以上就是直率柚子为你收集整理的python下载电影_使用python下载VIP电影的全部内容,希望文章能够帮你解决python下载电影_使用python下载VIP电影所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复