| Tor Norbye | 3a2425a | 2013-11-04 10:16:08 -0800 | [diff] [blame^] | 1 | import re |
| 2 | |||||
| 3 | urlparts = re.compile( | ||||
| 4 | r""" | ||||
| 5 | (?P<scheme>http|https) | ||||
| 6 | :// | ||||
| 7 | (?P<netloc>(?:(?!/|\?|\#)\S)*) | ||||
| 8 | /? | ||||
| 9 | (?P<path>(?:(?!\?|\#)\S)*) | ||||
| 10 | \?? | ||||
| 11 | (?P<query>(?:(?!\#)\S)*) | ||||
| 12 | \#? | ||||
| 13 | (?P<fragment>[\S]*) | ||||
| 14 | """, re.VERBOSE | ||||
| 15 | ) | ||||