Home > Blockchain >  how to create a pop up massage in python?
how to create a pop up massage in python?

Time:03-24

enter image description here firstly what do you call this popup and how do you create it in python?

I don't know what do you call it, that's why I couldn't create it.

CodePudding user response:

You can use the tkinter library in python.

Please see this solution How to create a modal dialog in tkinter?

CodePudding user response:

This can be done with the win10toast module in python, more information can be found here on the PyPi website https://pypi.org/project/win10toast/

Note: This will not create exactly what is referenced in the picture above, but instead it creates a notification at the bottom right of a windows 10 machine.

  • Related