2025-06-12 15:20:26 +02:00

11 lines
211 B
Python

from .country import Country, EmptyCountry, EmptyCountryException
from . import config
__name__ = "pycountry_wrapper"
__all__ = [
"Country",
"EmptyCountry",
"config",
"EmptyCountryException",
]