Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
ó
ȍEYc@sZdZddlmZddlmZdd„Zdd„Zdd„Zdd„Zd	S(
s¢
Module containing the simple and functional API for rfc3986.

This module defines functions and provides access to the public attributes
and classes of rfc3986.
i(tParseResult(tURIReferencesutf-8cCstj||ƒS(sbParse a URI string into a URIReference.

    This is a convenience function. You could achieve the same end by using
    ``URIReference.from_string(uri)``.

    :param str uri: The URI which needs to be parsed into a reference.
    :param str encoding: The encoding of the string provided
    :returns: A parsed URI
    :rtype: :class:`URIReference`
    (Rtfrom_string(turitencoding((s@/home/tvault/.virtenv/lib/python2.7/site-packages/rfc3986/api.pyt
uri_referencescKstj||ƒj|S(sãDetermine if the URI given is valid.

    This is a convenience function. You could use either
    ``uri_reference(uri).is_valid()`` or
    ``URIReference.from_string(uri).is_valid()`` to achieve the same result.

    :param str uri: The URI to be validated.
    :param str encoding: The encoding of the string provided
    :param bool require_scheme: Set to ``True`` if you wish to require the
        presence of the scheme component.
    :param bool require_authority: Set to ``True`` if you wish to require the
        presence of the authority component.
    :param bool require_path: Set to ``True`` if you wish to require the
        presence of the path component.
    :param bool require_query: Set to ``True`` if you wish to require the
        presence of the query component.
    :param bool require_fragment: Set to ``True`` if you wish to require the
        presence of the fragment component.
    :returns: ``True`` if the URI is valid, ``False`` otherwise.
    :rtype: bool
    (RRtis_valid(RRtkwargs((s@/home/tvault/.virtenv/lib/python2.7/site-packages/rfc3986/api.pytis_valid_uri(scCs"tj||ƒjƒ}|jƒS(snNormalize the given URI.

    This is a convenience function. You could use either
    ``uri_reference(uri).normalize().unsplit()`` or
    ``URIReference.from_string(uri).normalize().unsplit()`` instead.

    :param str uri: The URI to be normalized.
    :param str encoding: The encoding of the string provided
    :returns: The normalized URI.
    :rtype: str
    (RRt	normalizetunsplit(RRtnormalized_reference((s@/home/tvault/.virtenv/lib/python2.7/site-packages/rfc3986/api.pyt
normalize_uriAscCstj||dtƒS(s:Parse a given URI and return a ParseResult.

    This is a partial replacement of the standard library's urlparse function.

    :param str uri: The URI to be parsed.
    :param str encoding: The encoding of the string provided.
    :returns: A parsed URI
    :rtype: :class:`~rfc3986.parseresult.ParseResult`
    tstrict(RRtFalse(RR((s@/home/tvault/.virtenv/lib/python2.7/site-packages/rfc3986/api.pyturlparseQs
N(	t__doc__tparseresultRRRRRRR(((s@/home/tvault/.virtenv/lib/python2.7/site-packages/rfc3986/api.pyt<module>s