mirror of
https://github.com/kennethreitz/python-github3.git
synced 2026-06-05 23:10:17 +00:00
14 lines
224 B
Python
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'
|