[230] | 1 | # -*- coding: utf-8 -*-
|
---|
| 2 | # Copyright (c) 2014 Rackspace
|
---|
| 3 | # Licensed under the Apache License, Version 2.0 (the "License");
|
---|
| 4 | # you may not use this file except in compliance with the License.
|
---|
| 5 | # You may obtain a copy of the License at
|
---|
| 6 | #
|
---|
| 7 | # http://www.apache.org/licenses/LICENSE-2.0
|
---|
| 8 | #
|
---|
| 9 | # Unless required by applicable law or agreed to in writing, software
|
---|
| 10 | # distributed under the License is distributed on an "AS IS" BASIS,
|
---|
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
---|
| 12 | # implied.
|
---|
| 13 | # See the License for the specific language governing permissions and
|
---|
| 14 | # limitations under the License.
|
---|
| 15 |
|
---|
| 16 | """
|
---|
| 17 | An implementation of semantics and validations described in RFC 3986.
|
---|
| 18 |
|
---|
| 19 | See http://rfc3986.readthedocs.io/ for detailed documentation.
|
---|
| 20 |
|
---|
| 21 | :copyright: (c) 2014 Rackspace
|
---|
| 22 | :license: Apache v2.0, see LICENSE for details
|
---|
| 23 | """
|
---|
| 24 |
|
---|
| 25 | from .api import iri_reference
|
---|
| 26 | from .api import IRIReference
|
---|
| 27 | from .api import is_valid_uri
|
---|
| 28 | from .api import normalize_uri
|
---|
| 29 | from .api import uri_reference
|
---|
| 30 | from .api import URIReference
|
---|
| 31 | from .api import urlparse
|
---|
| 32 | from .parseresult import ParseResult
|
---|
| 33 |
|
---|
| 34 | __title__ = "rfc3986"
|
---|
| 35 | __author__ = "Ian Stapleton Cordasco"
|
---|
| 36 | __author_email__ = "graffatcolmingov@gmail.com"
|
---|
| 37 | __license__ = "Apache v2.0"
|
---|
| 38 | __copyright__ = "Copyright 2014 Rackspace; 2016 Ian Stapleton Cordasco"
|
---|
| 39 | __version__ = "1.5.0"
|
---|
| 40 |
|
---|
| 41 | __all__ = (
|
---|
| 42 | "ParseResult",
|
---|
| 43 | "URIReference",
|
---|
| 44 | "IRIReference",
|
---|
| 45 | "is_valid_uri",
|
---|
| 46 | "normalize_uri",
|
---|
| 47 | "uri_reference",
|
---|
| 48 | "iri_reference",
|
---|
| 49 | "urlparse",
|
---|
| 50 | "__title__",
|
---|
| 51 | "__author__",
|
---|
| 52 | "__author_email__",
|
---|
| 53 | "__license__",
|
---|
| 54 | "__copyright__",
|
---|
| 55 | "__version__",
|
---|
| 56 | )
|
---|