一. 实现过程
1.1 查询外网IP
通过这个网址查询到外网IP http://ip.dnsexit.com/index.php
1.2 查询IP所在省份和城市
通过这个地址查询到IP所在省份和城市 http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json&ip=54.54.194.134
1.3 查询所在城市的天气URL
所在省份和城市, 查找到城市天气的URL
1.4 查询所在城市的天气情况.
通过这个网址查询天气的URL查询天气信息
http://m.weather.com.cn/data/101280101.html
(前面3个步骤都是为了这一步准备)
二. 实现技术
2.1 网页数据抓取与提取
所有网页数据通过Python抓取, 然后使用正则表达式或者BeautifulSoup或者json来解析.
2.2 城市天气URL的获取
利用这个网站上的信息http://www.weather.com.cn/
先获得城市的省份URL, 在通过省份信息获得该城市的URL
2.3 天气信息的获得
利用这个网站上的信息http://www.weather.com.cn/
使用json解析.
三. 实现
3.1 查询外网IP
这个简单
#!/usr/bin/env python
# coding=utf-8
# Python 2.7.3
# File: GetIP.py
# 获得外网IP地址
import urllib2
import httplib
def GetIP():
response = urllib2.urlopen('http://ip.dnsexit.com/index.php')
htmlStr = response.read()
return htmlStr
'''
# 测试代码
print GetIP()
'''
3.2 获得IP所在省份和城市
这个也很简单
#!/usr/bin/env python
# coding=utf-8
# Python 2.7.3
# File: GetCity.py
# 获取IP所在国家/省份/城市
import urllib2
import httplib
import json
'''
返回信息的结构
{"ret":1,"start":"54.52.163.0","end":"54.57.3.255","country":"美国","province":"新泽西州","city":"Woodbridge","district":"","isp":"联通","type":"","desc":""}
'''
def GetCity(ip, city):
response = urllib2.urlopen('http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json&ip=' + ip)
htmlStr = response.read()
cityInfo = htmlStr.decode("unicod