Socket
Socket
Sign inDemoInstall

pyanova-api

Package Overview
Dependencies
1
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    pyanova-api

A Python 3 library for programmatically accessing Anova WiFi-enabled sous vide cookers through the Anova API.


Maintainers
1

Readme

pyanova-api

A Python 3 library for programmatically accessing WiFi-enabled Anova sous vide cookers through the Anova API.

NOTE: This library uses the Anova REST API and has been tested with the Anova Precision Cooker Pro. Make sure your Anova cooker supports WiFi and is already connected. pyanova-api does not support communication over Bluetooth.

Installation

pyanova-api can be installed from either PyPi or can be installed manually by cloning the GitHub repository.

TL;DR installation

pip install pyanova-api

Manual installation

First, clone the GitHub repository: git clone https://github.com/ammarzuberi/pyanova-api.git

Enter the newly created pyanova-api directory and run: pip install .

This should install pyanova-api on your system. You can use it in your own Python scripts like so:

import anova

Cooker ID

You will need your cooker ID to use pyanova-api. This can be easily found in the Anova app when your cooker is connected to WiFi.

On the profile page, click the settings button (top right of the page, cog icon) and choose "Cooker Details."

Screenshot of Cooker Details page

Usage

To get started, first import the AnovaCooker class from anova.

Initializing

from anova import AnovaCooker
cooker = AnovaCooker('your device ID goes here')

The code above initializes the cooker into the cooker variable. Simply initializing the cooker object with cooker state does not require authentication with the Anova API, and as such can be used to obtain information about any cooker as long as you have the cooker ID.

Setting cooker state

There are four state variables that can be modified and pushed to the cooker:

  • Cooker on/off (bool)
  • Cook time (in seconds, int)
  • Target temperature (in Celcius, float)
  • Temperature display unit (C or F)

Before setting the cooker state, you must authenticate with the Anova API. In the current version of pyanova-api, only email/password authentication is supported. You can authenticate yourself in pyanova-api like so:

cooker.authenticate('your email address goes here', 'your password goes here')

Once you're authenticated, starting a new cook that will last 2 hours at 55 degrees Celcius will look like this:

cooker.cook = True
cooker.cook_time = 60 * 60 * 2 # 2 hours in seconds
cooker.target_temp = 55.0

cooker.save()

The cooker.save() method calls the Anova API and starts the cook.

The cooker's display unit is the unit used to display temperature in the Anova app and on the cooker itself. This can be changed like so:

cooker.temp_display_unit = 'F'
cooker.save()

NOTE: The target temperature is always in Celcius. Changing the display temperature does not change this.

Getting cooker state

In addition to the four state variables that can be modified, there are multiple other state variables that can be accessed via the API but are read-only.

Before checking the values of state variables, always make sure they are the most current by calling cooker.update_state(). Calling update_state() after modifying one of the mutable variables but before calling save() will cause the changes to be overwritten with the values from the API.

All the available state variables are:

VariableTypeDescription
job_statusstrThe status of the current job, for example, PREHEATING.
job_time_remainingintThe number of seconds remaining in the job.
heater_duty_cyclefloatThe heater's percentage duty cycle.
motor_duty_cyclefloatThe motor's percentage duty cycle.
wifi_connectedboolThe cooker's WiFi connection status.
wifi_ssidstrThe SSID of the network the cooker is connected to.
device_safeboolIs the device is safe to operate?
water_leakboolIs there a water leak?
water_level_criticalboolIs the water level too low for operation?
water_level_lowboolIs the water level low?
heater_tempfloatThe heater's temperature in Celcius.
triac_tempfloatThe triac's (like a relay) temperature in Celcius.
water_tempfloatThe water's temperature in Celcius.

These state variables can be accessed like so:

cooker.update_state()

wifi_ssid = cooker.wifi_ssid
water_temp = cooker.water_temp

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc