Metadata-Version: 2.1
Name: mostx
Version: 0.1.1.dev0
Summary: Quiz Generator
Home-page: https://github.com/gottadiveintopython/mostx
License: MIT
Keywords: Quiz,Game
Author: Nattōsai Mitō
Author-email: flow4re2c@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Education
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Project-URL: Repository, https://github.com/gottadiveintopython/mostx
Description-Content-Type: text/markdown

# Mostx : Quiz Generator

Generates the following quiz.

```text
B is slower than A
A is faster than C
B is faster than C
Which is the slowest one?
```

Supports multiple languages.  
(Japanese, Korean, Traditional-Chinese, English, )

## Installation

```
pip install mostx
```

## Usage

```python
import mostx

print(sorted(mostx.get_available_langs()))
# => ['chinese', 'english', 'japanese', 'korean', ]

qgen = mostx.QuizGenerator(lang='english')
quiz = qgen(choices='ABC', n_adjs=1)
print(quiz)
# Quiz(
#     statements=[
#         'C is larger than A',
#         'A is smaller than B',
#         'C is larger than B',
#     ],
#     question='Which is the smallest?',
#     choices=('A', 'B', 'C'),
#     answer='A'
# )
```

## etc

[Google App](https://play.google.com/store/apps/details?id=jp.gottadiveintopython.mostx) (Mostx + Kivy)

