list-of-top-level-domains/README.md

33 lines
1.6 KiB
Markdown
Raw Normal View History

2017-12-04 21:56:31 +00:00
# TLD Enumerations
2012-10-27 11:41:50 +00:00
2017-12-04 21:56:31 +00:00
Lists of every [ICANN TLD](https://www.icann.org/resources/pages/tlds-2012-02-25-en) in formats that can be natively compiled in various language targets.
2012-10-27 17:20:34 +00:00
2017-12-04 22:40:06 +00:00
The [canonical TLD list in CSV format](tlds.csv) used to generate the various formats in this project is a fork from [incognico/list-of-top-level-domains](https://github.com/incognico/list-of-top-level-domains) project.
2017-12-04 21:56:31 +00:00
2017-12-04 22:17:37 +00:00
## List Formats
2017-12-04 22:26:47 +00:00
* **PHP**: [TldEnum.php](src/formats/php/TldEnum/TldEnum.php)
2017-12-04 22:40:06 +00:00
A PHP source file providing a class with constant having an array value comprised of every ICANN TLD.
2017-12-04 22:26:47 +00:00
* **JSON**: [tld-list.json](src/formats/json/tld-list.json)
2017-12-04 22:40:06 +00:00
A JSON formatted array comprised of every ICANN TLD.
2017-12-04 22:26:47 +00:00
* **CSV**: [tlds-name-only.csv](src/formats/csv/tlds-name-only.csv)
2017-12-04 22:40:06 +00:00
A csv text file comprised of every ICANN TLD; the TLD name only, each separated by a newline character.
2017-12-04 21:56:31 +00:00
## Legal
2017-12-04 22:40:06 +00:00
The source code in this project is based on a fork of certain source code originally from the [incognico/list-of-top-level-domains](https://github.com/incognico/list-of-top-level-domains) project, as retrieved on 2017-12-04, which was published to the public domain.
2017-12-04 21:56:31 +00:00
### Copyright
TLD Enumerations - https://github.com/katmore/tld-enum
Copyright (c) 2017 Doug Bird. All Rights Reserved.
### License
TLD Enumerations is copyrighted free software.
You may redistribute and modify it under either the terms and conditions of the
"The MIT License (MIT)"; or the terms and conditions of the "GPL v3 License".
See [LICENSE](https://github.com/katmore/tld-enum/blob/master/LICENSE) and [GPLv3](https://github.com/katmore/tld-enum/blob/master/GPLv3).