forked from jehiah/urlnorm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.txt
More file actions
30 lines (20 loc) · 700 Bytes
/
Copy pathREADME.txt
File metadata and controls
30 lines (20 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
urlnorm.py
==========
Normalize a URL to a standard unicode representation
urlnorm normalizes a URL by:
* lowercasing the scheme and hostname
* converting the hostname to IDN format
* taking out default port if present (e.g., http://www.foo.com:80/)
* collapsing the path (./, ../, etc)
* removing the last character in the hostname if it is '.'
* unquoting any % escaped characters (where possible)
Installation
============
pip install -U urlnorm
or to install from source
pip install -e git://github.com/jehiah/urlnorm.git#egg=urlnorm
Examples
========
>>> import urlnorm
>>> urlnorm.norm("http://xn--q-bga.com./u/u/../%72/l/")
u'http://q\xe9.com/u/r/l/'