Sample code for 30+ languages & platforms
Chilkat2-Python

Parse a URL into its Component Parts

See more HTTP Examples

Demonstrates how to parse a URL into it's component parts.

Chilkat Chilkat2-Python Downloads

Chilkat2-Python
import chilkat2

success = False

url = chilkat2.Url()

urlStr = "https://www.amazon.com/Anarchy-State-Utopia-Robert-Nozick/dp/0465051006/ref=sr_1_1?s=books&ie=UTF8&qid=1430344305&sr=1-1&keywords=nozick#frag123"

success = url.ParseUrl(urlStr)
# Assume success..

print("URL: " + urlStr)
print("Host: " + url.Host)
print("Port: " + str(url.Port))
print("HostType: " + url.HostType)
print("Ssl: " + str(url.Ssl))
print("Path: " + url.Path)
print("Query: " + url.Query)
print("Frag: " + url.Frag)
print("----")

urlStr = "http://matt:secret@www.chilkatsoft.com:8080/somepath.asp?test=123&size=2"

success = url.ParseUrl(urlStr)
# Assume success..

print("URL: " + urlStr)
print("Host: " + url.Host)
print("Port: " + str(url.Port))
print("HostType: " + url.HostType)
print("Ssl: " + str(url.Ssl))
print("Login: " + url.Login)
print("Password: " + url.Password)
print("Path: " + url.Path)
print("Query: " + url.Query)
print("Frag: " + url.Frag)