aboutsummaryrefslogtreecommitdiffstats
path: root/github3/packages/omnijson/__init__.py
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.com>2011-07-24 18:13:35 -0400
committerKenneth Reitz <me@kennethreitz.com>2011-07-24 18:13:35 -0400
commit31eb8e2e51ae4c3bb0efe92122d1a618cedced31 (patch)
tree718a731626f5f271d8d7d8068ec053891416ba93 /github3/packages/omnijson/__init__.py
parentno reason to be not-authed (diff)
downloadpython-github3-31eb8e2e51ae4c3bb0efe92122d1a618cedced31.tar.xz
python-github3-31eb8e2e51ae4c3bb0efe92122d1a618cedced31.zip
omnijson
Diffstat (limited to 'github3/packages/omnijson/__init__.py')
-rw-r--r--github3/packages/omnijson/__init__.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/github3/packages/omnijson/__init__.py b/github3/packages/omnijson/__init__.py
new file mode 100644
index 0000000..c10c328
--- /dev/null
+++ b/github3/packages/omnijson/__init__.py
@@ -0,0 +1,13 @@
+# -*- 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'