{"id":18189878,"url":"https://github.com/bmedicke/anova.py","last_synced_at":"2025-11-05T23:02:05.404Z","repository":{"id":54573624,"uuid":"99226307","full_name":"bmedicke/anova.py","owner":"bmedicke","description":"Python 3.6+ module to interface with the Anova 👨🏽‍🍳 Sous-vide cooker ⏱️ private API.","archived":false,"fork":false,"pushed_at":"2023-04-25T05:13:36.000Z","size":27,"stargazers_count":60,"open_issues_count":2,"forks_count":8,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-06-04T20:26:18.217Z","etag":null,"topics":["anova","home-automation","sous-vide"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bmedicke.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2017-08-03T11:38:37.000Z","updated_at":"2025-03-28T08:02:51.000Z","dependencies_parsed_at":"2025-04-02T05:33:00.413Z","dependency_job_id":"d49db610-3a52-4a95-aa79-05c2e733f43a","html_url":"https://github.com/bmedicke/anova.py","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bmedicke/anova.py","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmedicke%2Fanova.py","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmedicke%2Fanova.py/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmedicke%2Fanova.py/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmedicke%2Fanova.py/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bmedicke","download_url":"https://codeload.github.com/bmedicke/anova.py/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmedicke%2Fanova.py/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":282911787,"owners_count":26747782,"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-11-05T02:00:05.946Z","response_time":58,"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":["anova","home-automation","sous-vide"],"created_at":"2024-11-03T04:04:24.232Z","updated_at":"2025-11-05T23:02:05.363Z","avatar_url":"https://github.com/bmedicke.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"### what is it?\n\nPython 3.6 module to interface with the Anova private API.\n\n\n### motivation\n\n\u003e API access is something we’re considering for the future, and we’re researching the ways people would want to interact with it. \n\nThat was [more than a year](https://www.reddit.com/r/sousvide/comments/3p1kas/hello_from_anova_ask_us_anything_about_the_wifi_pc/cw6qoh7/?st=ixa812m5\u0026sh=86182a3b\u0026context=10) ago. This is a little nudge ;)\n\n### how to use it\n\n```python\nimport anova\n\ncooker_id = 'anova xxx-xxxxxxxxxxx'\nsecret = 'xxxxxxxxxx'\n\ncooker = anova.AnovaCooker(cooker_id, secret)\n\n# get status of the device. all methods return json:\nprint(cooker.get_status())\n```\n\n```json\n{\n  \"status\": {\n      \"cooker_id\": \"anova xxx-xxxxxxxxxxx\",\n      \"current_temp\": 27.3,\n      \"is_running\": false,\n      \"speaker_mode\": true,\n      \"target_temp\": 30,\n      \"temp_unit\": \"c\"\n  }\n}\n```\n\nExamples:\n\n```python\n# set temperature and start it:\ncooker.target_temperature = 60\ncooker.running = True\n\n# check if running:\nprint(cooker.running)\n#  True\n\n# get current temperature and unit:\nprint(cooker.current_temperature)\n#  59.8\nprint(cooker.temperature_unit)\n# 'c'\n\n# to use the timer we have to create a job.\n# 45 degrees (currently set unit), 900 seconds:\ncooker.create_job(45, 900)\n\n# 80 degrees Fahrenheit, 600 seconds:\ncooker.create_job(80, 600, 'f')\n```\n\nTODO: add documentation\n\n### installation for development\n\n```sh\n# clone it and cd to the project folder.\npip3 install -e .\n```\n\n### getting your cooker_id and secret\n\nYou could use `anova.util.get_secret_cookerid` with ip address as argument.\n\n```python\nfrom anova.util import get_secret_cookerid\n\ncooker_id, secret = get_secret_cookerid(\"192.168.1.234\")\nprint(f\"Cooker id: {cooker_id}\")\nprint(f\"Secret: {secret}\")\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbmedicke%2Fanova.py","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbmedicke%2Fanova.py","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbmedicke%2Fanova.py/lists"}