Python解析网页源代码中的115网盘链接实例


Posted in Python onSeptember 30, 2014

本文实例讲述了python解析网页源代码中的115网盘链接的方法。分享给大家供大家参考。具体方法分析如下:

其中的1.txt,是网页http://bbs.pediy.com/showthread.php?t=144788另存为1.txt

具体代码如下:

import re 
   
if __name__ == "__main__": 
  fp = open("c:\\1.txt") 
   
  https = re.compile(r"(http://u.*)") 
  for url in https.findall(fp.read()): 
    print url

输出结果:

http://u.115.com/file/f61cb107c8 
http://u.115.com/file/f6806f45b8 
http://u.115.com/file/f6ec42d4d3 
http://u.115.com/file/f6deb05ec4 
http://u.115.com/file/f6e51f6838 
http://u.115.com/file/f66edaf8d3  
http://u.115.com/file/f6d07e07b9 
http://u.115.com/file/f6d7f585a8 
http://u.115.com/file/f639d8b3cf 
http://u.115.com/file/f6dcadbde6 
http://u.115.com/file/f6ea3f01c1 
http://u.115.com/file/f65b96a06f  
http://u.115.com/file/f682da085a  
http://u.115.com/file/f6486e698 
http://u.115.com/file/f6b7491d9f 
http://u.115.com/file/f622b7f9a7 
http://u.115.com/file/f64e2424b9 
http://u.115.com/file/f6e5132d4d  
http://u.115.com/file/f655c10e86  
http://u.115.com/file/f6b22e64e6 
http://u.115.com/file/f6812126a4  
http://u.115.com/file/f6523e625c 
http://u.115.com/file/f63e0ccb28 
http://u.115.com/file/f611e07b8a# 
http://u.115.com/file/f6e047bccc#  
http://u.115.com/file/f6d348d781# 
http://u.115.com/file/f6ada24153# 
http://u.115.com/file/f64f97518b#  
http://u.115.com/file/f6f9ba96f8# 
http://u.115.com/file/f650e06f38# 
http://u.115.com/file/f683ee5b2a# 
http://u.115.com/file/f69009bfc2# 
http://u.115.com/file/f6ea427646# 
http://u.115.com/file/f6acdc6b7f# 
http://u.115.com/file/f6c85745d0# 
http://u.115.com/file/f61a26cf12# 
http://u.115.com/file/f631edf5c6#  
http://u.115.com/file/f6b0fa6fb8# 
http://u.115.com/file/f6f5fe8962# 
http://u.115.com/file/f6bf975e0#  
http://u.115.com/file/f6d522784c#  
http://u.115.com/file/f6b5ac9991#  
http://u.115.com/file/f62e80ced5#  
http://u.115.com/file/f6bff09c0c#  
http://u.115.com/file/f663fc4a54# 
http://u.115.com/file/blpk4pv1 
http://u.115.com/file/c4rjotdz 
http://u.115.com/file/f6a960aca8# 
http://u.115.com/file/efnn38jr 
http://u.115.com/file/c4leomjd 
http://u.115.com/file/dlpw9s6i 
http://u.115.com/file/f6d3cbebe0# 
http://u.115.com/file/f6de8062b2# 
http://u.115.com/file/ef8og8la 
http://u.115.com/file/f6f6391ac6# 
http://u.115.com/file/f628d256ae# 
http://u.115.com/file/f66a049dc9# 
http://u.115.com/file/f62bf1750a# 
http://u.115.com/file/f642e47260# 
http://u.115.com/file/f693eb7c89# 
http://u.115.com/file/f6ed68ba9b# 
http://u.115.com/file/f6f099c3f9# 
http://u.115.com/file/f61ac19339# 
http://u.115.com/file/f6f3c78d2c# 
http://u.115.com/file/f6696f6348# 
http://u.115.com/file/f6e88eeefb# 
http://u.115.com/file/f66471e4eb# 
http://u.115.com/file/f672da54ae# 
http://u.115.com/file/dnasw0kp# 
http://u.115.com/file/dnagnndx# 
http://u.115.com/file/clwr2xxg# 
http://u.115.com/file/bhbcnnwe# 
http://u.115.com/file/aq2rp9ga# 
http://u.115.com/file/e601turs# 
http://u.115.com/file/dn46qs7x# 
http://u.115.com/file/clwonrwg# 
http://u.115.com/file/dn43i7jf# 
http://u.115.com/file/bhbgrnfz# 
http://u.115.com/file/dnsl0kxp#

希望本文所述对大家的Python程序设计有所帮助

Python 相关文章推荐
python实现类似ftp传输文件的网络程序示例
Apr 08 Python
Python爬取网页中的图片(搜狗图片)详解
Mar 23 Python
浅谈Python Opencv中gamma变换的使用详解
Apr 02 Python
Django使用Mysql数据库已经存在的数据表方法
May 27 Python
Python实现压缩文件夹与解压缩zip文件的方法
Sep 01 Python
Python实现微信自动好友验证,自动回复,发送群聊链接方法
Feb 21 Python
Python机器学习算法库scikit-learn学习之决策树实现方法详解
Jul 04 Python
python协程gevent案例 爬取斗鱼图片过程解析
Aug 27 Python
python实现简易淘宝购物
Nov 22 Python
Windows下Anaconda安装、换源与更新的方法
Apr 17 Python
python+selenium小米商城红米K40手机自动抢购的示例代码
Mar 24 Python
python b站视频下载的五种版本
May 27 Python
python网络编程之读取网站根目录实例
Sep 30 #Python
python中sets模块的用法实例
Sep 30 #Python
python根据路径导入模块的方法
Sep 30 #Python
python基于xml parse实现解析cdatasection数据
Sep 30 #Python
python中ConfigParse模块的用法
Sep 29 #Python
Python中logging模块的用法实例
Sep 29 #Python
Python基于twisted实现简单的web服务器
Sep 29 #Python
You might like
如何在PHP程序中防止盗链
2008/04/09 PHP
php统计文件大小,以GB、MB、KB、B输出
2011/05/29 PHP
PHPExcel读取EXCEL中的图片并保存到本地的方法
2015/02/14 PHP
php生成PDF格式文件并且加密
2015/06/22 PHP
Javascript中暂停功能的实现代码
2007/03/04 Javascript
jquery 选项卡效果 新手代码
2011/07/08 Javascript
jQuery EasyUI API 中文文档 - TreeGrid 树表格使用介绍
2011/11/21 Javascript
JavaScript中json使用自己总结
2013/08/13 Javascript
js无刷新操作table的行和列
2014/03/27 Javascript
jquery中$each()方法的使用指南
2015/04/30 Javascript
JavaScript实现网站访问次数统计代码
2015/08/12 Javascript
jQuery qrcode生成二维码的方法
2016/04/03 Javascript
浅谈jquery上下滑动的注意事项
2016/10/13 Javascript
Vuex模块化实现待办事项的状态管理
2017/03/15 Javascript
Js实现京东无延迟菜单效果实例(demo)
2017/06/02 Javascript
nodejs使用redis作为缓存介质实现的封装缓存类示例
2018/02/07 NodeJs
详解为生产环境编译Angular2应用的方法
2018/12/10 Javascript
React传值 组件传值 之间的关系详解
2019/08/26 Javascript
利用webpack理解CommonJS和ES Modules的差异区别
2020/06/16 Javascript
[01:32]完美世界DOTA2联赛10月29日精彩集锦
2020/10/30 DOTA
python中类的一些方法分析
2014/09/25 Python
Python 中 Virtualenv 和 pip 的简单用法详解
2017/08/18 Python
人机交互程序 python实现人机对话
2017/11/14 Python
详解Python中的Numpy、SciPy、MatPlotLib安装与配置
2017/11/17 Python
解决pycharm界面不能显示中文的问题
2018/05/23 Python
python中计算一个列表中连续相同的元素个数方法
2018/06/29 Python
Python Pywavelet 小波阈值实例
2019/01/09 Python
PyQt5固定窗口大小的方法
2019/06/18 Python
巧用CSS3 border实现图片遮罩效果代码
2012/04/09 HTML / CSS
电气工程及其自动化学生实习自我鉴定
2013/09/19 职场文书
英文自荐信
2013/12/15 职场文书
经贸专业毕业生求职信
2014/03/23 职场文书
2014大学生中国梦主题教育学习思想汇报
2014/09/10 职场文书
个人自我剖析材料
2014/09/30 职场文书
导游词之永济鹳雀楼
2020/01/16 职场文书
面试中canvas绘制图片模糊图片问题处理
2022/03/13 Javascript