Metadata-Version: 2.1
Name: text_games
Version: 0.1.0
Summary: A collection of text-based games in Python.
Home-page: https://github.com/Sriganth-byte/Python_Text_Games
Author: Sriganth
Author-email: sriganthperiyannan@example.com
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Text Games

`text_games is a Python module that offers a collection of simple, text-based games for fun and learning.

## Features

The module includes the following games:
1. **Hangman**: Guess the hidden word letter by letter.
2. **Number Guesser**: Guess a random number within a certain range.
3. **Rock-Paper-Scissors**: Play against the computer.
4. **Riddle Game**: Solve riddles within a limited number of attempts.
5. **Word Scramble**: Unscramble the shuffled letters to form a word.

## Installation

You can install the module via `pip`:

```bash
pip install text-games

USAGE

from text_games import games

# Play Hangman
games.hangman()

# Play Number Guesser
games.number_guesser()

# Play Rock-Paper-Scissors
games.rock_paper_scissors()

# Play Riddle Game
games.riddle_game()

# Play Word Scramble
games.word_scramble()

