1
0

__init__.py 816 B

1234567891011121314151617181920212223242526272829303132333435
  1. """
  2. uritemplate
  3. ===========
  4. URI templates implemented as close to :rfc:`6570` as possible
  5. See http://uritemplate.rtfd.org/ for documentation
  6. :copyright:
  7. (c) 2013 Ian Stapleton Cordasco
  8. :license:
  9. Modified BSD Apache License (Version 2.0), see LICENSE for more details
  10. and either LICENSE.BSD or LICENSE.APACHE for the details of those specific
  11. licenses
  12. """
  13. __title__ = "uritemplate"
  14. __author__ = "Ian Stapleton Cordasco"
  15. __license__ = "Modified BSD or Apache License, Version 2.0"
  16. __copyright__ = "Copyright 2013 Ian Stapleton Cordasco"
  17. __version__ = "4.1.1"
  18. __version_info__ = tuple(
  19. int(i) for i in __version__.split(".") if i.isdigit()
  20. )
  21. from uritemplate.api import (
  22. URITemplate,
  23. expand,
  24. partial,
  25. variables,
  26. )
  27. __all__ = ("URITemplate", "expand", "partial", "variables")