{"id":16974132,"url":"https://github.com/redphx/apixoo","last_synced_at":"2025-03-22T14:31:33.346Z","repository":{"id":160375110,"uuid":"633633867","full_name":"redphx/apixoo","owner":"redphx","description":"Python package to interact with Divoom Pixoo app's server","archived":false,"fork":false,"pushed_at":"2023-06-24T02:47:37.000Z","size":44,"stargazers_count":22,"open_issues_count":1,"forks_count":2,"subscribers_count":7,"default_branch":"main","last_synced_at":"2024-07-10T12:13:53.270Z","etag":null,"topics":["divoom","pixoo","pixoo-max","pixoo64"],"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/redphx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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-04-28T00:15:02.000Z","updated_at":"2024-06-13T02:45:37.000Z","dependencies_parsed_at":"2024-10-14T01:05:07.911Z","dependency_job_id":"dacf0ca2-2be5-44ca-b28f-334d1e1a4aa4","html_url":"https://github.com/redphx/apixoo","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redphx%2Fapixoo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redphx%2Fapixoo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redphx%2Fapixoo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redphx%2Fapixoo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/redphx","download_url":"https://codeload.github.com/redphx/apixoo/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244217920,"owners_count":20417677,"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":["divoom","pixoo","pixoo-max","pixoo64"],"created_at":"2024-10-14T01:05:05.272Z","updated_at":"2025-03-22T14:31:32.992Z","avatar_url":"https://github.com/redphx.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![PyPI](https://img.shields.io/pypi/v/APIxoo?label=PyPI%20Package)](https://pypi.org/project/APIxoo/)\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n\n# APIxoo\nPython package to interact with Divoom Pixoo app's server.  \nUnlike other packages, this one will only focus on interacting with Divoom Pixoo's server.  \n  \nFor ESP32/Arduino, check [redphx/DivoomClient](https://github.com/redphx/DivoomClient). \n\n## Features\n- [x] Login\n- [x] Decode Divoom's animation formats to GIFs (16x16, 32x32, 64x64).  \n- [x] Get animation by ID\n- [x] Get animations by Category\n- [x] Get animations by Album\n- [ ] Get animations by User\n- [ ] Search animations \u0026 users\n- [ ] Like/Dislike animation\n- [ ] Comment on animation\n- [ ] Upload animations\n\n## Install\n```\npip install APIxoo\n```\n\n## Example\n```python\nfrom apixoo import APIxoo, GalleryCategory, GalleryDimension\n\n# Divoom account\nEMAIL = 'em@il.com'\nMD5_PASSWORD = 'deadc0ffee...'\n\n# Also accept password string with \"password='password'\"\napi = APIxoo(EMAIL, md5_password=MD5_PASSWORD)\nstatus = api.log_in()\nif not status:\n    print('Login error!')\nelse:\n    files = api.get_category_files(\n        GalleryCategory.RECOMMEND,\n        dimension=GalleryDimension.W64H64,\n        page=1,\n        per_page=20,\n    )\n\n    for info in files:\n        print(info)\n        pixel_bean = api.download(info)\n        if pixel_bean:\n            pixel_bean.save_to_gif(f'{info.gallery_id}.gif', scale=5)\n```\n\n*To be updated...*  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fredphx%2Fapixoo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fredphx%2Fapixoo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fredphx%2Fapixoo/lists"}