Skip to content

Instantly share code, notes, and snippets.

@developer-sdk
Created October 4, 2016 13:46
Show Gist options
  • Select an option

  • Save developer-sdk/408968277ea231a85233e3ecd22ca3b2 to your computer and use it in GitHub Desktop.

Select an option

Save developer-sdk/408968277ea231a85233e3ecd22ca3b2 to your computer and use it in GitHub Desktop.
simplejson 을 이용한 json 가져오기 예제
#!/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