Skip to main content

A package to display a notification or overlay

Project description

This is a package that can make notifis and overlays in an easy way

example notification:

from darkdisplay.notification import DisplayNotification

# make an example notification
DisplayNotification(
    message="Hello World!",
    title_text="Title",
    window_size="250x150",
    window_timeout=5, # time for the window to stay open in seconds
    debug=True
)

# auto displays and does not return anything
# to wait until the notification is done displaying pass wait_until_closed=True, for example:
# make an example notification
DisplayNotification(
    message="Hello World!",
    title_text="Title",
    window_size="250x150",
    debug=True,
    window_timeout=5,
    wait_until_closed=True,
)

example overlay:

from darkdisplay.overlay import Overlay

# make an example overlay
overlay = Overlay(
    message="your text here...",
    window_size="250x85",
    debug=True,
    start_hidden=True
)

# starts overlay
overlay.start()

# shows overlay
overlay.show()

# hide overlay
overlay.hide()

# stop overlay
overlay.close()

# update message/overlay
overlay.update_message(
    message="updated message"
)

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

darkdisplay-0.0.9.tar.gz (16.2 kB view hashes)

Uploaded Source

Built Distribution

darkdisplay-0.0.9-py3-none-any.whl (17.2 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