Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adishtienmetz/context-game
A context word guessing game. Try to guess the word in minimum tries!
https://github.com/adishtienmetz/context-game
python3 spacy sqlite3
Last synced: 3 months ago
JSON representation
A context word guessing game. Try to guess the word in minimum tries!
- Host: GitHub
- URL: https://github.com/adishtienmetz/context-game
- Owner: Adishtienmetz
- Created: 2024-06-17T20:45:25.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-06-21T19:31:40.000Z (6 months ago)
- Last Synced: 2024-10-09T11:42:59.907Z (3 months ago)
- Topics: python3, spacy, sqlite3
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
***Context Word Guessing Game***
**Overview**
Welcome to the Word Guessing Game!
This game challenges players to guess a randomly generated target word based on semantic similarity.
The closer your guess is to the target word in meaning, the higher your score.**Features**
- *User Registration and Login:* Register a new user or log in with an existing username.
- *Guessing System:* Make guesses and receive scores based on semantic similarity to the target word.
- *Score Tracking:* Keep track of your best guesses and the total number of guesses made.
- *Database Integration:* All user data and guesses are stored in an SQLite database.
***Installation***
**Requirements**
- Python 3.x
- spaCy (en_core_web_md model)
- Faker
- SQLite3**Setup**
- Clone the repository
- Run: pip install spacy faker; python -m spacy download en_core_web_md
- Run the database script: python database_setup.py
- Run the main file: python main.py
- Start playing!