mirror of
https://github.com/simon987/parler-tricks.git
synced 2025-04-10 14:06:44 +00:00
8 lines
281 B
Python
8 lines
281 B
Python
class WalletAPI:
|
|
def __init__(self, session, root_url="http://api.parler.com"):
|
|
self.root_url = root_url
|
|
self.s = session
|
|
|
|
def get_billing_information(self, *args, **kwargs):
|
|
return self.s.get("{}/v3/billing".format(self.root_url), *args, **kwargs)
|