mirror of
				https://github.com/Eledio/superfaktura-client.git
				synced 2025-10-31 16:11:20 +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())
 |