Asynchronous Python library for PetKit's API
Project description
PetKitAIO
Asynchronous Python library for PetKit's API.
This is PetKit's undocumented API. With that said, future changes made by PetKit may break this library. The API endpoint used is determined based on the region your account is locked to. Although support has been added for the PetKit Asia API endpoint, I have not personally tested it.
Currently Supported Devices:
- D3 Feeder (Fresh Element Infinity)
- D4 Feeder (Fresh Element Solo)
- D4s Feeder (Fresh Element Gemini)
- Mini Feeder
- W5 Water Fountain (Eversweet Solo 2)
- W5 Water Fountain (Eversweet 3 Pro)
- W5 Water Fountain (Eversweet 5 Mini)
- T3 Litter Box (Pura X)
- T4 Litter Box (Pura MAX) with/without Pura Air
Important
PetKit accounts can only be logged in on one device at a time. Using this library will result in getting signed out of the mobile app. You can avoid this by creating a secondary account and sharing devices from the main account (except water fountains). However, some device functionality is lost when using a secondary account as well as not being able to share pets between accounts.
This package depends on aiohttp and tzlocal. Python 3.7
or greater is required.
Usage
Creating Client
import asyncio
from petkitaio import PetKitClient
from aiohttp import ClientSession
async def main():
async with ClientSession() as session:
# Create a client using PetKit account email and password
client = PetKitClient('email', 'password', session)
###################################################################################
Examples within the examples section utilize the PetKitClient instance created above
###################################################################################
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
Examples
Retrieving all PetKit devices on account
# See model.py for details regarding Data Classes created
devices = await client.get_petkit_data()
Manual Feeding
# See model.py for details regarding "Feeder" class
# Reusing retrieved devices from above. Note: A valid amount (in grams) will depend on the capabilities of the feeder.
await client.manual_feeding(feeder=devices.feeders[feederid], amount=10)
Change Feeder Setting
# See constants.py FeederSetting class for available settings
# Additional import needed:
from petkitaio.constants import FeederSetting
# Enabling child lock on a D4 feeder. Note: Mini Feeders use a different setting.
# Reusing retrieved devices from above.
await client.update_feeder_settings(feeder=devices.feeders[feederid], setting=FeederSetting.CHILD_LOCK, value=1)
Reset Feeder Desiccant
# Reusing retrieved devices from above.
await client.reset_feeder_desiccant(feeder=devices.feeders[feederid])
Control Water Fountain via BLE Relay
# A valid relay (set up through the PetKit app) is required in order to send commands to the Eversweet 3 Pro
# See constants.py W5Command class for available commands
# Additional import needed:
from petkitaio.constants import W5Command
# Set Water Fountain to Smart Mode. Reusing retrieved devices from above.
await client.control_water_fountain(water_fountain=devices.water_fountains[water_fountain_id], command=W5Command.SMART)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file petkitaio-0.1.3.tar.gz
.
File metadata
- Download URL: petkitaio-0.1.3.tar.gz
- Upload date:
- Size: 17.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9df32cee352c3dbc5ca82588288a46409a2e38a6a84230d177a490b708afcce0 |
|
MD5 | 97b49bc34384fafb0944f8ff00514528 |
|
BLAKE2b-256 | bde2613a1c7618277fa5e95ea943671be0b6d3856681524d951c721844d78cf9 |