Files
python-github3/github3/packages/omnijson/__init__.py
T
Kenneth Reitz 61667e3ebd omnijson
2011-06-21 23:26:21 -04:00

14 lines
224 B
Python

# -*- coding: utf-8 -*-
from __future__ import absolute_import
from .core import loads, dumps, JSONError
__all__ = ('loads', 'dumps', 'JSONError')
__version__ = '0.1.2'
__author__ = 'Kenneth Reitz'
__license__ = 'MIT'