どうもこんにちわ。
現役学生のrirocanです
時間と今日の天気を表示させてみたw
time.py
# -*- coding: utf-8 -*-
import datetime#基本的な日付型および時間型
import multiprocessing#API を使ってプロセスを生成することができる。
import urllib2, sys#URL を開くための拡張可能なライブラリ。
import json
try: citycode = sys.argv[1]
except: citycode = '090010' #デフォルト地域
todaydetail = datetime.datetime.today()# 今日の日付
resp = urllib2.urlopen('http://weather.livedoor.com/forecast/webservice/json/v1?city=%s'%citycode).read()#今日の天気
resp = json.loads(resp)
print '----------------------------------------------------------------------------------------'
print todaydetail# 今日の日付
print '----------------------------------------------------------------------------------------'
print resp['title']#今日の天気
print resp['description']['text']
print '----------------------------------------------------------------------------------------'