Skip to main content

Extract the top-level domain (TLD) from the URL given.

Project description

Extract the top level domain (TLD) from the URL given. List of TLD names is taken from Public Suffix.

Optionally raises exceptions on non-existing TLDs or silently fails (if fail_silently argument is set to True).

PyPI Version Supported Python versions Build Status Documentation Status MPL-1.1 OR GPL-2.0-only OR LGPL-2.1-or-later Coverage

Prerequisites

  • Python 3.6, 3.7, 3.8, 3.9, 3.10 or 3.11.

Support for Python 2.7 and 3.5 is available as well.

Documentation

Documentation is available on Read the Docs.

Installation

Latest stable version on PyPI:

pip install tld

Or latest stable version from GitHub:

pip install https://github.com/barseghyanartur/tld/archive/stable.tar.gz

Usage examples

In addition to examples below, see the jupyter notebook workbook file.

Get the TLD name as string from the URL given

from tld import get_tld

get_tld("http://www.google.co.uk")
# 'co.uk'

get_tld("http://www.google.idontexist", fail_silently=True)
# None

Get the TLD as an object

from tld import get_tld

res = get_tld("http://some.subdomain.google.co.uk", as_object=True)

res
# 'co.uk'

res.subdomain
# 'some.subdomain'

res.domain
# 'google'

res.tld
# 'co.uk'

res.fld
# 'google.co.uk'

res.parsed_url
# SplitResult(
#     scheme='http',
#     netloc='some.subdomain.google.co.uk',
#     path='',
#     query='',
#     fragment=''
# )

Get TLD name, ignoring the missing protocol

from tld import get_tld, get_fld

get_tld("www.google.co.uk", fix_protocol=True)
# 'co.uk'

get_fld("www.google.co.uk", fix_protocol=True)
# 'google.co.uk'

Return TLD parts as tuple

from tld import parse_tld

parse_tld('http://www.google.com')
# 'com', 'google', 'www'

Get the first level domain name as string from the URL given

from tld import get_fld

get_fld("http://www.google.co.uk")
# 'google.co.uk'

get_fld("http://www.google.idontexist", fail_silently=True)
# None

Check if some tld is a valid tld

from tld import is_tld

is_tld('co.uk)
# True

is_tld('uk')
# True

is_tld('tld.doesnotexist')
# False

is_tld('www.google.com')
# False

Update the list of TLD names

To update/sync the tld names with the most recent versions run the following from your terminal:

update-tld-names

Or simply do:

from tld.utils import update_tld_names

update_tld_names()

Note, that this will update all registered TLD source parsers (not only the list of TLD names taken from Mozilla). In order to run the update for a single parser, append uid of that parser as argument.

update-tld-names mozilla

Custom TLD parsers

By default list of TLD names is taken from Mozilla. Parsing implemented in the tld.utils.MozillaTLDSourceParser class. If you want to use another parser, subclass the tld.base.BaseTLDSourceParser, provide uid, source_url, local_path and implement the get_tld_names method. Take the tld.utils.MozillaTLDSourceParser as a good example of such implementation. You could then use get_tld (as well as other tld module functions) as shown below:

from tld import get_tld
from some.module import CustomTLDSourceParser

get_tld(
    "http://www.google.co.uk",
    parser_class=CustomTLDSourceParser
)

Custom list of TLD names

You could maintain your own custom version of the TLD names list (even multiple ones) and use them simultaneously with built in TLD names list.

You would then store them locally and provide a path to it as shown below:

from tld import get_tld
from tld.utils import BaseMozillaTLDSourceParser

class CustomBaseMozillaTLDSourceParser(BaseMozillaTLDSourceParser):

    uid: str = 'custom_mozilla'
    local_path: str = 'tests/res/effective_tld_names_custom.dat.txt'

get_tld(
    "http://www.foreverchild",
    parser_class=CustomBaseMozillaTLDSourceParser
)
# 'foreverchild'

Same goes for first level domain names:

from tld import get_fld

get_fld(
    "http://www.foreverchild",
    parser_class=CustomBaseMozillaTLDSourceParser
)
# 'www.foreverchild'

Note, that in both examples shown above, there the original TLD names file has been modified in the following way:

...
// ===BEGIN ICANN DOMAINS===

// This one actually does not exist, added for testing purposes
foreverchild
...

Free up resources

To free up memory occupied by loading of custom TLD names, use reset_tld_names function with tld_names_local_path parameter.

from tld import get_tld, reset_tld_names

# Get TLD from a custom TLD names parser
get_tld(
    "http://www.foreverchild",
    parser_class=CustomBaseMozillaTLDSourceParser
)

# Free resources occupied by the custom TLD names list
reset_tld_names("tests/res/effective_tld_names_custom.dat.txt")

Support for Python 2.7 and 3.5

As you might have noticed, typing (Python 3.6+) is extensively used in the code. However, Python 3.5 will likely be supported until it’s EOL. All modern recent versions (starting from tld 0.11.7) are fully compatible with Python 2.7 and 3.5 (just works with pip install tld).

Install from pip

pip install tld

Development tips follow:

Python 2.7

Install locally in development mode

python setup.py develop --python-tag py27

Prepare dist

./scripts/prepare_build_py27.sh

Run tests

tox -e py27

Python 3.5

Install locally in development mode

python setup.py develop --python-tag py35

Prepare dist

./scripts/prepare_build_py35.sh

Run tests

tox -e py35

Troubleshooting

If somehow domain names listed here are not recognised, make sure you have the most recent version of TLD names in your virtual environment:

update-tld-names

To update TLD names list for a single parser, specify it as an argument:

update-tld-names mozilla

Testing

Simply type:

./runtests.py

Or use tox:

tox

Or use tox to check specific env:

tox -e py39

Writing documentation

Keep the following hierarchy.

=====
title
=====

header
======

sub-header
----------

sub-sub-header
~~~~~~~~~~~~~~

sub-sub-sub-header
^^^^^^^^^^^^^^^^^^

sub-sub-sub-sub-header
++++++++++++++++++++++

sub-sub-sub-sub-sub-header
**************************

License

MPL-1.1 OR GPL-2.0-only OR LGPL-2.1-or-later

Support

For security issues contact me at the e-mail given in the Author section.

For overall issues, go to GitHub.

Author

Artur Barseghyan <artur.barseghyan@gmail.com>

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

tld-0.12.7.tar.gz (740.9 kB view details)

Uploaded Source

Built Distributions

tld-0.12.7-py311-none-any.whl (263.1 kB view details)

Uploaded Python 3.11

tld-0.12.7-py310-none-any.whl (263.1 kB view details)

Uploaded Python 3.10

tld-0.12.7-py39-none-any.whl (263.1 kB view details)

Uploaded Python 3.9

tld-0.12.7-py38-none-any.whl (263.1 kB view details)

Uploaded Python 3.8

tld-0.12.7-py37-none-any.whl (263.1 kB view details)

Uploaded Python 3.7

tld-0.12.7-py36-none-any.whl (263.1 kB view details)

Uploaded Python 3.6

tld-0.12.7-py35-none-any.whl (262.4 kB view details)

Uploaded Python 3.5

tld-0.12.7-py27-none-any.whl (262.7 kB view details)

Uploaded Python 2.7

File details

Details for the file tld-0.12.7.tar.gz.

File metadata

  • Download URL: tld-0.12.7.tar.gz
  • Upload date:
  • Size: 740.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.6

File hashes

Hashes for tld-0.12.7.tar.gz
Algorithm Hash digest
SHA256 b6f7729e19ce0ebc77ba0a65b70d6213aeb952c01ff605e1299aae5fb7621c5e
MD5 aeb3d32e167738196395b06cdbb4bd11
BLAKE2b-256 0e3da2d4daa269b583cd16c885cda5bb5ac63012cb4c08f680ea1acc8b6abcab

See more details on using hashes here.

File details

Details for the file tld-0.12.7-py311-none-any.whl.

File metadata

  • Download URL: tld-0.12.7-py311-none-any.whl
  • Upload date:
  • Size: 263.1 kB
  • Tags: Python 3.11
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.6

File hashes

Hashes for tld-0.12.7-py311-none-any.whl
Algorithm Hash digest
SHA256 7e3d4c856c0d62484117f527f278bb5583849d71961d4fd062bcac0773b0984c
MD5 032771c3f20ca6d25f311ced8a7f0445
BLAKE2b-256 0b04cb1cae08ca627b25b05d7af7229d073d89a88c2362b45d175af1fb75049e

See more details on using hashes here.

File details

Details for the file tld-0.12.7-py310-none-any.whl.

File metadata

  • Download URL: tld-0.12.7-py310-none-any.whl
  • Upload date:
  • Size: 263.1 kB
  • Tags: Python 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.6

File hashes

Hashes for tld-0.12.7-py310-none-any.whl
Algorithm Hash digest
SHA256 728083653341819d7c1a76e3aaeb6bfc4bafebfaa3336384762a998320f14d1e
MD5 c9852c8ea2e382da430b7c43ca58d6a9
BLAKE2b-256 9eb8c69d24555c1a1b707918da847f6a790b57bef99bc2baf6b3e90416801d36

See more details on using hashes here.

File details

Details for the file tld-0.12.7-py39-none-any.whl.

File metadata

  • Download URL: tld-0.12.7-py39-none-any.whl
  • Upload date:
  • Size: 263.1 kB
  • Tags: Python 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.6

File hashes

Hashes for tld-0.12.7-py39-none-any.whl
Algorithm Hash digest
SHA256 2157f36502c88e538c73e991fffbd2fb905fb8d87bbeef0feb7b24b03335c180
MD5 ffc098c900710ea36ef61b0a630d882c
BLAKE2b-256 bfd22186bf33a7d2a3436612cacba0f96b5dd67d9317b0d3ac6d8bc8158c3b42

See more details on using hashes here.

File details

Details for the file tld-0.12.7-py38-none-any.whl.

File metadata

  • Download URL: tld-0.12.7-py38-none-any.whl
  • Upload date:
  • Size: 263.1 kB
  • Tags: Python 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.6

File hashes

Hashes for tld-0.12.7-py38-none-any.whl
Algorithm Hash digest
SHA256 d16d2475383f0a78bc4faa2fa2c23417fe494d9b73081a0670dc4a1e5a32fba8
MD5 418200d02558ac58b86941a4a2db11e7
BLAKE2b-256 5ae97b3ad23ef14bfcdf8e011e3ea8a2011eaeff07cff9d98393359f92b2e3d4

See more details on using hashes here.

File details

Details for the file tld-0.12.7-py37-none-any.whl.

File metadata

  • Download URL: tld-0.12.7-py37-none-any.whl
  • Upload date:
  • Size: 263.1 kB
  • Tags: Python 3.7
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.6

File hashes

Hashes for tld-0.12.7-py37-none-any.whl
Algorithm Hash digest
SHA256 f8efb8d883398aa9ada8995a5a13f8e8d8e6694696dc7dda3e37dc7170b625e4
MD5 f42836ef3f82beadb7be2d3a7a084f54
BLAKE2b-256 9e7f663bafebe158190ffa95c65e3c07a8ceda3c39be5ef218a56b9d3afa1a57

See more details on using hashes here.

File details

Details for the file tld-0.12.7-py36-none-any.whl.

File metadata

  • Download URL: tld-0.12.7-py36-none-any.whl
  • Upload date:
  • Size: 263.1 kB
  • Tags: Python 3.6
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.6

File hashes

Hashes for tld-0.12.7-py36-none-any.whl
Algorithm Hash digest
SHA256 982e1e35895e32b04777eba704d26d9aeb7cc31d10efc69466a346fac295d7aa
MD5 25176f7728536bfafdfecf3a9a4a0419
BLAKE2b-256 9f704228952550f58f8e50b4df78127c06c121db982afe3e53231c769b33be2e

See more details on using hashes here.

File details

Details for the file tld-0.12.7-py35-none-any.whl.

File metadata

  • Download URL: tld-0.12.7-py35-none-any.whl
  • Upload date:
  • Size: 262.4 kB
  • Tags: Python 3.5
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.6

File hashes

Hashes for tld-0.12.7-py35-none-any.whl
Algorithm Hash digest
SHA256 da090e9a8706fa9107e451162c31f391c082b30c60b3f1afe94811daf559b0ae
MD5 4925734ef01b86ca2a115d9b414cc6e3
BLAKE2b-256 4d063cfa4c94f6a6e80e5dc972958a5993a985034c38ba019178cbe5df2b71a9

See more details on using hashes here.

File details

Details for the file tld-0.12.7-py27-none-any.whl.

File metadata

  • Download URL: tld-0.12.7-py27-none-any.whl
  • Upload date:
  • Size: 262.7 kB
  • Tags: Python 2.7
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.6

File hashes

Hashes for tld-0.12.7-py27-none-any.whl
Algorithm Hash digest
SHA256 d1130e050e1de92b24928246d36847dadb8106fd9455f1903f2712d23ed654f3
MD5 e82ed40a9fc0cb986935d1f330c273fb
BLAKE2b-256 b5f4d745b9a77c0329be7088a518f93e73a3c496d0952bcebb647e53e4804491

See more details on using hashes here.

Supported by

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