Skip to main content

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


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.3.tar.gz (3.3 kB view details)

Uploaded Source

File details

Details for the file urlparse3-1.0.3.tar.gz.

File metadata

  • Download URL: urlparse3-1.0.3.tar.gz
  • Upload date:
  • Size: 3.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for urlparse3-1.0.3.tar.gz
Algorithm Hash digest
SHA256 211bf5e3b905645aec34456addd4d8322b82784a3a732d0faa0df7f05c57c646
MD5 6d26634cc1511f517c070d6769d3709b
BLAKE2b-256 c8614db1282cf0a965c1682234d48753b773bdc54052173ed8913760ab47b21d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page