Skip to content

Commit

Permalink
remove simplejson dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelliao committed Oct 16, 2013
1 parent 73f2ea8 commit e41e4fc
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions weibo.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,19 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

__version__ = '1.1.3'
__version__ = '1.1.4'
__author__ = 'Liao Xuefeng ([email protected])'

'''
Python client SDK for sina weibo API using OAuth 2.
'''

try:
import json
except ImportError:
import simplejson as json

try:
from cStringIO import StringIO
except ImportError:
from StringIO import StringIO

import gzip, time, hmac, base64, hashlib, urllib, urllib2, logging, mimetypes, collections
import gzip, time, json, hmac, base64, hashlib, urllib, urllib2, logging, mimetypes, collections

class APIError(StandardError):
'''
Expand Down

0 comments on commit e41e4fc

Please sign in to comment.