You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

monday-async

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

monday-async

An asynchronous Python client library for monday.com

1.8.2
pipPyPI
Maintainers
1

monday_async · Tests

An asynchronous Python client library for monday.com

Check out monday.com API here.

Install

Python Requirements:

  • Python >= 3.9

To install the latest version run:

pip install monday-async

Example

import asyncio
from monday_async import AsyncMondayClient
from aiohttp import ClientSession

async def main():
    with ClientSession() as session:
        client = AsyncMondayClient(token="YOUR_API_KEY", session=session)
        boards = await client.boards.get_boards()
        
asyncio.run(main())

License

This project is licensed under the Apache-2.0 license.

Keywords

API

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts