https://github.com/printn/terminal-games-library
A library full of Terminal Games written in Python
https://github.com/printn/terminal-games-library
casino-games fun games guessthenumber-game python-games snake-game terminal-based terminal-game tictactoe-game
Last synced: over 1 year ago
JSON representation
A library full of Terminal Games written in Python
- Host: GitHub
- URL: https://github.com/printn/terminal-games-library
- Owner: PrintN
- License: mit
- Created: 2024-07-20T21:49:48.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-08T10:47:52.000Z (over 1 year ago)
- Last Synced: 2025-01-08T10:14:08.620Z (over 1 year ago)
- Topics: casino-games, fun, games, guessthenumber-game, python-games, snake-game, terminal-based, terminal-game, tictactoe-game
- Language: Python
- Homepage:
- Size: 49.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Terminal Games Library
Welcome to the **Terminal Games Library**! This repository is a collection of classic terminal-based games implemented in Python. It's designed to provide a simple, fun way to play games directly from your terminal.

## Games Overview
The repository is organized into different folders, each containing a unique game or set of games. Here's a quick overview of the games folders:
- **[Casino](Games/Casino/)**
- **[GuessTheNumber](Games/GuessTheNumber/)**
- **[Hangman](Games/Hangman/)**
- **[ProTyper](Games/ProTyper/)**
- **[Rock Paper Scissors](Games/RockPaperScissors/)**
- **[Snake](Games/Snake/)**
- **[Sudoku](Games/Sudoku/)**
- **[Tic Tac Toe](Games/TicTacToe/)**
- **[Wordle](Games/Wordle/)**
- **[2048](Games/2048/)**
## Getting Started
To get started with any of the games, follow these steps:
1. **Download and Install Python**
Ensure you have Python installed on your machine. You can download the latest version of Python from the [official Python website](https://www.python.org/downloads/). Follow the installation instructions for your operating system.
2. **Clone the repository:**
```bash
git clone https://github.com/PrintN/Terminal-Games-Library.git
3. **Install packages:**
```bash
pip install -r requirements.txt
4. **Navigate to the game directory you want to play. For example, to play the Snake game**
```bash
cd Terminal-Games-Library/Games/Snake/
5. **Run the game**
```bash
python Snake.py
```
Replace **Snake.py** with the appropriate script for the game you want to play.