当前位置:  开发笔记 > 编程语言 > 正文

python制作最美应用的爬虫

这篇文章主要介绍了python制作最美应用的爬虫的相关资料,需要的朋友可以参考下

安卓最美应用页面爬虫,爬虫很简单,设计的东西到挺多的
文件操作
正则表达式
字符串替换等等

import requests
import re
url = "http://zuimeia.com"
r = requests.get('http://zuimeia.com/community/app/hot/?platform=2')
pattern = re.compile(r'')
urlList = pattern.findall(r.content)

def requestsUrl(url):
 r = requests.get(url)
 title = re.findall(r'"app-title">

(.*?)

',r.content) #print title category = re.findall(r'
(.*?)',r.content) #print category describe = re.findall(r'
(.*?)
地之南_816
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有