Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.05 KB

README.md

File metadata and controls

34 lines (25 loc) · 1.05 KB

TkSolitaire

An embeddable and accessable solitaire game for Tkinter and Python 3


TkSolitaire is a solitaire game application written in Tkinter. It is written for Python 3 on Linux and Windows. It should work on MacOS, but this platform hasn't been tested on.


Accessability: TkSolitaire comes bundled with accessibility options, making it easier for the elderly or those with hand injuries to play solitaire. They include:

  • An auto-clicker
  • A game finisher
  • An option to use larger cards

Installation: Windows users can download the installer from the releases page. Alternatively, the TkSolitaire source code can also be downloaded and run using Python on any OS. TkSolitaire can be embedded into a Tkinter app:

from TkSolitaire import SolitareGameFrame
import tkinter as tk

root = tk.Tk()
solitaire_frame = SolitareGameFrame(root)
solitaire_frame.pack(expand=True, fill="both")

root.mainloop()

Screenshots:

Alt text