Working with URLs in Python sucks. Until now.
Previously, the way to work with URLs was with urllib. This was always difficult to remember, and very verbose. For example, let's take a URL and change one of the query parameters:
from urllib.parse import urlparse, parse_qs, urlencode, urlunparse
url_string = "http://example.com?foo=bar&baz=qux"
# Parse the URL into components
parsed_url = urlparse(url_string)
# Parse the query string into a dictionary
query_params = parse_qs(parsed_url.query)
# Modify the specified query parameter
query_params[param] = [new_value]
# Reconstruct the query string
new_query = urlencode(query_params, doseq=True)
# Rebuild the URL with the updated query string
new_url = urlunparse((
parsed_url.scheme, # Scheme (e.g., http)
parsed_url.netloc, # Network location (e.g., example.com)
parsed_url.path, # Path (e.g., /)
parsed_url.params, # Parameters (if any)
new_query, # New query string
parsed_url.fragment # Fragment (if any)
))Now with urlkit:
from urlkit.http import HttpUrl
url_string = "http://example.com?foo=bar&baz=qux"
# Parse the URL
url = HttpUrl.parse(url_string)
# Set the parameter
url.query["foo"] = "Hello"
# Generate the new URL
new_url = str(url)The goal for urlkit is for everything to be simpler and easier.
The types in the table are intended to have eventual functionality. It shows which are currently supported.
| Type | Supported | Notes |
|---|---|---|
| HTTP | ✅ | More or less complete support following RFC 1738 as far as possible. |
| HTTPS | ✅ | More or less complete support following RFC 1738 as far as possible. |
| FTP | ❌ | |
| File | ❌ | |
| Mailto | ❌ | |
| Telnet | ❌ |
url = HttpUrl(scheme="http", host="example.com", port=12345, query={"search_text": "Hello World"})
str(url) # http://example.com:12345?search_text=Hello%20World
url = HttpUrl(scheme="http", host="example.com", query={"search_text": "Hello World"}, query_options=QueryOptions(space_encoding=SpaceEncoding.PLUS))
str(url) # http://example.com:12345?search_text=Hello+World
url = HttpUrl(scheme="http", host="example.com", query="some%20pre-encoded%20text")
str(url) # http://example.com?some%20pre-encoded%20text# Parsing a HTTP(s) URL:
http_url = HttpUrl.parse("http://username:password@example.com/search?description=Some%20Text")
http_url.path # /search
http_url.query # {"description": "Some Text"}
http_url.password # passwordurl = HttpUrl.parse("http://example.com/foo/bar") # http://example.com/foo/bar
url.path.append("baz") # http://example.com/foo/bar/baz
url.path.append("one/two") # http://example.com/foo/bar/baz/one/two
url.path.pop_last() # http://example.com/foo/bar/baz/one
url.path.pop_last() # http://example.com/foo/bar/baz
url.path.pop_last() # http://example.com/foo/bar
url.path.append(["baz", "one", "two"]) # http://example.com/foo/bar/baz/one/twoYou can use the / operator to build URLs in a clean, Pythonic way (similar to pathlib.Path):
# Basic usage
url = HttpUrl(scheme="https", host="api.example.com")
endpoint = url / "v1" / "users" / "123"
# Result: https://api.example.com/v1/users/123
# Chaining with query parameters
search_url = url / "v2" / "search"
search_url.query["q"] = "python"
search_url.query["limit"] = "10"
# Result: https://api.example.com/v2/search?q=python&limit=10
# Works with parsed URLs
base = HttpUrl.parse("https://github.com/myuser")
issues = base / "myrepo" / "issues"
# Result: https://github.com/myuser/myrepo/issues
# Original URL is not modified (immutable-like behavior)
api = HttpUrl(scheme="https", host="api.example.com", path="/api")
v1 = api / "v1"
v2 = api / "v2"
# api remains: https://api.example.com/api
# v1: https://api.example.com/api/v1
# v2: https://api.example.com/api/v2URLs are old. They have a lot of cruft, and it can make them difficult to work with. For example, many implementations, such as urllib, allow a query parameter to appear multiple times. So if you were to use the url http://example.com?param=1¶m=2 and then tried to get the result for param you would get a list back: ["1", "2"]. This can be nice. The downside though is that it means that every time you query for a parameter, even though they almost always appear just once, you get a list. i.e. https://example.com?param=1 returns ["1"].