├── .devcontainer └── devcontainer.json ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── diff.yml │ ├── full.yml │ └── test.yml ├── .gitignore ├── .python-version ├── CONTRIBUTING.md ├── Getting-Started.md ├── ICANN_domains ├── LICENSE ├── README.md ├── RWS-Submission_Guidelines.md ├── RwsCheck.py ├── RwsSet.py ├── SCHEMA.json ├── Well-Known-Specification.md ├── check_sites.py ├── effective_tld_names.dat ├── related_website_sets.JSON ├── requirements.txt └── tests └── rws_tests.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/related-website-sets/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/related-website-sets/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/related-website-sets/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/diff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/related-website-sets/HEAD/.github/workflows/diff.yml -------------------------------------------------------------------------------- /.github/workflows/full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/related-website-sets/HEAD/.github/workflows/full.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/related-website-sets/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/* 2 | -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/related-website-sets/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Getting-Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/related-website-sets/HEAD/Getting-Started.md -------------------------------------------------------------------------------- /ICANN_domains: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/related-website-sets/HEAD/ICANN_domains -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/related-website-sets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/related-website-sets/HEAD/README.md -------------------------------------------------------------------------------- /RWS-Submission_Guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/related-website-sets/HEAD/RWS-Submission_Guidelines.md -------------------------------------------------------------------------------- /RwsCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/related-website-sets/HEAD/RwsCheck.py -------------------------------------------------------------------------------- /RwsSet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/related-website-sets/HEAD/RwsSet.py -------------------------------------------------------------------------------- /SCHEMA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/related-website-sets/HEAD/SCHEMA.json -------------------------------------------------------------------------------- /Well-Known-Specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/related-website-sets/HEAD/Well-Known-Specification.md -------------------------------------------------------------------------------- /check_sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/related-website-sets/HEAD/check_sites.py -------------------------------------------------------------------------------- /effective_tld_names.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/related-website-sets/HEAD/effective_tld_names.dat -------------------------------------------------------------------------------- /related_website_sets.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/related-website-sets/HEAD/related_website_sets.JSON -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/related-website-sets/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/rws_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/related-website-sets/HEAD/tests/rws_tests.py --------------------------------------------------------------------------------