Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/atypicalim/uyghur-maqal-temsilliri

This is a Uyghur idiom database including 2500 idioms ...
https://github.com/atypicalim/uyghur-maqal-temsilliri

makal maqal tamsil temsil uighur uyghur

Last synced: 20 days ago
JSON representation

This is a Uyghur idiom database including 2500 idioms ...

Awesome Lists containing this project

README

        

# 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

```