Metadata-Version: 2.1
Name: maqal
Version: 1.0.2
Summary: Uighur language idiom tool
Home-page: https://github.com/kompasim/uyghur-maqal-temsilliri
Author: kompasim
Author-email: kompasim@163.com
License: MIT Licence
Keywords: uyghur,uighur,maqal,makal,temsil,tamsil
Platform: any
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Uyghur Maqal Temsilliri

> This is the Uyghur idiom database project, there are 2500 idioms in this database, the following is the list of data files:

* `storage/uyghur-maqal-temsilliri.txt` (text file)
* `storage/uyghur-maqal-temsilliri.json` (json file)
* `storage/uyghur-maqal-temsilliri.db` (sqlite database file)

> the data files are sorted alphabetically, you can read them by yourself or use the sample code below to get contents:

```python

# pip install maqal

from maqal import Maqal

maqal = Maqal()
allLines = maqal.search("%") # all data list
randomLine = maqal.random() # random data content

```


