1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
# [](https://github.com/benleb/surepy)
Library & CLI to interact with the Sure Petcare API. [**surepy**](https://github.com/benleb/surepy) lets you monitor and control the Pet Door/Cat Flap Connect ๐ช and the Pet Feeder Connect ๐ฝ by [Sure Petcare](https://www.surepetcare.com).
---
[**surepy**](https://github.com/benleb/surepy) features:
๐ **get an api token** with your account credentials
๐ช **lock/unlock** a door or flap
๐พ get the **location** of **pets** & **devices**
๐ get the **state** and more attributes of **pets** & **devices**
๐ฐ๏ธ get **historic** data & events of pets & devices
๐ฌ get a list of (past) **notifications**
<!-- > **ToC ยท** [Getting Started](#getting-started) ยท [Usage](#usage)ยท [Used by](#used-by) ยท [Acknowledgements](#acknowledgements) **ยท** [Meta](#meta) -->
## Getting Started
[**surepy**](https://github.com/benleb/surepy) is available via [pypi.org](https://pypi.org)
```bash
python3 -m pip install --upgrade surepy
# or
pip install --upgrade surepy
```
there is also a small cli available
```bash
$ surepy --help
Usage: surepy [OPTIONS] COMMAND [ARGS]...
surepy cli ๐พ
https://github.com/benleb/surepy
Options:
--version show surepy version
-j, --json enable json api response output
-t, --token TEXT api token
--help Show this message and exit.
Commands:
devices get devices
locking lock control
notification get notifications
pets get pets
position set pet position
report get pet/household report
token get a token
```
>*the cli **is mainly intended for developing & debugging purposes** and probably has bugs - be careful* ๐พ
## Library example
```python
import asyncio
from os import environ
from pprint import pprint
from typing import Dict, List
from surepy import Surepy
from surepy.entities import SurepyEntity
from surepy.entities.devices import SurepyDevice
from surepy.entities.pet import Pet
async def main():
# # user/password authentication (gets a token in background)
# surepy = Surepy(email=user, password=password)
# token authentication (token supplied via SUREPY_TOKEN env var)
token = environ.get("SUREPY_TOKEN")
surepy = Surepy(auth_token=token)
# list with all pets
pets: List[Pet] = await surepy.get_pets()
for pet in pets:
print(f"\n\n{pet.name}: {pet.state} | {pet.location}\n")
pprint(pet.raw_data())
print(f"\n\n - - - - - - - - - - - - - - - - - - - -\n\n")
# all entities as id-indexed dict
entities: Dict[int, SurepyEntity] = await surepy.get_entities()
# list with alldevices
devices: List[SurepyDevice] = await surepy.get_devices()
for device in devices:
print(f"{device.name = } | {device.serial = } | {device.battery_level = }")
print(f"{device.type = } | {device.unique_id = } | {device.id = }")
print(f"{entities[device.parent_id].full_name = } | {entities[device.parent_id] = }\n")
asyncio.run(main())
```
---
## Naming confusion for *surepetcarebeta* users ๐พ ๐คช ๐คฆ
Sorry for the bad naming and resulting confusion and chaos ๐ To "fix" this, I **renamed *surepetcarebeta* to *sureha***.
| Name | Repo | Type | Description | Need Help?
|---|---|---|---|---|
| **[surepy](https://github.com/benleb/surepy) ๐พ** | [github.com/benleb/surepy](https://github.com/benleb/surepy) | Python Library | Library to interact with the API of Sure Petcare. Also provides Classes for the various Sure Petcare Devicess. Use this if you write an own python tool/app and want to interact with the Sure Petcare API | [Issues](https://github.com/benleb/surepy/issues) |
| **[surepetcare](https://www.home-assistant.io/integrations/surepetcare)**  | [github.com/home-assistant/core](https://github.com/home-assistant/core) | [Home Assistant](https://github.com/home-assistant/core) Integration | **Official Home Assistant Integration** for the Sure Petcare Devices like Doors, Flaps, Feeders, ... | [Issues](https://github.com/home-assistant/core/issues), [HA Forum](https://community.home-assistant.io) |
| | | | | |
| **[sureha](https://github.com/benleb/sureha)** ~~surepetcarebeta~~ ~~[benleb/surepetcare](https://github.com/benleb/sureha)~~ | [github.com/benleb/sureha](https://github.com/benleb/sureha) | [Home Assistant](https://github.com/home-assistant/core) Integration | Home Assistant Integration developed in my own repo without reviews from the HA Team. This can be installed via [HACS](https://hacs.xyz/) and is something like a preview integration **for advanced users**. Usually this provides more (experimental) features and faster fixes but lacks the code quality (reviews) and such from HA | [Issues](https://github.com/benleb/sureha/issues) |
| | | | | |
| **[pethublocal](https://github.com/plambrechtsen/pethublocal)** | [github.com/plambrechtsen/pethublocal](https://github.com/plambrechtsen/pethublocal) | [Home Assistant](https://github.com/home-assistant/core) Integration | Home Assistant Integration developed by [@plambrechtsen](https://github.com/plambrechtsen) which works **completely independent from Sure Petcare**. Check outs his repo for more information! | [Issues](https://github.com/plambrechtsen/pethublocal/issues), [HA Forum](https://community.home-assistant.io) |
---
## Used by
* [Sure Petcare](https://www.home-assistant.io/integrations/surepetcare/) integration in [Home Assistant](https://www.home-assistant.io/)
Feel free to add you project!
## Acknowledgments
* Thanks to all the people who provided information about devices I do not own myself, thanks!
* Thanks to [@rcastberg](https://github.com/rcastberg) for hist previous work on the [Sure Petcare](https://www.surepetcare.com) API ([github.com/rcastberg/sure_petcare](https://github.com/rcastberg/sure_petcare))
* Thanks to [@wei](https://github.com/wei) for the header image generator ([github.com/wei/socialify](https://github.com/wei/socialify))
## Meta
**Ben Lebherz**: *cat lover ๐พ developer & maintainer* - [@benleb](https://github.com/benleb) | [@ben_leb](https://twitter.com/ben_leb)
<!-- See also the list of [contributors](CONTRIBUTORS) who participated in this project. -->
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details
|