pba-client 0.0.7

Creator: railscoder56

Last updated:

Add to Cart

Description:

pbaclient 0.0.7

tg-parking-api-client
pip install pba-client
telegram_users.basic_operation:
def create_telegram_user(self, user: dict):
url = self.prepare_url()
return requests.post(url, json=user).json()

def create_telegram_user(self, user: dict):
url = self.prepare_url()
return requests.post(url, json=user).json()

def get_telegram_user(self, user: dict):
url = self.prepare_url(f"{user.get('id')}")
return requests.get(url).json()

def update_telegram_user(self, user: dict):
url = self.prepare_url(f"{user.get('id')}")
return requests.put(url, json=user).json()

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.