voipms-python/voipms/api/general/countries.py

8 lines
205 B
Python
Raw Normal View History

class Countries():
def __init__(self, base):
self.method = "getCountries"
self.base = base
2020-03-17 02:58:09 +00:00
def fetch(self, params={}):
2020-03-17 02:58:09 +00:00
return self.base.request(self.method, params=params)