2013年12月5日

根据淘宝ip数据库查询ip归属地信息

摘要: #!/usr/bin/env pythonimport urllib2import jsonimport osclass Ipsearch: def __init__(self,ip): print "init" self.ip = ip def check_ip(self): print "checking" tmp = self.ip.split('.') print tmp for i in tmp: if int(i) > 255: ... 阅读全文

posted @ 2013-12-05 21:37 lgy111 阅读(427) 评论(0) 推荐(0) 编辑

每天自动给自己发天气预报的脚本

摘要: 需求:每天早上起来可以看看天气预报,然后顺便当个闹钟使思路是这样的:模块一:采用yahoo weather api获取北京的天气模块二:通过网页版飞信,模拟飞信登陆,给自己发短信模块三:发送信息一。get_yahoo_weather.py#!/usr/bin/env python#coding=utf-8import urllib2from xml.etree import cElementTree as ETclass GetWeather: def __init__(self): self.weather = self.makexml() def makexml(... 阅读全文

posted @ 2013-12-05 11:12 lgy111 阅读(984) 评论(0) 推荐(0) 编辑

导航