windows setup

This commit is contained in:
Raphael Deem
2017-03-11 19:09:01 -08:00
parent 23a1174aa2
commit 01a770cbca
2 changed files with 47 additions and 30 deletions

View File

@@ -1,6 +1,9 @@
from mimetypes import guess_type
from os import path
from ujson import dumps as json_dumps
try:
from ujson import dumps as json_dumps
except:
from json import dumps as json_dumps
from aiofiles import open as open_async