Changed json to simplejson

This commit is contained in:
David Maitland 2015-08-13 14:15:46 +01:00
parent 5da26b1fac
commit 2c84cff892
3 changed files with 6 additions and 4 deletions

View File

@ -8,10 +8,11 @@
import sys import sys
import math import math
import requests import requests
import json
import time import time
import logging import logging
import simplejson as json
from stream import Stream from stream import Stream
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)

View File

@ -7,10 +7,11 @@
import multiprocessing import multiprocessing
import requests import requests
import json
import time import time
import logging import logging
import simplejson as json
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)

View File

@ -11,13 +11,13 @@ from setuptools import setup
setup( setup(
name='nimvelo', name='nimvelo',
description='Python 2.7 client library for the Nimvelo/Sipcentric API', description='Python 2.7 client library for the Nimvelo/Sipcentric API',
version='0.1.3', version='0.1.4',
url='https://github.com/Nimvelo/python-client', url='https://github.com/Nimvelo/python-client',
author='David Maitland', author='David Maitland',
author_email='david.maitland@nimvelo.com', author_email='david.maitland@nimvelo.com',
license='MIT', license='MIT',
keywords='nimvelo sipcentric voip pbx sms sip', keywords='nimvelo sipcentric voip pbx sms sip',
packages=['nimvelo', 'nimvelo/stream'], packages=['nimvelo', 'nimvelo/stream'],
requires=['math', 'json', 'logging', 'time'], requires=['math', 'json', 'logging', 'time', 'simplejson'],
install_requires=['requests'] install_requires=['requests']
) )