Turkish suffix library
Project description
Turkish.py
Turkish Suffix Library for Python
Install
pip install turkish-suffix-library
Using
Nouns
from turkish_suffix_library.turkish import Turkish
print(Turkish('araba').dative())
print(Turkish('sebep').ablative())
print(Turkish('sebep').accusative())
print(Turkish('ecdat').accusative())
print(Turkish('çanta').plural().possessive(person=1).ablative().to_json())
print(Turkish('aparat').possessive(person=2))
print(Turkish('batak').possessive(person=3))
print(Turkish('idrak').possessive(person=1, plural=True))
print(Turkish('ok').possessive(person=2, plural=True))
print(Turkish('çanta').possessive(person=3, plural=True))
print(f'{Turkish("Elif").genitive(proper_noun=True)} {Turkish("Öküz").possessive(person=3)}.')
print(Turkish('dört').ordinal())
print(Turkish('yedi').distributive())
Turkish('kedi').instrumental()
Output
arabaya
sebepten
sebebi
ecdadı
{
'result': 'çantalarımdan',
'stem': 'çanta',
'history': [
{'action': 'plural', 'current': 'çantalar', 'kwargs': {}},
{'action': 'possessive', 'current': 'çantalarım', 'kwargs': {'person': 1}},
{'action': 'ablative', 'current': 'çantalarımdan', 'kwargs': {}}
]
}
aparatın
batağı
idrakımız
okunuz
çantaları
Elif'in Öküzü.
dördüncü
yedişer
kediyle
Adverbs
Turkish('vur').adverb_repeatedly()
> vurdukça
Turkish('ara').adverb_since_action()
> arayalı
etc.
Verbs
Parameters: person (1, 2, 3), negative (boolean), question (boolean), plural (boolean)
Turkish('git').infinitive()
> gitmek
Turkish('git').infinitive(negative=True)
> gitmemek
Turkish('al').future(person=2, plural=True) # Second person plural
> alacaksınız
Turkish('al').present_simple(person=1) # First person single
> alırım
Turkish('al').past(person=3, plural=True)
> aldılar
Turkish('al').command(person=3, plural=True)
> alsınlar
Turkish('ver').present_continuous(person=1)
> veriyorum
Turkish('ver').present_continuous_alternative(person=1)
> vermekteyim
Turkish('ver').must(person=2)
> vermelisin
Turkish('anlat').wish_condition(person=3)
> anlatsa
Turkish('sakla').wish(person=3, plural=True)
> saklayalar
Turkish('anla').learned_past(person=3, question=True)
> anlamış mı
Turkish('sat').past_learned_past(person=2, negative=True)
> satmamıştın
Turkish('kork').learned_past_learned_past(person=3)
> korkmuşmuş
Turkish('oyna').learned_past_future(person=2, negative=True)
> oynamayacakmışsın
Turkish('oyna').past_future(person=2, negative=True, question=True)
> oynamayacak mıydın
Turkish('oyna').past_past(person=2, negative=True)
> oynamadıydın
Turkish('gül').past_condition(person=2)
> güldüysen
Turkish Grammar
-
Turkish is a highly agglutinative language, i.e., Turkish words have many grammatical suffixes or endings that determine meaning. Turkish vowels undergo vowel harmony. When a suffix is attached to a stem, the vowel in the suffix agrees in frontness or backness and in roundedness with the last vowel in the stem. Turkish has no gender.
-
Turkish Language is a language with strict rules with an only couple of exceptions which makes it very easy for simulating by coding.
User Interface
The most of the methods are not supported yet, under development
-
Source code: https://github.com/miklagard/tr
-
Demo: https://trstem.com
Other Languages
C# Version
https://github.com/yasinkuyu/Turkish.cs
PHP Version
https://github.com/yasinkuyu/Turkish.php
JavaScript Version
https://github.com/yasinkuyu/Turkish.js
Special thanks for C#, PHP and JavaScript versions
Yasin Kuyu
https://github.com/yasinkuyu/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for turkish-suffix-library-0.5.6.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21e080c99b0ff354cbdfe9ea8d1560c7f29cc4f9cf4cac600d59044cd1d7e414 |
|
MD5 | ff274be9008abc9de9826340cf525054 |
|
BLAKE2b-256 | bafe727f2961387820f18e1a965c079d68c53b199a2d1b432811c8c086ee2aaf |
Close
Hashes for turkish_suffix_library-0.5.6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 87440b26fcdb4649b4cd098b8a0bec7dbb1befdd1e6e0cae3fd889390de00821 |
|
MD5 | 88ff0c47a6d6a0e4a4d62491a48d4938 |
|
BLAKE2b-256 | ecd6ea4a4806db4082908e666d18a3aaa2ad7ff64f34dc72fe9277b3b35de1f4 |