added support for ujson to see if that can improve loading performance

This commit is contained in:
ajurna@gmail.com
2016-05-04 09:17:54 +01:00
parent 5b2c1ca801
commit 5043a756fb

View File

@@ -1,3 +1,6 @@
try:
import ujson as json
except ImportError:
import json import json
import uuid import uuid
from os import path from os import path