Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 ...
- Host: GitHub
- URL: https://github.com/atypicalim/uyghur-maqal-temsilliri
- Owner: Atypicalim
- License: mit
- Created: 2020-06-02T15:22:42.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-29T12:37:40.000Z (4 months ago)
- Last Synced: 2024-09-25T09:11:36.583Z (3 months ago)
- Topics: makal, maqal, tamsil, temsil, uighur, uyghur
- Language: Python
- Homepage:
- Size: 134 KB
- Stars: 14
- Watchers: 1
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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```