ライセンスはPublic Domainです。何かの機会にこのブログかこの記事を紹介頂ければ幸いです。 # -*- coding: utf-8 -*- import re import urllib import urllib2 import cookielib import time import datetime import random import simplejson as json # Djangoの場合は # from django.utils import simplejson as json import os #JSON修正 def _fixjson(_jsonstr): _jsonstr = _jsonstr.replace("\"null\"", "null") _jsonstr = _jsonstr.replace("\"false\"", "false") _j