Skip to main content

PyQt notifier which shows at bottom right of the desktop screen

Project description

pyqt-notifier

PyQt Windows notifier show at bottom right of the desktop screen

Requirements

PyQt5 >= 5.8

Included package

Setup

python -m pip install pyqt-notifier

Usage

# Informative text is large text at upper part of the notifier window and detailed text is small text at lower part.  

notifierWidget = NotifierWidget(informative_text: str, detailed_text: str)

# You can add some widgets at the bottom of the notifier. Note: This needs more tests.

notifierWidget.addWidgets(widgets: list) 

If you press the escape button or click the exit button on the top right of the notifier window, notifier window will be closed.

Example

from PyQt5.QtWidgets import QApplication

from pyqt_notifier import NotifierWidget



if __name__ == "__main__":

    import sys



    app = QApplication(sys.argv)

    notifierWidget = NotifierWidget()

    notifierWidget.show()

    app.exec_()

Result

image

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

pyqt-notifier-0.0.13.tar.gz (3.7 kB view hashes)

Uploaded Source

Built Distribution

pyqt_notifier-0.0.13-py3-none-any.whl (4.5 kB view hashes)

Uploaded Python 3

Supported by

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