from monday.client import Client class App: def __init__(self): self._client = Client('eyJhbGciOiJIUzI1NiJ9.eyJ0aWQiOjI3NTgyNjU4NywiYWFpIjoxMSwidWlkIjo0NzQxNzc3NywiaWFkIjoiMjAyMy0wOC0xN1QxODoyMzoyMS41MjZaIiwicGVyIjoibWU6d3JpdGUiLCJhY3RpZCI6MTgzMzQ3NjAsInJnbiI6ImV1YzEifQ.3gb_81-hrIf6O7U-TKrsE-bgglkaQn73rbws5yfaT3A') def start(self): user = self._client.get_current_user() print(user) # self._client.items.create_item(board_id='1251126894', group_id='today', item_name='Do a thing') item = self._client.create_item(1251138024, 'test', {"Project": "column_value"})