urlparse3 is simple and powerful url parsing tool
Project description
urlparse3
Urlparse3 is simple and powerful url parsing tool. Example:
import urlparse3 url = 'http://admin:secret@domain.com/path?q=123#anchor' parsed_url = urlparse3.parse_url(url) print parsed_url.scheme # http print parsed_url.username # admin print parsed_url.password # secret print parsed_url.domain # domain.com print parsed_url.path # path # query is converted into dictionary print parsed_url.query # {'q': '123'} print parsed_url.fragment # anchor # now add new GET parameter parsed_url['name'] = 'alex' # and get url back to string representation print parsed_url.geturl() # http://admin:secret@domain.com/path?q=123&name=alex#anchor
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
urlparse3-1.0.2.tar.gz
(3.2 kB
view details)
File details
Details for the file urlparse3-1.0.2.tar.gz
.
File metadata
- Download URL: urlparse3-1.0.2.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e1c6a8087fad49b4d5dbe2933ac2f7d78356952d07a74f923d04dfc18eb1e15f |
|
MD5 | 27db725a60dbfe969f926b928e51f599 |
|
BLAKE2b-256 | aaf1934fb925d017fe4769e70e253a4611ea79726d71acfc14e7d2e7d486bd7f |