Metadata-Version: 2.4
Name: hangman-terminal
Version: 1.0.1
Summary: Hangman in terminal
Home-page: https://github.com/menonkrishna57/Hangman-Game-in-Python
Author: Krishna Menon
Author-email: menonkrishna57@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: License.txt
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: summary

# Hangman-Terminal

[![PyPI version](https://badge.fury.io/py/hangman-terminal.svg)](https://badge.fury.io/py/hangman-terminal)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

A classic game of Hangman that you can play right in your terminal! Features fun ASCII art animations and a built-in word list for a simple, engaging experience.

## Gameplay Demo

![Gameplay GIF](https://raw.githubusercontent.com/menonkrishna57/Hangman-Game-in-Python/refs/heads/main/media/usage.gif)





## Features

* **Classic Hangman Gameplay:** Guess letters to solve the hidden word before you run out of attempts.
* **ASCII Art Animations:** Watch the hangman being drawn with each incorrect guess, all rendered in your terminal.
* **Built-in Word List:** Comes with a predefined set of words, so you can start playing immediately.
* **Lightweight & Simple:** No external dependencies needed. Just install and play!

## Installation
You can install it easily using `pip`:

```bash
pip install hangman-terminal
```

## Usage
There are two main ways to run the game:

### 1. From the Command Line:
After installation, you can start the game by simply typing this command in your terminal:

```Bash
hangman-terminal
```
### 2. As a Python Module:
You can also import and run the game from within your own Python script.

```Python

import hangman_terminal as
# This will start the game
ht.main()
```
## Contributing
Contributions, issues, and feature requests are welcome!  Feel free to check the [issues](https://github.com/menonkrishna57/Hangman-Game-in-Python/issues) page.
