Accurately separate the TLD from the registered domain and subdomains of a URL, using the Public Suffix List.
Project description
tldextract accurately separates the gTLD or ccTLD (generic or country code top-level domain) from the registered domain and subdomains of a URL.
>>> import tldextract
>>> tldextract.extract('http://forums.news.cnn.com/')
ExtractResult(subdomain='forums.news', domain='cnn', suffix='com')
>>> tldextract.extract('http://forums.bbc.co.uk/') # United Kingdom
ExtractResult(subdomain='forums', domain='bbc', suffix='co.uk')
>>> tldextract.extract('http://www.worldbank.org.kg/') # Kyrgyzstan
ExtractResult(subdomain='www', domain='worldbank', suffix='org.kg')
ExtractResult is a namedtuple, so it’s simple to access the parts you want.
>>> ext = tldextract.extract('http://forums.bbc.co.uk')
>>> ext.domain
'bbc'
>>> '.'.join(ext[:2]) # rejoin subdomain and domain
'forums.bbc'
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tldextract-1.2.1.tar.gz
(55.5 kB
view details)
File details
Details for the file tldextract-1.2.1.tar.gz.
File metadata
- Download URL: tldextract-1.2.1.tar.gz
- Upload date:
- Size: 55.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0472556960acc1d0a4946dbb6b833f368331b0f998c0d27e6efb1a5fc101b6c3
|
|
| MD5 |
0b76d673fc98ceda77cc00a8165265ef
|
|
| BLAKE2b-256 |
a821db8d50395bc0c97e7d19f0e63a4026069e5f0615eaee4443364cee7fe590
|