mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2023-08-10 21:12:57 +03:00
Add ujson support.
This commit is contained in:
parent
404f81fd43
commit
590b27ca8a
3
setup.py
3
setup.py
@ -17,6 +17,9 @@ setup(name='pyTelegramBotAPI',
|
|||||||
license='GPL2',
|
license='GPL2',
|
||||||
keywords='telegram bot api tools',
|
keywords='telegram bot api tools',
|
||||||
install_requires=['requests', 'six'],
|
install_requires=['requests', 'six'],
|
||||||
|
extras_require={
|
||||||
|
'json': 'ujson',
|
||||||
|
},
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 5 - Production/Stable',
|
'Development Status :: 5 - Production/Stable',
|
||||||
'Programming Language :: Python :: 2',
|
'Programming Language :: Python :: 2',
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
try:
|
||||||
|
import ujson as json
|
||||||
|
except ImportError:
|
||||||
import json
|
import json
|
||||||
|
|
||||||
import six
|
import six
|
||||||
|
|
||||||
from telebot import util
|
from telebot import util
|
||||||
|
Loading…
Reference in New Issue
Block a user