Simple URL builder
Project description
BuildURL
Simple URL builder
Installation
pip
pip install buildurl
GitHub
You can also install the latest version of the code directly from GitHub:
pip install git+git://github.com/MicaelJarniac/BuildURL
Usage
For more examples, see the full documentation.
from buildurl import BuildURL
# Use the `/` operator to add a string as a path to the end of the URL, like so:
url = BuildURL("https://pypi.org")
url /= "project"
url /= "buildurl"
print(url.get) # https://pypi.org/project/buildurl
# Or, using a list:
url = BuildURL("https://pypi.org")
url /= ["project", "buildurl"]
print(url.get) # https://pypi.org/project/buildurl
# Use the `+` operator to add a dict as a query:
url = BuildURL("https://example.com")
url += {"testing": "true"}
url += {"fruit": "apple"}
print(url.get) # https://example.com?testing=true&fruit=apple
# Those operations can also be done without modifying the original URL:
url = BuildURL("https://python.org")
print(url.get) # https://python.org
print((url / "doc").get) # https://python.org/doc
print(url.get) # https://python.org
# To get the final URL as a string:
url = BuildURL("https://example.com")
url.get
str(url)
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
More details can be found in CONTRIBUTING.
Contributors ✨
Micael Jarniac 💻 📖 💡 🤔 🚧 📦 📆 ⚠️ |
License
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
buildurl-4.0.1.tar.gz
(8.5 kB
view details)
File details
Details for the file buildurl-4.0.1.tar.gz
.
File metadata
- Download URL: buildurl-4.0.1.tar.gz
- Upload date:
- Size: 8.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee7b18e2b2a34e42678018171bf37bb07fd3fadef511122404c1a22bad134cdb |
|
MD5 | 346b12d77210d707b36d1ac6a5d03ca2 |
|
BLAKE2b-256 | ac61bb0e2e656b5fe57ae8cd1295fb1a06f4b4caa39394ea505a33dac8fe195e |