mirror of
https://github.com/kennethreitz-archive/py-reqcache.git
synced 2026-06-05 15:20:16 +00:00
22 lines
420 B
Python
22 lines
420 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
reqcache
|
|
~~~~~~~~
|
|
|
|
:copyright: (c) 2012 by Firstname Lastname.
|
|
:license: ISC, see LICENSE for more details.
|
|
|
|
"""
|
|
|
|
__title__ = 'reqcache'
|
|
__version__ = '0.0.1'
|
|
__description__ = 'Python Requests Caching'
|
|
__url__ = 'https://github.com/kljensen/py-reqcache'
|
|
__build__ = 0
|
|
__author__ = 'Kyle Jensen'
|
|
__license__ = 'ISC'
|
|
__copyright__ = 'Copyright 2012 Kyle Jensen'
|
|
|
|
|
|
from .models import ReqCache
|