mstn-ebooks-gui/wizard.py

28 lines
676 B
Python
Executable File

#!/usr/bin/env python3
from tkinter import *
from tkinter import ttk
import urllib
#https://github.com/Lynnesbian/mstdn-ebooks/archive/master.zip
root = Tk()
root.title = "mstdn-ebooks Setup Wizard"
frame = ttk.Frame(root)
nb = ttk.Notebook(frame)
frm_button_box = ttk.Frame(frame)
btn_cancel = ttk.Button(frm_button_box, text = "Cancel")
btn_back = ttk.Button(frm_button_box, text = "Back")
btn_next = ttk.Button(frm_button_box, text = "Next")
nb.pack(fill = "both", expand = True)
frm_button_box.pack()
btn_cancel.grid(column = 0, row = 0)
btn_back.grid(column = 1, row = 0)
btn_next.grid(column = 2, row = 0)
frame.pack(fill = "both", expand = True)
root.mainloop()