An open API service indexing awesome lists of open source software.

https://github.com/israel-dryer/animated-popup

Animated PySimpleGUI popup screen for running processes
https://github.com/israel-dryer/animated-popup

Last synced: 7 months ago
JSON representation

Animated PySimpleGUI popup screen for running processes

Awesome Lists containing this project

README

          

# Animated Popup
Animated PySimpleGUI popup screens for running processes. All of these can be run independent of other processes using multi-threading.

This ![splash screen popup](splash_screen.py) can be used for loading processes while starting up a program

![splash screen popup](examples/splashscreen.gif)

This ![animated popup](animated_popup.py) is created by iterating through a list of images. This is good to use for a process where the time or sequence is unknown.

![animated popup](examples/animated_popup.gif)

This ![text loading popup](character_loading.py) is animated with a simple sequence of text options in a while loop. This is simpler than the picture animation, but is used for a similar purpose... when time or sequence of events is unknown.

![text loader](examples/text_loading.gif)

This ![ascii character loading popup](ascii_progress.py) is animated by with simple ascii characters in a while loop. This is an old school look, but can be used with or without a GUI. Also, this is best used when there is a defined time or sequence of events that can be calculated.

![ascii progress](examples/ascii_progress.gif)