/tdk

turkish dictionary library for python

Primary LanguagePythonMIT LicenseMIT

tdk yan sanayi

fetches meanings of turkish words from sozluk.gov.tr

Installation

pip install tdk-search

Usage

from tdk import tdk

# create new word
word = tdk.new_word("şarap")
# prints meaning of the word
print(word.meaning())
# prints all the word's data
print(word.all_data())