https://github.com/aa830/python-in-pajamas
A freeware, open-source program that teaches children the basics of binary, machine language and programming in python; for my High School Computer Science Project
https://github.com/aa830/python-in-pajamas
Last synced: about 1 year ago
JSON representation
A freeware, open-source program that teaches children the basics of binary, machine language and programming in python; for my High School Computer Science Project
- Host: GitHub
- URL: https://github.com/aa830/python-in-pajamas
- Owner: aa830
- License: gpl-3.0
- Created: 2024-10-17T14:29:33.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-03T05:49:52.000Z (over 1 year ago)
- Last Synced: 2025-04-12T21:36:55.608Z (over 1 year ago)
- Language: Python
- Size: 283 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python-in-Pajamas (WIP)
A freeware, open-source program that teaches children the basics of binary, machine language and programming in python; for my High School Computer Science Project
`Copyright (c) Aarav Darbari `
# Dependencies
1. Python3
2. Python libraries (in requirements.txt)
3. Some kind of terminal, command prompt or terminal emulator.
# How does it work?
It uses a minimal amount of 3rd party libraries (hence the requirements.txt) and mostly in-built python libraries to display images and text in a terminal-based GUI.
# Usage
Clone this repository by either clicking the latest published package, or cloning from command line using git.
`git clone https://github.com/aa830/Python-in-Pajamas.git`
You should have an extracted folder called Python-in-Pajamas, inside there is a run.sh or a run.bat script. You may use this to launch the program based on your operating system.
# Installing required libraries
Simply cd into the directory and run `pip3 install -r requirements.txt`
This will install the currently required libraries (pyfiglet, rich, Levenshtein and pillow)
# Note for MacOS users
Please run the following command to make the shell script executable `chmod +x run.sh` (assuming you are already inside the folder)