Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/rfc3986/__init__.py: 100%
16 statements
« prev ^ index » next coverage.py v7.2.2, created at 2023-03-26 06:12 +0000
« prev ^ index » next coverage.py v7.2.2, created at 2023-03-26 06:12 +0000
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.
16"""
17An implementation of semantics and validations described in RFC 3986.
19See http://rfc3986.readthedocs.io/ for detailed documentation.
21:copyright: (c) 2014 Rackspace
22:license: Apache v2.0, see LICENSE for details
23"""
25from .api import iri_reference
26from .api import IRIReference
27from .api import is_valid_uri
28from .api import normalize_uri
29from .api import uri_reference
30from .api import URIReference
31from .api import urlparse
32from .parseresult import ParseResult
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"
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)