{"id":20286126,"url":"https://github.com/chaoticbyte/yahuelib","last_synced_at":"2025-05-07T19:31:23.843Z","repository":{"id":182879852,"uuid":"669241212","full_name":"ChaoticByte/YaHueLib","owner":"ChaoticByte","description":"Yet Another Philips Hue API Library for Python","archived":true,"fork":false,"pushed_at":"2023-08-04T17:53:04.000Z","size":22,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-04T04:11:52.668Z","etag":null,"topics":["lighting","philips-hue","philips-hue-api","python","smarthome"],"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/ChaoticByte.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-07-21T17:37:18.000Z","updated_at":"2024-08-13T19:48:54.000Z","dependencies_parsed_at":"2024-11-14T14:35:57.217Z","dependency_job_id":"778b2167-914a-498e-82ee-6681b64812a7","html_url":"https://github.com/ChaoticByte/YaHueLib","commit_stats":null,"previous_names":["chaoticbyte/yahuelib"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChaoticByte%2FYaHueLib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChaoticByte%2FYaHueLib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChaoticByte%2FYaHueLib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChaoticByte%2FYaHueLib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ChaoticByte","download_url":"https://codeload.github.com/ChaoticByte/YaHueLib/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252943722,"owners_count":21829296,"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":["lighting","philips-hue","philips-hue-api","python","smarthome"],"created_at":"2024-11-14T14:31:13.745Z","updated_at":"2025-05-07T19:31:18.783Z","avatar_url":"https://github.com/ChaoticByte.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# YaHue Lib\n\nYet Another Philips Hue API Library for Python. This project only implements home subset of the API.\n\n## Getting Started\n\nBefore you can use the API of your Hue Bridge, you have to create an API user for it.  \nSee https://developers.meethue.com/develop/get-started-2/\n\n## Supported Features\n\n- 💡 Lights\n    - reachable\n    - on\n    - brightness\n    - hue\n    - saturation\n    - white color temperature\n    - alert\n    - alert_long\n- 🏠 Groups (Zones and Rooms)\n    - any_on\n    - all_on\n    - brightness\n    - hue\n    - saturation\n    - white color temperature\n    - alert\n    - alert_long\n- 👋 Motion Sensors\n    - reachable\n    - on\n    - battery\n    - sensitivity\n    - sensitivitymax\n    - ledindication\n    - presence\n\n## Documentation\n\nsee [DOCUMENTATION.md](DOCUMENTATION.md)\n\n## Example\n\n```python\n#!/usr/bin/env python3\n\n# from yahuelib.controller import LightController\nfrom yahuelib.controller import GroupController\nfrom yahuelib.utils import rgb_to_hsv\n\nif __name__ == \"__main__\":\n    home = GroupController.from_name(\"Home\", \"192.168.0.120\", \"XXXXXXXXXXXXXXXXXXX-XXXXXXXXXXXXXXXXXXXX\")\n    if not home.check_all_on():\n        home.set_all_on(True)\n    color = rgb_to_hsv(255, 220, 100)\n    home.set_hue(color[0])\n    home.set_saturation(color[1])\n    home.set_brightness(254)\n    home.alert()\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchaoticbyte%2Fyahuelib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchaoticbyte%2Fyahuelib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchaoticbyte%2Fyahuelib/lists"}