sozluk 2.4.0 copy "sozluk: ^2.4.0" to clipboard
sozluk: ^2.4.0 copied to clipboard

Sozluk is a community-driven Turkish dictionary powered by Turkish Language Association.

Click this link for Turkish Readme: Türkçe Sözlük

Package Link: https://pub.dev/packages/sozluk

Features #

You can use this package to find meanings, proverb and voiceUrl of Turkish Words. Or you can check spellings, generate new words, find lemmas and so much more!

All of our informations comes from official Turkish Language Association and Zemberek. You can find legal rights below.

Usage #

First you need to add sozluk package to your dart file.

import 'package:sozluk/sozluk.dart';

NEW UPDATE! #

With this new update, you can use Zemberek API's with this package!

You can check spellings, generate new words, find lemmas and so much more! Check out API Page for more! https://pub.dev/documentation/sozluk/latest/

Now this package has two way of usage.

  1. Dictionary: You can find meanings, audio urls and proverbs of a single word.
  2. Zemberek: You can check spellings, generate words, find lemmas. Basicly a NLP works with Flutter.

1. Dictionary #

If you want to use Dictionary you need to declare it.

final sozluk = Sozluk().dictionary;

final word = 'Dalga'; // You can only use this with Turkish Words.

If you want to find meaning you can simply use meaning() function. You need to provide a String. You will get String as a response.

var answer = await sozluk.meaning(word);

If you want to find proverb you can simply use proverb() function. You need to provide a String. You will get String as a response.

var answer = await sozluk.proverb(word);

If you want to find Audio URL's you can simply use audioUrl() function. You need to provide a String. You will get String as a response. Besides other ones, you need to provide the whole word that has been registered in the Turkish Language Association. If you give 'Dalga' as a string you will get an audio url. But if you use 'Dalg' (which is not a formal Turkish word.) you will get an error.

var answer = await sozluk.audioUrl(word);

If you want to get whole json example you can use getJson() function. You need to provide a String. Then you will get String as a response. You can use dart convert to convert String to Map.

var answer = await sozluk.getJson(word);

2. Zemberek #

If you want to use Zemberek you need to declare it.

final sozluk = Sozluk().zemberek;

final word = 'Dalga'; // You can only use this with Turkish Words.

If you want to check spellings of a sentences or a word you can simply use spellingCheck() function. You need to provide a String. You will get String as a response.

var answer = await sozluk.spellingCheck(word);

If you want to generate words with sample you can simply use generateWord() function. You need to provide a Sample and a Morphemes. You will get String as a response.

var answer = await sozluk.generateWord(word, morphemes);

If you want to get lammas of a word you can simply use lemmas() function. You need to provide a String. You will get String as a response.

var answer = await sozluk.lemmas(word);

If you want to get access to whole backend you can use zemberekAPI() function. You need to provide a endpoint and body. Then you will get String as a response. You can use dart convert to convert String to Map.

var answer = await sozluk.zemberekAPI(endpoint, body);

Gifs #

Example Gif

Contributors #

This project is fully open source. You can find this project on CidQu/sozluk. If you would like to expend this project you can fork or request a new pull request.

Additional information #

This project built with sozluk.gov.tr API. There is no legal restriction of using API. For any additional information you can contact me through mail. yavuz@cidqu.net

7
likes
120
pub points
57%
popularity

Publisher

verified publishercidqu.net

Sozluk is a community-driven Turkish dictionary powered by Turkish Language Association.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause, MIT (LICENSE)

Dependencies

flutter, http

More

Packages that depend on sozluk