Skip to content

Getting Started

Getting Started

Alpha Software!

This is pre-release Alpha software, based on another code base and the needed changes to make a final release version are not yet completed. Everything is subject to change!

1
poetry install xurls

or

1
pip install xurls

Very basic example:

1
2
3
4
5
6
7
from xurls import URLMutable

url = URLMutable("http://www.google.com/some/path")
assert url.host == "www.google.com"

url.host = "apple.com"
assert url.url() == "http://appe.com/some/path"