Metadata-Version: 2.1
Name: win10ctypestoast
Version: 0.10
Summary: Windows-10-Toast-Notifications without pywin32 dependency
Home-page: https://github.com/hansalemaos/win10ctypestoast
Author: Johannes Fischer
Author-email: <aulasparticularesdealemaosp@gmail.com>
License: MIT
Keywords: ctypes,windows,toast
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
License-File: LICENSE.rst
Requires-Dist: Pillow
Requires-Dist: pystray


# Windows-10-Toast-Notifications without pywin32 dependency



## pip install win10ctypestoast



### Tested against Windows 10 / Python 3.10 / Anaconda 



#### Basically the same as https://github.com/jithurjacob/Windows-10-Toast-Notifications

#### but without pywin32 dependency.



```python

from win10ctypestoast import show_toast



show_toast(

    title="Title",

    message="Message",

    icon=r"C:\Users\hansc\Pictures\numberresults.png",

    duration=1,

    repeat=2,

    pause=2,

    threaded=False,

)

show_toast(

    title="Title",

    message="Message",

    icon=r"C:\Users\hansc\Pictures\numberresults.png",

    duration=2,

    repeat=2,

    pause=1,

    threaded=True,

)







```
