python 모듈 학습---json
import os,io,sys,re,time,base64,json
import webbrowser,urllib.request
def main():
url = "http://m.weather.com.cn/data/101010100.html"
stdout = urllib.request.urlopen(url)
weatherinfo = stdout.read().decode('utf-8')
jsonData = json.loads(weatherinfo)
szCity = jsonData["weatherinfo"]["city"]
print(" :",szCity)
szTemp = jsonData["weatherinfo"]["temp1"]
print(" :",szTemp)
szWeather1 = jsonData["weatherinfo"]["weather1"]
print(" :",szWeather1)
szCityid = jsonData["weatherinfo"]["cityid"]
print(" :",szCityid)
if __name__ == '__main__':
main()
python 2.x 에는 simplejson 모듈 이 있 고 python 3.x 에 서 는 json 입 니 다.
2.7 simplejson 설치 절차:
windows xp , 3 :
1。
http://pypi.python.org/pypi/simplejson/
2。
: :D:/simplejson
3。
Simplejson …
D:/simplejson>python setup.py install
OVER
”Python “ 。 path。
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
콘텐츠 SaaS | JSON 스키마 양식 빌더Bloomreach Content를 위한 JSON Form Builder 맞춤형 통합을 개발합니다. 최근 Bloomreach Content SaaS는 내장 앱 프레임워크를 사용하여 혁신적인 콘텐츠 유형 필드를 구축할...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.