{"id":19640172,"url":"https://github.com/gearplug/monday-python","last_synced_at":"2025-10-27T20:36:55.837Z","repository":{"id":167395965,"uuid":"642884243","full_name":"GearPlug/monday-python","owner":"GearPlug","description":"monday-python is an API wrapper for monday.com, written in Python.","archived":false,"fork":false,"pushed_at":"2024-03-11T21:14:59.000Z","size":18,"stargazers_count":6,"open_issues_count":1,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-05T08:25:49.632Z","etag":null,"topics":["api","database","graphql","kanban","monday","project-management","projects","python","requests","webhooks","wrapper"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GearPlug.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2023-05-19T15:03:44.000Z","updated_at":"2025-03-11T12:04:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"4a90e666-6eab-4318-a6f1-19219799a486","html_url":"https://github.com/GearPlug/monday-python","commit_stats":null,"previous_names":["gearplug/monday-python"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Fmonday-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Fmonday-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Fmonday-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Fmonday-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GearPlug","download_url":"https://codeload.github.com/GearPlug/monday-python/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251304792,"owners_count":21567939,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","database","graphql","kanban","monday","project-management","projects","python","requests","webhooks","wrapper"],"created_at":"2024-11-11T14:04:56.579Z","updated_at":"2025-10-27T20:36:55.769Z","avatar_url":"https://github.com/GearPlug.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# monday-python\n![](https://img.shields.io/badge/version-0.1.0-success) ![](https://img.shields.io/badge/Python-3.8%20|%203.9%20|%203.10%20|%203.11-4B8BBE?logo=python\u0026logoColor=white)  \n\n*monday-python* is an API wrapper for monday.com, written in Python.  \nThis library includes notifications using webhooks.\n## Installing\n```\npip install monday-python\n```\n### Usage\n```python\nfrom monday.client import Client\nclient = Client(api_token)\n```\nFind your API token in your monday.com profile admin settings API section.\n\n#### - Get current user\n```python\nuser = client.get_current_user()\n```\n#### - List users\n```python\nusers = client.list_users()\n```\n#### - List workspaces\n```python\nworkspaces = client.list_workspaces()\n```\n#### - List boards\n```python\nboards = client.list_boards(workspace_id)\n```\n#### - List columns\n```python\ncols = client.list_columns(board_id)\n```\n### Items\n#### - List items\n```python\nitems = client.list_items(board_id)\n```\n#### - Get item\n```python\nitem = client.get_item(item_id)\n```\n#### - Get items by column values\n```python\n# The item's state: all, active, archived, or deleted. The default state is active.\nitems = client.get_items_by_column_values(board_id, column_id, column_value, limit=50, state=\"active\")\n```\n#### - Create item\n```python\n# column_values is a dictionary with the following structure:\n#    {\"column_id\": \"column_value\", \"column_id\": \"column_value\"}\nitem = client.create_item(board_id, item_name: str, column_values: dict = None)\n```\n#### - Update item\n```python\n# column_values is a dictionary with the following structure:\n#    {\"column_id\": \"column_value\", \"column_id\": \"column_value\"}\nitem = client.update_item(board_id, item_id, column_values)\n```\n### Webhooks\n#### - List webhooks\n```python\nwebhooks = client.list_webhooks(board_id)\n```\n#### - Create webhook\n```python\nwebhook = client.create_webhook(board_id, url, event)\n```\nTo activate a webhook, the URL must return a response to a post request that monday.com will send to verify.  \nRead more about it here: https://developer.monday.com/api-reference/docs/webhooks\n#### - Delete a webhook\n```python\ndeleted = client.delete_webhook(webhook_id)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgearplug%2Fmonday-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgearplug%2Fmonday-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgearplug%2Fmonday-python/lists"}