generated from getupcloud/terraform-cluster-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
urlparse
executable file
·48 lines (38 loc) · 1.02 KB
/
urlparse
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python3
import sys
from urllib.parse import urlparse, parse_qs
from collections import defaultdict
help = f'''
Usage:
{sys.argv[0]} [URL] [PRINT_FORMAT]
Valid format:
scheme, netloc, path, params, query, fragment, username, password, hostname, port
Example:
$ {sys.argv[0]} "http://docs.python.org:80/3/library/urllib.parse.html?highlight=params#url-parsing" "{{query[highlight]}} (port={{port}})"
docs.python.org:80 -> params (port=80)
'''
try:
url, fmt = sys.argv[1:3]
except ValueError:
print(help)
sys.exit(1)
if '://' not in url:
url = '//' + url
u = urlparse(url)
query = defaultdict(str, { k : v[0] for k, v in parse_qs(u.query).items() })
#print(u)
#print(query)
#print(query['ref'])
s = fmt.format(
scheme=u.scheme or '',
netloc=u.netloc or '',
path=u.path or '',
params=u.params or '',
query=query,
fragment=u.fragment or '',
username=u.username or '',
password=u.password or '',
hostname=u.hostname or '',
port=u.port or ''
)
print(s)