在網上看到的教程,但是我嫌棄那個教程寫的亂(雖然最后顯示我也沒高明多少,哈哈),就隨手寫了一個
主要是嫌棄盤搜那些惡心的廣告,這樣直接下載下來,眼睛清爽多了。
用pyinstall 打包成EXE文件,就可以安安靜靜的下載東西了。。。。
#refer:http://upvup.com/html/python/2015-12-13/21.html
#!/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')