Metadata-Version: 2.1
Name: QuBuilders
Version: 0.0.8
Summary: a pakage that help you to make n choice questions faster
Project-URL: Homepage, https://github.com/AmirrezaZahraei1387/QuBu
Project-URL: Bug Tracker, https://github.com/AmirrezaZahraei1387/QuBu/issues
Author-email: Amirrza Zahraei <amir.reza.zahraei@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# QuBu
The qubu is an open source project that is created to help people 
especially teachers to make n choice questions with t answers faster
and quicly. The idea comes from the situation when you have a lot of questions that 
they all look to have the same pattern. Like these questions.

1-What is the simplified polynomial of the following polynomial?
5*x+3+7*x+5+23

2-What is the simplified polynomial of the following polynomial?
90*x+3+7*x+5+2

or 

1-how to say hello word in german?

2-how to say good word in german?

3-how to say hello word in Farsi?

...

they all look the same right?
the only different is this that some words and some numbers and
symbols are different, however the pattern, concept and the solution
of all of them is the same.

Now this is a little project named QuBu that will help you to generate
such questions.

# installation:

for installing the project you can simply use pip and your cmd:

```cmd
# for Uix/MacOS
python3 -m pip install QuBuilders

# for windows
py -m pip install QuBuilders
```

# How to use

to use this project first let's go to talk about how to make 
a simple question:

For making a question you can simply use QuestionDataSaver class to save 
your questions and manage them in an appropriate way. to save your question 
you can do like the following code:

``` python
from QuBuilders.NchTan import QuestionDataSaver
```



