Changed json to simplejson
This commit is contained in:
parent
5da26b1fac
commit
2c84cff892
@ -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__)
|
||||||
|
@ -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__)
|
||||||
|
|
||||||
|
|
||||||
|
4
setup.py
4
setup.py
@ -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']
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user