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

Uploaded Source

File details

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

File metadata

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

File hashes

Hashes for tldextract-1.3.tar.gz
Algorithm Hash digest
SHA256 da3d98dc280de4606b7c60b6d80d596ac55d9778952bf1dad1c9d07e07cd96ed
MD5 2f5caa86f5e141f12f71ea57ee8c6452
BLAKE2b-256 8b16fa0f36280325cabda3395f432099f2637d60c600cfb649c5137b7944f578

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