pycountry-wrapper/pycountry_wrapper/__main__.py

9 lines
179 B
Python
Raw Normal View History

2024-11-19 13:09:03 +00:00
from .__about__ import __name__, __version__
2024-11-19 13:51:55 +00:00
from . import Country
2024-11-19 13:09:03 +00:00
def cli():
print(f"Running {__name__} version {__version__} from __main__.py")
2024-11-19 13:51:55 +00:00
print(Country("DEU"))