Skip to content

lestec-al/apps-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Apps

A simple Calculator app with Tkinter, PySimpleGUI and command line interfaces, with keyboard support (calc.py)

A file sharing tool with a Tkinter interface. Create an FTP or TCP server in a given directory (share.py)

Application for copying files and directories to a virtual machine for Windows with Tkinter interface (copy_vm.py, need start a command line as an administrator)

Games

Minesweeper game with Tkinter and command line interfaces (minesweeper.py)

Tic-Tac-Toe game with Tkinter and command line interfaces (tic_tac_toe.py)

Installation and Launch

  • install Python (v3.9 or higher) https://www.python.org/downloads/
  • download and unpack (or get in other ways) this project
  • see how to run python commands on your OS. For Windows 10 it may look like that:
    • open a powershell and select the project folder through it (eg. 'cd <path/to/folder>')
    • (if it used in app you want to run) install PySimpleGUI by typing command 'pip install PySimpleGUI'
    • for launch, type command 'python minesweeper.py' (or other .py file)