Fire TV Remote Library
Project description
pyfiretvremote
pyfiretvremote is an asynchronous Python library designed to provide robust control over your Amazon Fire TV devices. It allows you to send remote commands, manage applications, and handle the pairing process programmatically, making it ideal for home automation, custom remote applications, or integration into larger systems.
Features
- Asynchronous Operations: Built with
asyncioandhttpxfor non-blocking network requests. - Remote Control: Send key presses (up, down, select, home, back, volume, etc.) and media commands (play/pause, next/previous, rewind/fast-forward).
- Pairing and Authentication: Programmatically handle the pairing process with your Fire TV.
- Device Information: Retrieve information about connected Fire TV devices and installed applications.
- Context Manager: Use
FireTvRemoteas an asynchronous context manager for reliable connection management.
Installation
# Installing from PyPI
$ pip install pyfiretvremote
Usage
Pairing a New Device
The easiest way to pair a new device is to use the firetv-pair command-line tool. After installing the package, run the following command and follow the prompts:
$ firetv-pair --host YOUR_FIRETV_IP_ADDRESS
The tool will display a PIN on your TV. Enter the PIN in the terminal, and the tool will print a client_token. Save this token for future use.
Basic Control
Here's how to connect to your Fire TV and send a command using the client_token you obtained during pairing:
import asyncio
from pyfiretvremote import FireTvRemote
async def main():
# Replace with your Fire TV's IP address and your saved client token
firetv_host = "YOUR_FIRETV_IP_ADDRESS"
api_key = "YOUR_API_KEY" # Use the API key configured on your Fire TV
saved_client_token = "YOUR_SAVED_CLIENT_TOKEN"
async with FireTvRemote(
host=firetv_host,
api_key=api_key,
client_token=saved_client_token
) as remote:
print(f"Connected to Fire TV at {firetv_host}")
# Example: Send a 'KEY_HOMEPAGE' command
await remote.send_command("KEY_HOMEPAGE")
print("Sent KEY_HOMEPAGE command.")
if __name__ == "__main__":
asyncio.run(main())
Advanced Usage
For more advanced usage examples, including how to bind keyboard keys to remote control actions, please see the demo script in the scripts/ directory of the project repository.
FireTvRemote API Overview
The FireTvRemote class provides the following key asynchronous methods:
async with FireTvRemote(...): Connects to the Fire TV and ensures proper disconnection.send_command(command: str, key_action_type: Optional[str] = None): Sends a key or media command.command: A string representing the key (e.g., "KEY_UP", "KEY_ENTER", "KEY_PLAYPAUSE").key_action_type: Optional, can be "keyDown" or "keyUp" for specific key actions.
show_authentication_challenge(): Initiates the pairing process, displaying a PIN on the Fire TV.verify_pin(pin: str): Verifies the entered PIN and returns aclient_token.get_apps(): Retrieves a list of installed applications.open_app(app_id: str): Opens a specific application by its ID (TODO: Phase 2).get_device_info(): Retrieves information about the Fire TV device.get_keyboard_info(): Retrieves keyboard-related information.open_firetv_settings(): Opens the Fire TV settings (TODO: Phase 2).ring_remotes(): Makes connected remotes ring.voice_command(action: str): Sends a voice command (TODO: Phase 2).send_keyboard_string(keyboard_text_request_body): Sends a string to the Fire TV keyboard (TODO).send_keyboard_text(keyboard_text_request_body): Sends text to the Fire TV keyboard (TODO).
Contributing
Contributions are welcome! Please refer to the DEVELOPMENT.md for setup and contribution guidelines.
Project details
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyfiretvremote-0.5.0.tar.gz.
File metadata
- Download URL: pyfiretvremote-0.5.0.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62b3574baa7fa060ac9474b767e36a89a3ab3df691a1146b4de36679e8f89a84
|
|
| MD5 |
74bc55ade8d422de249c4a255425fa27
|
|
| BLAKE2b-256 |
2c0e9be9881d5b8c729fb2b8801a7a573e26fb81096673b664a1ad80c2ff8706
|
File details
Details for the file pyfiretvremote-0.5.0-py3-none-any.whl.
File metadata
- Download URL: pyfiretvremote-0.5.0-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d9902d83cf532ffb772f6fa40ad2074977312df1c65090b0321b535dfc443a5
|
|
| MD5 |
f8aa4b06def6c68e625164c70866162c
|
|
| BLAKE2b-256 |
8636e0f3c07123a76eaaf7cdc14fd754e6bdddedd98edc42f9ffe5e611ccd382
|