Skip to main content

A customizable PyQt6 notification library based on a Telegram-like design.

Project description

PyQt Custom Notification Library

A highly customizable PyQt6 notification system, inspired by Telegram's desktop notifications.

Features

  • Customizable Appearance: Easily change the background color of notifications.
  • Customizable Buttons: Change the text and action of the 'Reply' button.
  • Customizable Hide All: Change the text and color of the 'Hide all' button.
  • Sound Support: Plays a custom sound (msr.mp3) upon notification display using mpg123 (must be installed separately).
  • Queuing System: Manages multiple notifications gracefully.
  • Animation: Smooth fade-in and fade-out animations.

Installation

Since this is a custom library, you would typically install it from a local source or a private repository.

Dependencies

You must have PyQt6 installed. For sound support, you need the mpg123 player installed on your system.

# Install PyQt6
pip install PyQt6

# Install mpg123 (Linux example)
sudo apt-get install mpg123

Usage

import sys
from PyQt6.QtWidgets import QApplication
from pyqt_custom_notify import get_manager

def main():
    app = QApplication(sys.argv)
    manager = get_manager()

    # 1. Set global customizations
    manager.set_customization(
        default_bg_color="#1E1E1E", # Darker background
        default_reply_text="Action", # Change 'Reply' text
        hide_all_text="Close All", # Change 'Hide all' text
        hide_all_color="#FF5733" # Change 'Hide all' text color to orange
    )

    # 2. Connect to the reply signal
    def handle_reply(title: str, message: str):
        print(f"Custom Action triggered for: {title} Message: {message}")
    
    manager.notificationReplied.connect(handle_reply)

    # 3. Send a custom notification
    manager.sendNotification(
        user_pic_path="userpic1.png", # Image from the resources folder
        title="Custom Title",
        message="This is a fully customized notification!",
        bg_color="#333333", # Override default background for this specific notification
        reply_text="Click Me" # Override default reply text for this specific notification
    )

    # 4. Send a default notification
    manager.sendNotification(
        user_pic_path="userpic2.png",
        title="Default Notification",
        message="This uses the global default settings."
    )

    sys.exit(app.exec())

if __name__ == "__main__":
    main()

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

biontfy-0.1.1.tar.gz (410.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

biontfy-0.1.1-py3-none-any.whl (409.1 kB view details)

Uploaded Python 3

File details

Details for the file biontfy-0.1.1.tar.gz.

File metadata

  • Download URL: biontfy-0.1.1.tar.gz
  • Upload date:
  • Size: 410.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for biontfy-0.1.1.tar.gz
Algorithm Hash digest
SHA256 322e9281f0c8901c1a4abe1eaae1d00dddcb04199f178f95b0d2f264cf711ebc
MD5 b1db7f3ac7ba534c2fe1e5b4ea75b853
BLAKE2b-256 6388045f540deea4ae1c294aef41ef62c1ca80978247214752aef393e7dffd7b

See more details on using hashes here.

File details

Details for the file biontfy-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: biontfy-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 409.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for biontfy-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 00bdee8f1a2c84536455f03569b871a1a214131fd9f7ea86be40d2f1d525ed31
MD5 ab1efc1d794ac36856be9b26032c7b87
BLAKE2b-256 2622e122c30d9b3323a776093a11b9a633989330be21f9dd0b7178ea8b1558b7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page