Metadata-Version: 2.4
Name: quiz_game
Version: 0.0.3
Summary: create a test in order to practice for exams, test your knowledge, and boost your memory!
Project-URL: Homepage, https://github.com/Alex0424/quiz
Project-URL: Issues, https://github.com/Alex0424/quiz
Author-email: Alexander Lindholm <lindholmalex.la@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.0
Description-Content-Type: text/markdown

# Quiz 🎯

## Create your quiz game faster in Python! 🎴

### Why? 🥺

To practice for exams, test your knowledge, and boost your memory!

### How? 😫 (🐧Linux 🪟Windows 🍏Mac)

1. Create VENV 👾

```shell
python -m venv /path/to/new/virtual/environment
```

2. Install 🛠️

```shell
pip install quiz-game
```

3. Create a python file 📁

```shell
echo hi > ./your_script.py
```

4. **Import** this module into your script 📥

```py
from quiz_game import quiz_start
```

5. **Add your questions and answers** in a dictionary 👨🏻‍💻

```py
from quiz_game import quiz_start

quiz_start(
    {
        "question 1": "answer 1",
        "question 2": "answer 2",
        "question 3": "answer 3",
    }
)
```

6. **Run your script** and play the quiz! 🎮

```
python ./your_script.py
```

You’ll see ✅ for correct answers and 💀 for wrong ones.
At the end, you’ll get your score, e.g. "2/3".
