mirror of
https://github.com/Eledio/superfaktura-client.git
synced 2025-11-01 08:28:25 +01:00
19 lines
358 B
Python
19 lines
358 B
Python
"""
|
|
This script retrieves and prints the list of countries using the SuperFaktura API.
|
|
"""
|
|
|
|
from pprint import pprint
|
|
|
|
from superfaktura.utils.country import country_list
|
|
|
|
|
|
def main():
|
|
"""
|
|
Main function to retrieve and print the list of countries using the SuperFaktura API.
|
|
"""
|
|
pprint(country_list())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|