pycountry-wrapper/pycountry_wrapper/__main__.py
2024-11-19 14:51:55 +01:00

9 lines
191 B
Python

from .__about__ import __name__, __version__
from . import Country
def cli():
print(f"Running {__name__} version {__version__} from __main__.py")
print(Country.from_alpha_2("DE"))