Metadata-Version: 2.3
Name: the_hangman_wordlist
Version: 0.5
Summary: A library to pick hangman words.
Project-URL: Homepage, https://github.com/TheBiemGamer/TheHangmanWordlist
Project-URL: Issues, https://github.com/TheBiemGamer/TheHangmanWordlist/issues
Author-email: TheBiemGamer <47662596+TheBiemGamer@users.noreply.github.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# The Hangman Wordlist
A simple json wordlist for use with hangman with easy, medium and hard words!

### Example usage in python (see [main.py](src/the_hangman_wordlist_TheBiemGamer/main.py))
```py
from the_hangman_wordlist import HangmanWordlist

if __name__ == "__main__":
    wordlist = HangmanWordlist()
    difficulty = input("What difficulty do you want? (easy/medium/hard): ")
    word, version = wordlist.pull_word(difficulty)
    print(f"\nThe {difficulty} word is: '{word}'")
    print(f"Wordlist v{version}")
    input("\nPress Enter to exit...")
```

### Credits
- [Jurriaaaantje](https://github.com/Jurriaaaantje) (Wordlist words and update wordlist functionality)
- [TheBiemGamer](https://github.com/TheBiemGamer) (Version check and json functionality)
