Added delete option to database storage.
This commit is contained in:
parent
308604a33c
commit
963b5bc68b
1868 changed files with 192402 additions and 13278 deletions
26
venv/Lib/site-packages/uritemplate/__init__.py
Normal file
26
venv/Lib/site-packages/uritemplate/__init__.py
Normal file
|
@ -0,0 +1,26 @@
|
|||
"""
|
||||
|
||||
uritemplate
|
||||
===========
|
||||
|
||||
The URI templating library for humans.
|
||||
|
||||
See http://uritemplate.rtfd.org/ for documentation
|
||||
|
||||
:copyright: (c) 2013-2015 Ian Cordasco
|
||||
:license: Modified BSD, see LICENSE for more details
|
||||
|
||||
"""
|
||||
|
||||
__title__ = 'uritemplate'
|
||||
__author__ = 'Ian Cordasco'
|
||||
__license__ = 'Modified BSD or Apache License, Version 2.0'
|
||||
__copyright__ = 'Copyright 2013 Ian Cordasco'
|
||||
__version__ = '3.0.1'
|
||||
__version_info__ = tuple(int(i) for i in __version__.split('.') if i.isdigit())
|
||||
|
||||
from uritemplate.api import (
|
||||
URITemplate, expand, partial, variables # noqa: E402
|
||||
)
|
||||
|
||||
__all__ = ('URITemplate', 'expand', 'partial', 'variables')
|
Loading…
Add table
Add a link
Reference in a new issue