All Projects → jithurjacob → Windows 10 Toast Notifications

jithurjacob / Windows 10 Toast Notifications

Licence: mit
Python library to display Windows 10 Toast Notifications

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Windows 10 Toast Notifications

Quick Screen Recorder
Lightweight desktop screen recorder for Windows.
Stars: ✭ 80 (-88.1%)
Mutual labels:  win32, desktop-application
Swift Win32
A Win32 application framework for Swift
Stars: ✭ 586 (-12.8%)
Mutual labels:  win32
Wxwidgets
wxWidgets is a free and open source cross-platform C++ framework for writing advanced GUI applications using native controls.
Stars: ✭ 3,994 (+494.35%)
Mutual labels:  win32
Mindmapp
🚀 Web application to draw mind maps.
Stars: ✭ 401 (-40.33%)
Mutual labels:  desktop-application
Gallium
Build desktop applications in Go and HTML.
Stars: ✭ 3,694 (+449.7%)
Mutual labels:  desktop-application
Laravel Kit
A desktop Laravel admin panel app
Stars: ✭ 440 (-34.52%)
Mutual labels:  desktop-application
Jetuml
A desktop application for fast UML diagramming.
Stars: ✭ 346 (-48.51%)
Mutual labels:  desktop-application
Consulo
Platform repository of Consulo. Plugins implementation hold in their repositories
Stars: ✭ 632 (-5.95%)
Mutual labels:  desktop-application
Bandcampdownloader
A Windows app used to download albums from Bandcamp.
Stars: ✭ 548 (-18.45%)
Mutual labels:  desktop-application
Pyfladesk
create desktop application by using Flask and QtWebKit
Stars: ✭ 399 (-40.62%)
Mutual labels:  desktop-application
Lein template descjop
A Leiningen template(Clojure/ClojureScript Project) for Web based desktop application with Electron (atom-shell).
Stars: ✭ 394 (-41.37%)
Mutual labels:  desktop-application
Library Assistant
Modern Library Management Software using JavaFX
Stars: ✭ 380 (-43.45%)
Mutual labels:  desktop-application
Launcher
Launcher for BlueMaxima's Flashpoint
Stars: ✭ 458 (-31.85%)
Mutual labels:  desktop-application
Ardublockly
Visual programming for Arduino. Based on blockly, implements Arduino code generation and facilitates program uploading.
Stars: ✭ 363 (-45.98%)
Mutual labels:  desktop-application
Sigma coding youtube
This is a collection of all the code that can be found on my YouTube channel Sigma Coding.
Stars: ✭ 611 (-9.08%)
Mutual labels:  win32
Photodemon
A free portable photo editor focused on pro-grade features, high performance, and maximum usability.
Stars: ✭ 356 (-47.02%)
Mutual labels:  win32
Mstdn
Tiny web-based mastodon client for your desktop
Stars: ✭ 390 (-41.96%)
Mutual labels:  desktop-application
Luminancehdr
A complete workflow for HDR imaging
Stars: ✭ 443 (-34.08%)
Mutual labels:  desktop-application
Nteract
📘 The interactive computing suite for you! ✨
Stars: ✭ 5,713 (+750.15%)
Mutual labels:  desktop-application
Walk
A Windows GUI toolkit for the Go Programming Language
Stars: ✭ 5,813 (+765.03%)
Mutual labels:  win32

Windows 10 Toast Notifications

made-with-python FOSSA Status HitCount MIT license

An easy-to-use Python library for displaying Windows 10 Toast Notifications which is useful for Windows GUI development.

o7ja4 1

Installation

pip install win10toast

Requirements

Installation of pywin32

pypiwin32
setuptools

Example

from win10toast import ToastNotifier
toaster = ToastNotifier()
toaster.show_toast("Hello World!!!",
                   "Python is 10 seconds awsm!",
                   icon_path="custom.ico",
                   duration=10)

toaster.show_toast("Example two",
                   "This notification is in it's own thread!",
                   icon_path=None,
                   duration=5,
                   threaded=True)
# Wait for threaded notification to finish
while toaster.notification_active(): time.sleep(0.1)

Contributors contributions welcome

License

FOSSA Status

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].