pycountry-wrapper/pycountry_wrapper/__main__.py

8 lines
190 B
Python
Raw Permalink 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
2024-11-29 15:52:35 +00:00
print(Country(country="DE").name)