python爬虫:爬取百度云盘



在网上看到的教程,但是我嫌弃那个教程写的乱(虽然最后显示我也没高明多少,哈哈),就随手写了一个

主要是嫌弃盘搜那些恶心的广告,这样直接下载下来,眼睛清爽多了。

用pyinstall 打包成EXE文件,就可以安安静静的下载东西了。。。。

 

#!/usr/bin/python
# -*- encoding:utf-8 -*-

import requests
from bs4 import BeautifulSoup import sys reload(sys) sys.setdefaultencoding('utf-8') def yunpan_search(key): url='http://www.wangpansou.cn/s.php?q='+key html=requests.get(url) soup=BeautifulSoup(html.text,"lxml") url_get=soup.find_all('a',{'class':'cse-search-result_content_item_top_a'}) info_get=soup.find_all('div',{'class':'cse-search-result_content_item_mid'}) f = open('baidu_source.txt','w') for i in range(len(url_get)): href=url_get[i]['href'] title=''  for c in url_get[i].children: title+=c.string.strip() information=''  for info in info_get[i].children: information+=info.string.strip().replace('\n','') print str(i+1)+'_'*60  print '下载地址--'+href+'\n'+'链接标题--'+title+'\n'+'链接详情--'+information+'\n\n'  f.write(str(i+1)+'. _____________________________________________________________________\n') f.write('下载地址--'+href+'\n'+'链接标题--'+title+'\n'+'链接详情--'+information+'\n\n') f.close() if __name__=='__main__': key=raw_input('please input what you want to look for:') yunpan_search(key) print('finish')
  • 4
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值