{"id":22452387,"url":"https://github.com/dpeite/py-glo-board","last_synced_at":"2025-08-02T00:32:52.884Z","repository":{"id":62580660,"uuid":"178584464","full_name":"dpeite/py-glo-board","owner":"dpeite","description":"A python library to help interact with GitKraken Glo Boards API","archived":false,"fork":false,"pushed_at":"2019-11-13T14:55:32.000Z","size":20,"stargazers_count":5,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-11T18:50:38.024Z","etag":null,"topics":["api","api-rest","gitkraken","gitkraken-glo","glo-board","pypi-packages","python","python36"],"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/dpeite.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}},"created_at":"2019-03-30T16:36:56.000Z","updated_at":"2021-11-03T08:37:31.000Z","dependencies_parsed_at":"2022-11-03T20:14:53.094Z","dependency_job_id":null,"html_url":"https://github.com/dpeite/py-glo-board","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/dpeite/py-glo-board","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dpeite%2Fpy-glo-board","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dpeite%2Fpy-glo-board/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dpeite%2Fpy-glo-board/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dpeite%2Fpy-glo-board/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dpeite","download_url":"https://codeload.github.com/dpeite/py-glo-board/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dpeite%2Fpy-glo-board/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268317585,"owners_count":24231385,"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","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","api-rest","gitkraken","gitkraken-glo","glo-board","pypi-packages","python","python36"],"created_at":"2024-12-06T06:11:01.845Z","updated_at":"2025-08-02T00:32:52.616Z","avatar_url":"https://github.com/dpeite.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# py-glo-board\n\n\u003cp align=\"center\"\u003e\n    \u003cimg align=\"center\" src=\"https://cdn.worldvectorlogo.com/logos/gitkraken.svg\" width=\"50%\" height=\"50%\" title=\"Glo Boards\"\u003e\n\u003c/p\u003e\n\n\u003eA python library to help interact with GitKraken [Glo Boards API](https://support.gitkraken.com/developers/api/)\n\u003cbr\u003e\n\n## Supported Endpoints \u0026 Features\n\n**API Endpoints:**\n\u003eThis package supports the following v1 [Glo Boards API endpoints](https://gloapi.gitkraken.com/v1/docs/)  \n\n**Boards**\n\n- [x] Get Boards\n- [x] Create Board\n- [x] Get Boards by ID\n- [x] Edit Board\n- [x] Delete Board\n\n**Columns**\n- [x] Create column\n- [x] Edit column\n- [x] Delete column\n\n**Cards**\n- [x] Get Cards\n- [x] Create Card\n- [X] Create Cards batch\n- [x] Get Card By ID\n- [x] Edit Card\n- [x] Delete Card\n- [x] Get Cards By Column ID\n\n**Labels**\n- [x] Create Label\n- [x] Edit Label\n- [x] Delete Label\n\n**Attachments**\n- [X] Get Attachments\n- [X] Create Attachment\n\n**Comments**\n- [x] Get Comments By Card ID\n- [x] Create Comment\n- [x] Edit Comment\n- [x] Delete Comment\n\n**User**\n- [x] Get User\n\n## Requirements\nPython 3.6 or higher\n\n## Installing\n \n```bash\npip install py-glo-board\n```\n\n## Example\n```python\nfrom py_glo_boards_api import GloBoard, types\n\ngloboard = GloBoard('\u003cYOUR_PAT_TOKEN_HERE\u003e')\n\n# List all boards available (Only gets the id and the name of the board)\ngloboard.get_boards()\n\n# Or select the fields you need, with the options available in the Glo api\nfields=['archived_columns', 'archived_date', 'columns', 'created_by', 'created_date', 'invited_members', 'labels', 'members', 'name']\nboards = globoard.get_boards(fields, per_page=3)\n\n# Get card\ngloboard.get_card('\u003cBOARD_ID\u003e', '\u003cCARD_ID\u003e').to_dict()\n\n```\n\n## FAQ\nPlease refer to [Git Kraken Documentation](https://support.gitkraken.com/developers/overview/) for any\nfurther reading.\n## License\n\n[MIT]: https://opensource.org/licenses/MIT\n\nThe source code for py-glo-board is released under the [MIT License][MIT].\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdpeite%2Fpy-glo-board","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdpeite%2Fpy-glo-board","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdpeite%2Fpy-glo-board/lists"}