{"id":19640149,"url":"https://github.com/gearplug/podio-python","last_synced_at":"2025-10-08T17:11:18.435Z","repository":{"id":194830155,"uuid":"691649619","full_name":"GearPlug/podio-python","owner":"GearPlug","description":"podio-python is an API wrapper for Podio, written in Python.","archived":false,"fork":false,"pushed_at":"2023-09-29T15:18:22.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-29T02:22:08.622Z","etag":null,"topics":["api","oauth2","podio","project-management","python","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,"publiccode":null,"codemeta":null}},"created_at":"2023-09-14T15:44:43.000Z","updated_at":"2025-05-12T03:45:54.000Z","dependencies_parsed_at":"2023-09-29T17:40:50.447Z","dependency_job_id":null,"html_url":"https://github.com/GearPlug/podio-python","commit_stats":null,"previous_names":["gearplug/podio-python"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/GearPlug/podio-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Fpodio-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Fpodio-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Fpodio-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Fpodio-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GearPlug","download_url":"https://codeload.github.com/GearPlug/podio-python/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Fpodio-python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":277746997,"owners_count":25870066,"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-09-30T02:00:09.208Z","response_time":75,"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","oauth2","podio","project-management","python","webhooks","wrapper"],"created_at":"2024-11-11T14:04:49.324Z","updated_at":"2025-10-08T17:11:18.408Z","avatar_url":"https://github.com/GearPlug.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# podio-python\n![](https://img.shields.io/badge/version-0.1.9-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*podio-python* is an API wrapper for Podio, written in Python.  \nThis library uses Oauth2 for authentication.\n## Installing\n```\npip install podio-python\n```\n## Usage\n```python\n# if you have an access token:\nfrom podio.client import Client\nclient = Client(access_token=access_token)\n```\n```python\n# if you are using Oauth2 to get an access_token:\nfrom podio.client import Client\nclient = Client(client_id=client_id, client_secret=client_secret, redirect_uri=redirect_uri)\n```\nTo obtain and set an access token:\n1. **Get authorization URL**\n```python\nurl = client.authorization_url(state=None)\n```\n2. **Get access token using code**\n```python\nresponse = client.get_access_token(code)\n```\n3. **Set access token**\n```python\nclient.set_token(access_token)\n```\nCheck more information about Podio Oauth: https://developers.podio.com/authentication/server_side\n#### Refresh token\nIf your access token expired you can use your refresh token to obtain a new one:\n```python\ntoken = client.refresh_token(refresh_token)\n# And then set your token again:\nclient.set_token(token[\"access_token\"])\n```\n#### Get user status\n```python\nuser = client.get_user_status()\n```\n### Organizations\n#### List organizations\n```python\norgs = client.list_organizations()\n```\n#### List organization spaces\n```python\nspaces = client.get_organization_spaces(org_id)\n```\n#### Get space\n```python\nspaces = client.get_space(space_id)\n```\n#### List space members\n```python\nmembers = client.get_space_members(space_id)\n```\n### Applications\n#### List applications\n```python\napps = client.list_applications()\n```\n#### Get application\n```python\napp = client.get_application(app_id)\n```\n#### Get item\n```python\nitem = client.get_item(item_id)\n```\n#### Create item\n```python\nbody = {\"fields\": {\"title\": \"Juan Assignment\", \"status\": 1}}\nitem = client.create_item(app_id, body)\n```\n#### Get task\n```python\ntask = client.get_task(task_id)\n```\n#### Create task\n```python\nbody = {\"text\": \"Text of the task\", \"description\": \"desc\"}\ntask = client.create_task(body)\n```\n#### Get task labels\n```python\nlabels = client.get_task_labels()\n```\n### Webhooks\n#### List webhooks\n```python\nhooks = client.list_webhooks(ref_type, ref_id)\n```\n#### Create webhook\n```python\nhook = client.create_webhook(ref_type, ref_id, url, hook_type)\n```\n#### Validate hook verification\n```python\nclient.validate_hook_verification(webhook_id, code)\n```\n#### Delete webhook\n```python\nclient.delete_webhook(webhook_id)\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgearplug%2Fpodio-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgearplug%2Fpodio-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgearplug%2Fpodio-python/lists"}