Created
October 4, 2016 13:46
-
-
Save developer-sdk/408968277ea231a85233e3ecd22ca3b2 to your computer and use it in GitHub Desktop.
simplejson 을 이용한 json 가져오기 예제
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| import urllib, simplejson | |
| request_url = 'http://date.jsontest.com' | |
| simplejson.load(urllib.urlopen(request_url)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment