{"id":34082724,"url":"https://github.com/boukepostma/mondaytoframe","last_synced_at":"2026-04-26T20:01:21.394Z","repository":{"id":276855314,"uuid":"930522299","full_name":"boukepostma/mondaytoframe","owner":"boukepostma","description":"This python package helps converting data between the Monday.com API and Dataframes.","archived":false,"fork":false,"pushed_at":"2025-05-01T09:55:06.000Z","size":796,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-03T18:51:40.702Z","etag":null,"topics":["api","dataframes","monday","pandas"],"latest_commit_sha":null,"homepage":"https://boukepostma.github.io/mondaytoframe/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/boukepostma.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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":"2025-02-10T19:12:05.000Z","updated_at":"2025-05-01T09:54:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"104e2f02-d812-44a7-9140-933b4dfabfb9","html_url":"https://github.com/boukepostma/mondaytoframe","commit_stats":null,"previous_names":["boukepostma/mondaytoframe"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/boukepostma/mondaytoframe","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boukepostma%2Fmondaytoframe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boukepostma%2Fmondaytoframe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boukepostma%2Fmondaytoframe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boukepostma%2Fmondaytoframe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/boukepostma","download_url":"https://codeload.github.com/boukepostma/mondaytoframe/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boukepostma%2Fmondaytoframe/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32310804,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T19:15:34.056Z","status":"ssl_error","status_checked_at":"2026-04-26T19:15:15.467Z","response_time":129,"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":["api","dataframes","monday","pandas"],"created_at":"2025-12-14T12:24:22.412Z","updated_at":"2026-04-26T20:01:21.390Z","avatar_url":"https://github.com/boukepostma.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# mondaytoframe\n\nThis Python package helps convert data between the Monday.com API and DataFrames.\n\n## Installation\n\nYou can install the package using pip:\n\n```bash\npip install mondaytoframe\n```\n\n## Usage\n\nHere's a basic example of how to use the package:\n\n```python\nfrom mondaytoframe import create_board, create_items, read, update\nimport pandas as pd\nimport os\n\nmonday_token = \"your_monday_token_here\"\n\n# Create a new board\ncolumns = {\"Numbers Column\": \"numbers\", \"Text Column\": \"text\"}\nboard_id = create_board(columns, monday_token)\n\n# Create items in a board\nnew_df = pd.DataFrame(\n    {\n        \"Name\": [\"first\", \"second\"],\n        \"Numbers Column\": [1.0, 2.0],\n        \"Text Column\": [\"a\", \"b\"],\n    }\n)\ncreate_items(board_id, new_df, monday_token)\n\n# Read your board as a dataframe...\ndf = read(board_id, monday_token)\n\n# ... perform data transformation on your dataframe\ndf_transformed = df.copy()\ndf_transformed[\"Numbers Column\"] = df[\"Numbers Column\"] + 1\n\n# ... and store the results in Monday again!\nupdate(board_id, df_transformed, monday_token)\n\n```\n\n\u003e [!TIP]\n\u003e Instead of providing `monday_token`, you could also set `MONDAYTOFRAME_TOKEN` environment variable.\n\n## Features\n\n- Easy conversion between Monday.com API data and DataFrames\n- Simplifies data manipulation and analysis\n- Support for multiple [monday column types](https://developer.monday.com/api-reference/reference/column-types-reference)\n\n### Supported Data Types\n\n| Column Type            | Supported by `read` | Supported by `update` |\n|------------------------|---------------------|---------------------|\n| Item ID                | ✅                  | ✅                  |\n| Name                   | ✅                  | ✅                  |\n| Text                   | ✅                  | ✅                  |\n| Long Text              | ✅                  | ✅                  |\n| Number                 | ✅                  | ✅                  |\n| Date                   | ✅                  | ✅                  |\n| Status                 | ✅                  | ✅                  |\n| Dropdown               | ✅                  | ✅                  |\n| People                 | ✅                  | ✅                  |\n| Tags                   | ✅                  | ✅                  |\n| Checkbox               | ✅                  | ✅                  |\n| Link                   | ✅                  | ✅                  |\n| Email                  | ✅                  | ✅                  |\n| Phone                  | ✅                  | ✅                  |\n| Timeline               | ❌                  | ❌                  |\n| Country                | ❌                  | ❌                  |\n| Color Picker           | ❌                  | ❌                  |\n| Rating                 | ❌                  | ❌                  |\n| Progress Tracking      | ❌                  | ❌                  |\n| Formula                | ❌                  | ❌                  |\n| Auto Number            | ❌                  | ❌                  |\n| Dependency             | ❌                  | ❌                  |\n| Button                 | ❌                  | ❌                  |\n| World Clock            | ❌                  | ❌                  |\n| Location               | ❌                  | ❌                  |\n| Hour                   | ❌                  | ❌                  |\n| Week                   | ❌                  | ❌                  |\n| File                   | ❌                  | ❌                  |\n| Board Relation         | ❌                  | ❌                  |\n| Mirror                 | ❌                  | ❌                  |\n| Vote                   | ❌                  | ❌                  |\n| Subitems               | ❌                  | ❌                  |\n\n\n## Contributing\n\nContributions are welcome! Please read the [contributing guidelines](CONTRIBUTING.md) first.\n\n## License\n\nThis project is licensed under the BSD 3-Clause License - see the [LICENSE](LICENSE) file for details.\n\n## Contact\n\nFor any questions or issues, please open an issue.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboukepostma%2Fmondaytoframe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fboukepostma%2Fmondaytoframe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboukepostma%2Fmondaytoframe/lists"}