Python jsonschema.compat.urlsplit() Examples

The following are 7 code examples of jsonschema.compat.urlsplit(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module jsonschema.compat , or try the search function .
Example #1
Source File: _utils.py    From misp42splunk with GNU Lesser General Public License v3.0 5 votes vote down vote up
def normalize(self, uri):
        return urlsplit(uri).geturl() 
Example #2
Source File: _utils.py    From misp42splunk with GNU Lesser General Public License v3.0 5 votes vote down vote up
def normalize(self, uri):
        return urlsplit(uri).geturl() 
Example #3
Source File: test_validation.py    From mappyfile with MIT License 5 votes vote down vote up
def test_ref_path():
    from jsonschema.compat import urlsplit
    url = "file:////home/user/mappyfile/mappyfile/schemas/"
    scheme, netloc, path, query, fragment = urlsplit(url)
    print(scheme, netloc, path, query, fragment)
    assert(scheme == "file")

    url = "file:///D:/GitHub/mappyfile/mappyfile/schemas/"

    scheme, netloc, path, query, fragment = urlsplit(url)
    print(scheme, netloc, path, query, fragment)
    assert(scheme == "file") 
Example #4
Source File: _utils.py    From deepWordBug with Apache License 2.0 5 votes vote down vote up
def normalize(self, uri):
        return urlsplit(uri).geturl() 
Example #5
Source File: _utils.py    From accelerated-data-lake with Apache License 2.0 5 votes vote down vote up
def normalize(self, uri):
        return urlsplit(uri).geturl() 
Example #6
Source File: _utils.py    From Requester with MIT License 5 votes vote down vote up
def normalize(self, uri):
        return urlsplit(uri).geturl() 
Example #7
Source File: _utils.py    From SA-ctf_scoreboard with Creative Commons Zero v1.0 Universal 5 votes vote down vote up
def normalize(self, uri):
        return urlsplit(uri).geturl()