python test0729.py

来源:互联网 发布:mac迅雷会员不能加速 编辑:程序博客网 时间:2024/05/15 09:09










#!/usr/env  python#-*- coding: utf-8  -*-import urllib import urllib2 import random import requestsimport os,sys import MySQLdbfrom BeautifulSoup import BeautifulSoupfrom sgmllib import SGMLParser import redef main():t="https://play.google.com/store/apps/category/PERSONALIZATION"html=requests.get(t)result=html.contentprint type(result)soup=BeautifulSoup(result)temp=soup.prettify("utf-8")pattern=re.compile('<a class="title" href="(.+?)" title')dataresult=re.findall(pattern,temp)print dataresultprint len(dataresult)print type(temp)f=file("hello.txt","w+")f.writelines(temp)f.close()if  __name__=="__main__":       main()