mirror of
https://github.com/Eledio/superfaktura-client.git
synced 2025-11-01 00:18:25 +01:00
13 lines
206 B
Python
13 lines
206 B
Python
from pprint import pprint
|
|
|
|
from superfaktura.superfaktura_api import SuperFakturaAPI
|
|
|
|
|
|
def country_list():
|
|
api = SuperFakturaAPI()
|
|
url = "countries"
|
|
return api.get(url)
|
|
|
|
|
|
pprint(country_list())
|