blob: 4cedb04d04e1a53f0097540708fb392ea49b7fbe [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001import re
2
3urlparts = 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)