Skip to main content

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


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.2.tar.gz (55.6 kB view details)

Uploaded Source

File details

Details for the file tldextract-1.2.2.tar.gz.

File metadata

  • Download URL: tldextract-1.2.2.tar.gz
  • Upload date:
  • Size: 55.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for tldextract-1.2.2.tar.gz
Algorithm Hash digest
SHA256 c98b96db1b18fcc44ae53fbea95ee9e06a76f5d0f1219d2df9a7544b1cf80915
MD5 49694490edfa0ba9dbab5690be7a0f39
BLAKE2b-256 338dbdc3cfdf76f5ba4b8bc72cce253ef9dd349cd01ecdcb085c0a9eee44a03f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page