source: uri/src/rfc3986/__init__.py@ 230

Last change on this file since 230 was 230, checked in by wouter, 4 years ago

#91 clone https://pypi.org/project/rfc3986/

File size: 1.6 KB
Line 
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"""
17An implementation of semantics and validations described in RFC 3986.
18
19See http://rfc3986.readthedocs.io/ for detailed documentation.
20
21:copyright: (c) 2014 Rackspace
22:license: Apache v2.0, see LICENSE for details
23"""
24
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
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)
Note: See TracBrowser for help on using the repository browser.