Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hyperb1iss/signalrgb-python
Python library for SignalRGB
https://github.com/hyperb1iss/signalrgb-python
client library python signalrgb
Last synced: 4 days ago
JSON representation
Python library for SignalRGB
- Host: GitHub
- URL: https://github.com/hyperb1iss/signalrgb-python
- Owner: hyperb1iss
- License: apache-2.0
- Created: 2024-07-20T09:35:10.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-14T04:34:21.000Z (2 months ago)
- Last Synced: 2024-11-01T01:04:54.539Z (15 days ago)
- Topics: client, library, python, signalrgb
- Language: Python
- Homepage:
- Size: 807 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: docs/contributing.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# 🌈 signalrgb-python
[![CI/CD](https://github.com/hyperb1iss/signalrgb-python/actions/workflows/ci-cd.yml/badge.svg)](https://github.com/hyperb1iss/signalrgb-python/actions)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![PyPI version](https://img.shields.io/pypi/v/signalrgb)](https://pypi.org/project/signalrgb)*A powerful Python client library and CLI for controlling [SignalRGB Pro](https://signalrgb.com)*
[Features](#features) • [Installation](#installation) • [Usage](#usage) • [API Reference](#api-reference) • [Development](#development) • [Contributing](#contributing) • [License](#license)
- 📋 List available lighting effects and presets
- 🔍 Get detailed information about specific effects
- 🎨 Apply effects and presets to your devices with ease
- 🖼️ Manage and switch between different layouts
- 🔆 Control brightness levels
- 🔌 Enable or disable the canvas
- 🖥️ User-friendly command-line interface with intuitive subcommands
- 🐍 Python client library for seamless integration into your projects
- 🔐 Error handling and connection management
- 🔄 Automatic effect caching for improved performanceYou can install signalrgb-python using pip:
```bash
pip install signalrgb
```Or if you prefer to use Poetry:
```bash
poetry add signalrgb
```### Prerequisites
- Python 3.12 or higher
- [SignalRGB Pro](https://www.signalrgb.com/pro/) (required for API access)This library uses the [SignalRGB REST API](https://docs.signalrgb.com/signalrgb-api), which is only available in SignalRGB Pro.
### Command-line Interface
signalrgb-python comes with an intuitive command-line interface for easy interaction with your SignalRGB setup. The CLI now uses a subcommand structure for better organization and extensibility.
```bash
# List all available effects
signalrgb effect list# Get details of a specific effect
signalrgb effect "Psychedelic Dream"# Apply an effect
signalrgb effect apply "Rave Visualizer"# List presets for the current effect
signalrgb preset list# Apply a preset to the current effect
signalrgb preset apply "My Fancy Preset"# List available layouts
signalrgb layout list# Set the current layout
signalrgb layout set "My Gaming Layout"# Get the current effect
signalrgb effect# Set brightness level (0-100)
signalrgb canvas brightness 75# Get current brightness level
signalrgb canvas brightness# Enable the canvas
signalrgb canvas enable# Disable the canvas
signalrgb canvas disable
```You can also specify a custom host and port:
```bash
signalrgb --host hyperia.home --port 16038 effect list
```For a full list of available commands and options, use:
```bash
signalrgb --help
```### Python Library
Integrate signalrgb-python into your own Python projects with ease:
```python
from signalrgb.client import SignalRGBClient# Initialize the client
client = SignalRGBClient(host="hyperia.home", port=16038)# List all effects
effects = client.get_effects()
for effect in effects:
print(f"Effect: {effect.attributes.name}")# Apply an effect
client.apply_effect_by_name("Rain")# List presets for the current effect
current_effect = client.get_current_effect()
presets = client.get_effect_presets(current_effect.id)
for preset in presets:
print(f"Preset: {preset.id}")# Apply a preset
client.apply_effect_preset(current_effect.id, "Cool Preset")# Get available layouts
layouts = client.get_layouts()
for layout in layouts:
print(f"Layout: {layout.id}")# Set the current layout
client.current_layout = "Gaming Setup"# Control brightness
client.brightness = 50
print(f"Current brightness: {client.brightness}")# Enable/disable the canvas
client.enabled = True
print(f"Canvas enabled: {client.enabled}")
```### Error Handling
The client provides custom exceptions for different types of errors:
```python
from signalrgb.client import SignalRGBClient, ConnectionError, APIError, NotFoundErrorclient = SignalRGBClient()
try:
client.apply_effect_by_name("Non-existent Effect")
except ConnectionError as e:
print(f"Connection failed: {e}")
except NotFoundError as e:
print(f"Effect not found: {e}")
except APIError as e:
print(f"API error occurred: {e}")
```For detailed information about the available methods and classes, please refer to our [API Documentation](https://hyperb1iss.github.io/signalrgb-python/).
To set up the development environment:
1. Clone the repository:
```bash
git clone https://github.com/hyperb1iss/signalrgb-python.git
cd signalrgb-python
```
2. Install Poetry if you haven't already: `pip install poetry`
3. Install dependencies: `poetry install`
4. Activate the virtual environment: `poetry shell`To run tests:
```bash
pytest
```Check out our [Development Guide](https://hyperb1iss.github.io/signalrgb-python/development/) for more information!
Have a fix or new feature that you want to add? That's amazing! You're amazing!
1. Fork the repository
2. Create a new branch: `git checkout -b feature-branch-name`
3. Make your changes and commit them: `git commit -m 'Add some feature'`
4. Push to the branch: `git push origin feature-branch-name`
5. Submit a pull requestPlease make sure to update tests as appropriate and adhere to the project's coding standards.
This project is licensed under the Apache License 2.0. See the [LICENSE](LICENSE) file for details.
---
📚 [Documentation](https://hyperb1iss.github.io/signalrgb-python/) • 🐛 [Report Bug](https://github.com/hyperb1iss/signalrgb-python/issues) • 💡 [Request Feature](https://github.com/hyperb1iss/signalrgb-python/issues)
## 🙏 Acknowledgements
This project is not officially associated with SignalRGB. It's an independent client library created by the community for the community. Please do not report issues related to this client to the SignalRGB team.
---
Created by [Stefanie Jane 🌠](https://github.com/hyperb1iss)
If you find this project useful, consider [buying me a Monster Ultra Violet!](https://ko-fi.com/hyperb1iss)! ⚡️