Implements JsonReader (#2)

This commit is contained in:
Romain Dorgueil
2016-12-28 11:29:12 +01:00
parent f3757f38b7
commit 67e25b92e1
7 changed files with 52 additions and 16 deletions

View File

@ -23,7 +23,7 @@ import os
import sys
from .core import *
from .io import *
from .io import FileReader, FileWriter, JsonReader, JsonWriter
from .util import *
PY35 = (sys.version_info >= (3, 5))
@ -36,8 +36,10 @@ with open(os.path.realpath(os.path.join(os.path.dirname(__file__), '../version.t
__all__ = [
'Bag',
'FileReader',
'FileWriter',
'Graph',
'JsonReader',
'JsonWriter',
'NOT_MODIFIED',
'NaiveStrategy',