├── .github ├── FUNDING.yml └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── can_ada-stubs └── __init__.pyi ├── pyproject.toml ├── setup.py ├── src ├── ada.cpp ├── ada.h └── binding.cpp └── tests ├── conftest.py ├── data └── top100.txt ├── test_benchmark.py ├── test_idna.py ├── test_misc.py ├── test_parsing.py └── test_search.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkTech/can_ada/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkTech/can_ada/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkTech/can_ada/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkTech/can_ada/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkTech/can_ada/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkTech/can_ada/HEAD/README.md -------------------------------------------------------------------------------- /can_ada-stubs/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkTech/can_ada/HEAD/can_ada-stubs/__init__.pyi -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkTech/can_ada/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkTech/can_ada/HEAD/setup.py -------------------------------------------------------------------------------- /src/ada.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkTech/can_ada/HEAD/src/ada.cpp -------------------------------------------------------------------------------- /src/ada.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkTech/can_ada/HEAD/src/ada.h -------------------------------------------------------------------------------- /src/binding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkTech/can_ada/HEAD/src/binding.cpp -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkTech/can_ada/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/top100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkTech/can_ada/HEAD/tests/data/top100.txt -------------------------------------------------------------------------------- /tests/test_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkTech/can_ada/HEAD/tests/test_benchmark.py -------------------------------------------------------------------------------- /tests/test_idna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkTech/can_ada/HEAD/tests/test_idna.py -------------------------------------------------------------------------------- /tests/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkTech/can_ada/HEAD/tests/test_misc.py -------------------------------------------------------------------------------- /tests/test_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkTech/can_ada/HEAD/tests/test_parsing.py -------------------------------------------------------------------------------- /tests/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkTech/can_ada/HEAD/tests/test_search.py --------------------------------------------------------------------------------