Metadata-Version: 2.4
Name: quiz_game
Version: 0.0.2
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?

1. **Import** this module into your script:

```
from quiz_game import start_quiz
```

2. **Add your questions and answers** in a dictionary:

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

3. **Run your script** and play the quiz!

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