launcher

Launches any python program


License
MIT
Install
pip install launcher==0.1

Documentation

Launcher:

Note: This is not a compiler this will just launch your project with an cool GUI

How to install:

Make sure pip is installed correctly on your computer

pip install launcher

And import it as usually

from launcher import launcher

or

from launcher import *

How to use:

An basic example

from launcher import launcher
from tkinter import Tk
root = Tk()
launcher(root, [["Example App", "path/to/app"], ["second app", "path"]])