A simple Python API for Tile® Bluetooth trackers
Project description
📡 pytile: A simple Python API for Tile® Bluetooth trackers
pytile
is a simple Python library for retrieving information on
Tile® Bluetooth trackers (including last location and more).
This library is built on an unpublished, unofficial Tile API; it may alter or cease operation at any point.
NOTE: Version 5.0.0
Version 5.0.0 is a complete re-architecture of pytile
– as such, the API has changed.
Please read the documentation carefully!
Python Versions
pytile
is currently supported on:
- Python 3.10
- Python 3.11
- Python 3.12
Installation
pip install pytile
Usage
Getting an API Object
pytile
usage starts with an aiohttp
ClientSession
– note that this
ClientSession is required to properly authenticate the library:
import asyncio
from aiohttp import ClientSession
from pytile import async_login
async def main() -> None:
"""Run!"""
async with ClientSession() as session:
api = await async_login("<EMAIL>", "<PASSWORD>", session)
asyncio.run(main())
If for some reason you need to use a specific client UUID (to, say, ensure that the Tile API sees you as a client it's seen before) or a specific locale, you can do so easily:
import asyncio
from aiohttp import ClientSession
from pytile import async_login
async def main() -> None:
"""Run!"""
async with ClientSession() as session:
api = await async_login(
"<EMAIL>", "<PASSWORD>", session, client_uuid="MY_UUID", locale="en-GB"
)
asyncio.run(main())
Getting Tiles
Tile Premium Required: No
import asyncio
from aiohttp import ClientSession
from pytile import async_login
async def main() -> None:
"""Run!"""
async with ClientSession() as session:
api = await async_login("<EMAIL>", "<PASSWORD>", session)
tiles = await api.async_get_tiles()
asyncio.run(main())
The async_get_tiles
coroutine returns a dict with Tile UUIDs as the keys and Tile
objects as the values.
The Tile
Object
The Tile object comes with several properties:
accuracy
: the location accuracy of the Tilealtitude
: the altitude of the Tilearchetype
: the internal reference string that describes the Tile's "family"dead
: whether the Tile is inactivefirmware_version
: the Tile's firmware versionhardware_version
: the Tile's hardware versionkind
: the kind of Tile (e.g.,TILE
,PHONE
)last_timestamp
: the timestamp at which the current attributes were receivedlatitude
: the latitude of the Tilelongitude
: the latitude of the Tilelost
: whether the Tile has been marked as "lost"lost_timestamp
: the timestamp at which the Tile was last marked as "lost"name
: the name of the Tileuuid
: the Tile UUIDvisible
: whether the Tile is visible in the mobile app
import asyncio
from aiohttp import ClientSession
from pytile import async_login
async def main() -> None:
"""Run!"""
async with ClientSession() as session:
api = await async_login("<EMAIL>", "<PASSWORD>", session)
tiles = await api.async_get_tiles()
for tile_uuid, tile in tiles.items():
print(f"The Tile's name is {tile.name}")
# ...
asyncio.run(main())
In addition to these properties, the Tile
object comes with an async_update
coroutine
which requests new data from the Tile cloud API for this Tile:
import asyncio
from aiohttp import ClientSession
from pytile import async_login
async def main() -> None:
"""Run!"""
async with ClientSession() as session:
api = await async_login("<EMAIL>", "<PASSWORD>", session)
tiles = await api.async_get_tiles()
for tile_uuid, tile in tiles.items():
await tile.async_update()
asyncio.run(main())
Getting Premium Tile's History
Tile Premium Required: Yes
You can retrieve a Tile's history by calling its async_history
coroutine:
import asyncio
from datetime import datetime
from aiohttp import ClientSession
from pytile import async_login
async def main() -> None:
"""Run!"""
async with ClientSession() as session:
api = await async_login("<EMAIL>", "<PASSWORD>", session)
tiles = await api.async_get_tiles()
for tile_uuid, tile in tiles.items():
# Define a start and end datetime to get history for:
start = datetime(2023, 1, 1, 0, 0, 0)
end = datetime(2023, 1, 31, 0, 0, 0)
history = await tile.async_history(start, end)
# >>> { "version": 1, "revision": 1, ... }
asyncio.run(main())
Contributing
Thanks to all of our contributors so far!
- Check for open features/bugs or initiate a discussion on one.
- Fork the repository.
- (optional, but highly recommended) Create a virtual environment:
python3 -m venv .venv
- (optional, but highly recommended) Enter the virtual environment:
source ./.venv/bin/activate
- Install the dev environment:
script/setup
- Code your new feature or bug fix on a new branch.
- Write tests that cover your new functionality.
- Run tests and ensure 100% code coverage:
poetry run pytest --cov pytile tests
- Update
README.md
with any new documentation. - Submit a pull request!
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
Built Distribution
File details
Details for the file pytile-2023.12.0.tar.gz
.
File metadata
- Download URL: pytile-2023.12.0.tar.gz
- Upload date:
- Size: 10.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.12.1 Linux/6.2.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd0a00e0c4884c35baac523ae0ea1c0222aea2ec1485c9830aa3909191ad3b34 |
|
MD5 | 72b6ae4d2968f2f8109114c3fd712d1f |
|
BLAKE2b-256 | ea048893c318486e35acff0522ce6600299d2b8bb08557795390eb1b2b1f950e |
File details
Details for the file pytile-2023.12.0-py3-none-any.whl
.
File metadata
- Download URL: pytile-2023.12.0-py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.12.1 Linux/6.2.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 164c18e834977b7be3236083c0338e0ab7ada74229ce408c7657ada1ed69d8a9 |
|
MD5 | 9793bf9040d3437b1d293022febbb466 |
|
BLAKE2b-256 | 0aed229dd6b9197b363dfc3b786268808cec8df5dcd9bfc051be150212e7d9fb |