6 releases (breaking)
0.6.0 | Aug 10, 2022 |
---|---|
0.5.1 | Sep 11, 2018 |
0.5.0 | Oct 30, 2017 |
0.4.0 | Feb 9, 2017 |
0.1.0 |
|
#85 in Internationalization (i18n)
10,284 downloads per month
Used in 11 crates
(5 directly)
155KB
7.5K
SLoC
tldExtract
A rust implementation of tldExtract. tldExtract accurately extracts TLD, including gTLD(generic top-level domain) and ccTLD ( country code top-level domain) from the domain and subdomains of a URL. For example, it extracts 'google' from 'http://www.google.com'.
Splitting the url with '.' and taking the last 2 elements does not work except for simple examples like .com domains. This does not work for complicated domains like http://forums.bbc.co.uk . The naive splitting method above will give you 'co' as the domain and 'uk' as the TLD, instead of 'bbc' and 'co.uk' respectively.
While tldExtract knows what all gTLDs and ccTLDs look like by looking up the currently living ones according to the Public Suffix List. So, tleExtract knows the subdomain and its domain from its country code.
Thanks to john-kurkowski, this project is mainly inspired by his work in python
Dependencies
~6–19MB
~279K SLoC