{"id":26579848,"url":"https://github.com/mondaycom/monday-api-python-sdk","last_synced_at":"2026-02-02T11:50:23.800Z","repository":{"id":264653838,"uuid":"845929556","full_name":"mondaycom/monday-api-python-sdk","owner":"mondaycom","description":null,"archived":false,"fork":false,"pushed_at":"2026-02-01T15:59:29.000Z","size":118,"stargazers_count":23,"open_issues_count":6,"forks_count":3,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-02-01T23:38:13.239Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mondaycom.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,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-08-22T07:51:07.000Z","updated_at":"2025-12-22T11:05:04.000Z","dependencies_parsed_at":"2025-01-15T18:14:11.430Z","dependency_job_id":"9bee6e85-42ae-4fda-811b-f88716d37cef","html_url":"https://github.com/mondaycom/monday-api-python-sdk","commit_stats":null,"previous_names":["mondaycom/monday-api-python-sdk"],"tags_count":37,"template":false,"template_full_name":null,"purl":"pkg:github/mondaycom/monday-api-python-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mondaycom%2Fmonday-api-python-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mondaycom%2Fmonday-api-python-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mondaycom%2Fmonday-api-python-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mondaycom%2Fmonday-api-python-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mondaycom","download_url":"https://codeload.github.com/mondaycom/monday-api-python-sdk/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mondaycom%2Fmonday-api-python-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29011668,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-02T10:37:29.253Z","status":"ssl_error","status_checked_at":"2026-02-02T10:37:28.644Z","response_time":58,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2025-03-23T06:29:14.632Z","updated_at":"2026-02-02T11:50:23.795Z","avatar_url":"https://github.com/mondaycom.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# monday-api-python-sdk\n\nA Python SDK for interacting with Monday\"s GraphQL API.\n\n## Table of Contents\n\n- [Installation](#installation)\n- [Usage](#usage)\n- [Examples](#examples)\n- [Authentication](#authentication)\n- [Response Types](#response-types)\n\n## Installation\n\nTo install the SDK, use pip:\n\n```bash\npip install monday-api-python-sdk\n```\n## Authentication\nTo use the SDK, you need to authenticate with your Monday API token:\n\n```python\nfrom monday_sdk import MondayClient, MondayApiResponse, Board\n\nclient = MondayClient(token=\"your_token\")\n```\n\n## Examples\n\nHere are some examples of how to use the SDK:\n\n### Example 1: Create a new item\n```python\nfrom monday_sdk import MondayClient\n\nclient = MondayClient(token=\"your_token\")\n\ncolumn_values = {\n    \"status_column_id\": \"In Progress\",  # Replace with your actual status column ID and value\n    \"date_column_id\": \"2025-01-06\",    # Replace with your actual date column ID and date (YYYY-MM-DD format)\n    \"text_column_id\": \"Important task\" # Replace with your actual text column ID and value\n}\n\nitem = client.items.create_item(\n    board_id=\"your_board_id\", \n    group_id=\"your_group_id\", \n    item_name=\"New Item\", \n    column_values=column_values\n)\n\nprint(item)\n```\n### Example 2: Create an Update and Update Column Values\n```python\nfrom monday_sdk import MondayClient, StatusColumnValue, DateColumnValue\n\nclient = MondayClient(token=\"your_token\")\n\n# Create an update for an item\nupdate_response = client.updates.create_update(\n    item_id=\"your_item_id\",\n    update_value=\"This is a new update message for the item.\"\n)\n\n# Change a status column value\nstatus_response = client.items.change_status_column_value(\n    board_id=\"your_board_id\",\n    item_id=\"your_item_id\",\n    column_id=\"status_column_id\",  # Replace with the actual column ID\n    value=\"Done\"  # Replace with the desired status value\n)\nprint(f\"Status column updated: {status_response}\")\n\n# Change a date column value\ndate_response = client.items.change_date_column_value(\n    board_id=\"your_board_id\",\n    item_id=\"your_item_id\",\n    column_id=\"date_column_id\",\n    timestamp=\"2025-01-06\" \n)\n```\n\n## Response Types\n\nThe SDK provides structured types to help you work with API responses more effectively. These types allow you to easily access and manipulate the data returned by the API.\n\n### Available Types\n\n- `MondayApiResponse`: Represents the full response from a Monday API query, including data and account information.\n- `Data`: Holds the core data returned from the API, such as boards, items, and complexity details.\n- `Board`: Represents a Monday board, including items, updates, and activity logs.\n- `Item`: Represents an item on a board, including its details and associated subitems.\n- `Column`, `ColumnValue`: Represents columns and their values for an item.\n- `Group`: Represents a group within a board.\n- `User`: Represents a user associated with an update or activity log.\n- `Update`: Represents an update on an item.\n- `ActivityLog`: Represents an activity log entry on a board.\n- `ItemsPage`: Represents a paginated collection of items.\n\n### Example Usage\n\nHere is an example of how to use these types with the SDK to deserialize API responses:\n```python\nfrom monday_sdk import MondayClient\n\nclient = MondayClient(token=\"your_token\")\nitems = client.boards.fetch_all_items_by_board_id(board_id=\"your_board_id\")\nfirst_item_name = items[0].name\nprint(f\"First item name: {first_item_name}\")\n```\nBy using these types, you can ensure type safety and better code completion support in your IDE, making your work with the Monday API more efficient and error-free.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmondaycom%2Fmonday-api-python-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmondaycom%2Fmonday-api-python-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmondaycom%2Fmonday-api-python-sdk/lists"}