You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
domain parsing is not working with scheme/url in uppercase
importtld#scheme and URL is in upper casetest_url="HTTP://GOOGLE.COM"domain=tld.get_fld(test_url, fail_silently=True, fix_protocol=True)
# output is None for v0.12.5 and above, `google.com` for anything below `v0.12.4`print(domain)
This snippet is working with tld version anything below v0.12.4, and not working for anything above v0.12.5
The text was updated successfully, but these errors were encountered:
sujith-trellix
changed the title
Protocol is case sensitive
Parsing is not working for scheme in case uppercase
Jan 16, 2024
sujith-trellix
changed the title
Parsing is not working for scheme in case uppercase
Parsing is not working for URL with scheme in case uppercase
Jan 16, 2024
sujith-trellix
changed the title
Parsing is not working for URL with scheme in case uppercase
Parsing is not working for URL with scheme in uppercase
Jan 16, 2024
domain parsing is not working with scheme/url in uppercase
This snippet is working with
tld
version anything belowv0.12.4
, and not working for anything abovev0.12.5
The text was updated successfully, but these errors were encountered: