Metadata-Version: 2.4
Name: sopel-tld
Version: 0.1.0
Summary: Top-level domain (TLD) info plugin for Sopel IRC bots.
Author: Michael Yanovich
Author-email: dgw <dgw@technobabbl.es>
Maintainer-email: dgw <dgw@technobabbl.es>
License-Expression: EFL-2.0
Project-URL: Homepage, https://github.com/sopel-irc/sopel-tld
Project-URL: Bug Tracker, https://github.com/sopel-irc/sopel-tld/issues
Keywords: sopel,plugin,bot,irc
Platform: Linux x86, x86-64
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Topic :: Communications :: Chat :: Internet Relay Chat
Requires-Python: <4,>=3.8
Description-Content-Type: text/markdown
License-File: COPYING
Requires-Dist: sopel>=8.0
Requires-Dist: requests
Requires-Dist: pytz
Dynamic: license-file

# sopel-tld

Top-level domain (TLD) info plugin for Sopel IRC bots.

## Installing

Releases are hosted on PyPI, so after installing Sopel, all you need is `pip`:

```shell
$ pip install sopel-tld
```

## Using

This plugin provides the `.tld` command, which can be used to look up a
top-level domain with or without the leading `.`:

```
<dgw> .tld .net
<Sopel> [tld] Name: .net | Entity: network | Administrator: Verisign | IDN: Yes
        | DNSSEC: Yes | SLD: Yes | IPv6: Yes | Notes: This is an open TLD; any
        person or entity is permitted to register. According to RFC 1591 (March
        1994) "This domain is intended to hold only the computers of network
        providers."

<dgw> .tld mil
<Sopel> [tld] Name: .mil | Entity: U.S. military | Administrator: United States
        Department of Defense | IDN: No | DNSSEC: Yes | SLD: Yes | IPv6: Yes |
        Notes: The .mil TLD is restricted to departments, services and agencies
        of the United States Department of Defense.
```

Most data is sourced from the English Wikipedia, so code updates might be
required periodically as their table format evolves.

## Changelog

### 0.1.0

First release of `sopel-tld`, based on the built-in `tld` plugin from Sopel 8.0.

Compared to the built-in plugin, this release contains a simple fix for some
ccTLD output errors caused by new `<style>` tags in the Wikipedia markup.
