├── .bumpversion.cfg ├── .github ├── dependabot.yml └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── contrib └── gen.py ├── countrynames ├── __init__.py ├── compile.py ├── data.py ├── data.yaml ├── mappings.py ├── py.typed └── util.py ├── pyproject.toml └── tests ├── __init__.py └── test_countrynames.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensanctions/countrynames/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensanctions/countrynames/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensanctions/countrynames/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensanctions/countrynames/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensanctions/countrynames/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensanctions/countrynames/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensanctions/countrynames/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensanctions/countrynames/HEAD/SECURITY.md -------------------------------------------------------------------------------- /contrib/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensanctions/countrynames/HEAD/contrib/gen.py -------------------------------------------------------------------------------- /countrynames/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensanctions/countrynames/HEAD/countrynames/__init__.py -------------------------------------------------------------------------------- /countrynames/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensanctions/countrynames/HEAD/countrynames/compile.py -------------------------------------------------------------------------------- /countrynames/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensanctions/countrynames/HEAD/countrynames/data.py -------------------------------------------------------------------------------- /countrynames/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensanctions/countrynames/HEAD/countrynames/data.yaml -------------------------------------------------------------------------------- /countrynames/mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensanctions/countrynames/HEAD/countrynames/mappings.py -------------------------------------------------------------------------------- /countrynames/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /countrynames/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensanctions/countrynames/HEAD/countrynames/util.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensanctions/countrynames/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_countrynames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensanctions/countrynames/HEAD/tests/test_countrynames.py --------------------------------------------------------------------------------