murl is a tiny wrapper for the Python module urlparse.
Project description
Project details
Installation
Install with pip:
$ pip install murl
Getting Started
from murl import Url
url = Url('https://bugzilla.mozilla.org/show_bug.cgi?id=698201#c0')
print url.scheme, url.host, url.querystring, url.fragment
# https bugzilla.mozilla.org id=698201 c0
url.scheme = 'http'
url.host = 'bugzilla.webkit.org'
print url
print url.url
print url.scheme
print url.host
print url.netloc
print url.host == url.netloc
# http://bugzilla.webkit.org/show_bug.cgi?id=698201#c0
# http://bugzilla.webkit.org/show_bug.cgi?id=698201#c0
# http
# bugzilla.webkit.org
# bugzilla.webkit.org
# True
url.path = 'list_bugs.cgi'
print url.path, url.url
# list_bugs.cgi http://bugzilla.webkit.org/list_bugs.cgi?id=698201#c0
url.fragment = 'c1'
print url.fragment
print url.url
# c1
# http://bugzilla.webkit.org/list_bugs.cgi?id=698201#c1
url.fragment = ''
print url.fragment
print url.url
# ''
# http://bugzilla.webkit.org/list_bugs.cgi?id=698201
License
All files that are part of this project are covered by the following license, except where explicitly noted.
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file murl-0.5.1.tar.gz.
File metadata
- Download URL: murl-0.5.1.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53c27d8dc55a81f1af15c03c44e111b30d86e22aac9fb6c82cb447c39783d1f7
|
|
| MD5 |
6121e5403b2c0323220a22d0c4fd1906
|
|
| BLAKE2b-256 |
fd040e6413a745d9c69bc6085bcda15b5ae06867d35f0c3c0b210fe2bb203a4d
|
File details
Details for the file murl-0.5.1-py2.py3-none-any.whl.
File metadata
- Download URL: murl-0.5.1-py2.py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbc9e213a99a300bbddd678bd46c2defc3c79dab9091d0c7fc465a2c12d98754
|
|
| MD5 |
29309cc0b697455c5cfa909bdae33d41
|
|
| BLAKE2b-256 |
9bfd957f44bc1cec3fe4e3b5e43c9899210350ab4eacd9614ff0e4e9cfaebc87
|