我是靠谱客的博主 直率柚子,最近开发中收集的这篇文章主要介绍python下载电影_使用python下载VIP电影,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#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电影所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部