{ "info": { "author": "Cem YILDIZ", "author_email": "cem.yildiz@ya.ru", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.6" ], "description": "============================\nTurkish Suffix Library 0.2.0\n============================\n\nTurkish Suffix Library is a Turkish Suffix generator which changes nouns into ablative, \ngenetice, locative, dative, acusative cases and possessive affix.\n\nInstallation:\n\npip: \npip install turkish-suffix-library\n\nmanuel:\npython setup.py install\n\nQuick start\n-----------\n\nAdd \"tr_sufix\" to your INSTALLED_APPS setting like this::\n\n INSTALLED_APPS = (\n ...\n 'tr_suffix',\n )\n\n Quick start\n -----------\n \n import tr_suffix\n \n \n \n Usage:\n ---------------\n \n Don't forget to put utf8 on top of the view:\n \n #-*- coding: utf-8 -*-\n \n import tr_suffix \n \n print (tr_suffix.makeInfinitive(sample_verb))\n print (tr_suffix.makeInfinitive(sample_verb, { \"negative\": True} ))\n\n print (tr_suffix.unifyVerbs(sample_verb, {\"auxiliary\": \"bil\", \"negative\": False}))\n print (tr_suffix.unifyVerbs(sample_verb, {\"auxiliary\": \"bil\", \"negative\": True}))\n \n print (tr_suffix.makeCommand(sample_verb, { \"person\": 2 }))\n print (tr_suffix.makeCommand(sample_verb, { \"person\": 3 }))\n print (tr_suffix.makeCommand(sample_verb, { \"question\": True, \"person\": 3 }))\n print (tr_suffix.makeCommand(sample_verb, { \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makeCommand(sample_verb, { \"person\": 2, \"quantity\": \"plural\", \"formal\": True }))\n print (tr_suffix.makeCommand(sample_verb, { \"person\": 3, \"quantity\": \"plural\" }))\n print (tr_suffix.makeCommand(sample_verb, { \"question\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makeCommand(sample_verb, { \"negative\": True, \"person\": 2 }))\n print (tr_suffix.makeCommand(sample_verb, { \"negative\": True, \"person\": 3 }))\n print (tr_suffix.makeCommand(sample_verb, { \"negative\": True, \"question\": True, \"person\": 3 }))\n print (tr_suffix.makeCommand(sample_verb, { \"negative\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makeCommand(sample_verb, { \"negative\": True, \"person\": 2, \"quantity\": \"plural\", \"formal\": True }))\n print (tr_suffix.makeCommand(sample_verb, { \"negative\": True, \"person\": 3, \"quantity\": \"plural\" }))\n print (tr_suffix.makeCommand(sample_verb, { \"negative\": True, \"question\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePresentContinuous(sample_verb, { \"person\": 1 }), \" > I am %s(ing)\" % english) \n print (tr_suffix.makePresentContinuous(sample_verb, { \"person\": 2 }), \" > You %s(ing)\" % english)\n print (tr_suffix.makePresentContinuous(sample_verb, { \"person\": 3 }), \" > He/She/It %s(ing)\" % english)\n print (tr_suffix.makePresentContinuous(sample_verb, { \"person\": 1, \"quantity\": \"plural\" }), \" > We are %s(ing)\" % english)\n print (tr_suffix.makePresentContinuous(sample_verb, { \"person\": 2, \"quantity\": \"plural\" }), \" > They %s(ing)\" % english)\n print (tr_suffix.makePresentContinuous(sample_verb, { \"person\": 3, \"quantity\": \"plural\" }), \" > We are %s(ing)\" % english)\n\n print (tr_suffix.makePresentContinuous(sample_verb, { \"question\": True, \"person\": 1 }))\n print (tr_suffix.makePresentContinuous(sample_verb, { \"question\": True, \"person\": 2 }))\n print (tr_suffix.makePresentContinuous(sample_verb, { \"question\": True, \"person\": 3 }))\n print (tr_suffix.makePresentContinuous(sample_verb, { \"question\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentContinuous(sample_verb, { \"question\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentContinuous(sample_verb, { \"question\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePresentContinuous(sample_verb, { \"negative\": True, \"person\": 1 }))\n print (tr_suffix.makePresentContinuous(sample_verb, { \"negative\": True, \"person\": 2 }))\n print (tr_suffix.makePresentContinuous(sample_verb, { \"negative\": True, \"person\": 3 }))\n print (tr_suffix.makePresentContinuous(sample_verb, { \"negative\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentContinuous(sample_verb, { \"negative\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentContinuous(sample_verb, { \"negative\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePresentContinuous(sample_verb, { \"negative\": True, \"question\": True, \"person\": 1 }))\n print (tr_suffix.makePresentContinuous(sample_verb, { \"negative\": True, \"question\": True, \"person\": 2 }))\n print (tr_suffix.makePresentContinuous(sample_verb, { \"negative\": True, \"question\": True, \"person\": 3 }))\n print (tr_suffix.makePresentContinuous(sample_verb, { \"negative\": True, \"question\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentContinuous(sample_verb, { \"negative\": True, \"question\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentContinuous(sample_verb, { \"negative\": True, \"question\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"person\": 1 }))\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"person\": 2 }))\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"person\": 3 }))\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"question\": True, \"person\": 1 }))\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"question\": True, \"person\": 2 }))\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"question\": True, \"person\": 3 }))\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"question\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"question\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"question\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"negative\": True, \"person\": 1 }))\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"negative\": True, \"person\": 2 }))\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"negative\": True, \"person\": 3 }))\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"negative\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"negative\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"negative\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"negative\": True, \"question\": True, \"person\": 1 }))\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"negative\": True, \"question\": True, \"person\": 2 }))\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"negative\": True, \"question\": True, \"person\": 3 }))\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"negative\": True, \"question\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"negative\": True, \"question\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentContinuous2(sample_verb, { \"negative\": True, \"question\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makeFuture(sample_verb, { \"person\": 1 }))\n print (tr_suffix.makeFuture(sample_verb, { \"person\": 2 }))\n print (tr_suffix.makeFuture(sample_verb, { \"person\": 3 }))\n print (tr_suffix.makeFuture(sample_verb, { \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makeFuture(sample_verb, { \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makeFuture(sample_verb, { \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makeFuture(sample_verb, { \"question\": True, \"person\": 1 }))\n print (tr_suffix.makeFuture(sample_verb, { \"question\": True, \"person\": 2 }))\n print (tr_suffix.makeFuture(sample_verb, { \"question\": True, \"person\": 3 }))\n print (tr_suffix.makeFuture(sample_verb, { \"question\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makeFuture(sample_verb, { \"question\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makeFuture(sample_verb, { \"question\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makeFuture(sample_verb, { \"negative\": True, \"person\": 1 }))\n print (tr_suffix.makeFuture(sample_verb, { \"negative\": True, \"person\": 2 }))\n print (tr_suffix.makeFuture(sample_verb, { \"negative\": True, \"person\": 3 }))\n print (tr_suffix.makeFuture(sample_verb, { \"negative\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makeFuture(sample_verb, { \"negative\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makeFuture(sample_verb, { \"negative\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makeFuture(sample_verb, { \"negative\": True, \"question\": True, \"person\": 1}))\n print (tr_suffix.makeFuture(sample_verb, { \"negative\": True, \"question\": True, \"person\": 2}))\n print (tr_suffix.makeFuture(sample_verb, { \"negative\": True, \"question\": True, \"person\": 3}))\n print (tr_suffix.makeFuture(sample_verb, { \"negative\": True, \"question\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makeFuture(sample_verb, { \"negative\": True, \"question\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makeFuture(sample_verb, { \"negative\": True, \"question\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePresentSimple(sample_verb, { \"person\": 1 }))\n print (tr_suffix.makePresentSimple(sample_verb, { \"person\": 2 }))\n print (tr_suffix.makePresentSimple(sample_verb, { \"person\": 3 }))\n print (tr_suffix.makePresentSimple(sample_verb, { \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentSimple(sample_verb, { \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentSimple(sample_verb, { \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePresentSimple(sample_verb, { \"question\": True, \"person\": 1 }))\n print (tr_suffix.makePresentSimple(sample_verb, { \"question\": True, \"person\": 2 }))\n print (tr_suffix.makePresentSimple(sample_verb, { \"question\": True, \"person\": 3 }))\n print (tr_suffix.makePresentSimple(sample_verb, { \"question\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentSimple(sample_verb, { \"question\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentSimple(sample_verb, { \"question\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePresentSimple(sample_verb, { \"negative\": True, \"person\": 1 }))\n print (tr_suffix.makePresentSimple(sample_verb, { \"negative\": True, \"person\": 2 }))\n print (tr_suffix.makePresentSimple(sample_verb, { \"negative\": True, \"person\": 3 }))\n print (tr_suffix.makePresentSimple(sample_verb, { \"negative\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentSimple(sample_verb, { \"negative\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentSimple(sample_verb, { \"negative\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePresentSimple(sample_verb, { \"negative\": True, \"question\": True, \"person\": 1 }))\n print (tr_suffix.makePresentSimple(sample_verb, { \"negative\": True, \"question\": True, \"person\": 2 }))\n print (tr_suffix.makePresentSimple(sample_verb, { \"negative\": True, \"question\": True, \"person\": 3 }))\n print (tr_suffix.makePresentSimple(sample_verb, { \"negative\": True, \"question\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentSimple(sample_verb, { \"negative\": True, \"question\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePresentSimple(sample_verb, { \"negative\": True, \"question\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n\n print (tr_suffix.makePast(sample_verb, { \"person\": 1 }))\n print (tr_suffix.makePast(sample_verb, { \"person\": 2 }))\n print (tr_suffix.makePast(sample_verb, { \"person\": 3 }))\n print (tr_suffix.makePast(sample_verb, { \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePast(sample_verb, { \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePast(sample_verb, { \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePast(sample_verb, { \"question\": True, \"person\": 1 }))\n print (tr_suffix.makePast(sample_verb, { \"question\": True, \"person\": 2 }))\n print (tr_suffix.makePast(sample_verb, { \"question\": True, \"person\": 3 }))\n print (tr_suffix.makePast(sample_verb, { \"question\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePast(sample_verb, { \"question\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePast(sample_verb, { \"question\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePast(sample_verb, { \"negative\": True, \"person\": 1 }))\n print (tr_suffix.makePast(sample_verb, { \"negative\": True, \"person\": 2 }))\n print (tr_suffix.makePast(sample_verb, { \"negative\": True, \"person\": 3 }))\n print (tr_suffix.makePast(sample_verb, { \"negative\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePast(sample_verb, { \"negative\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePast(sample_verb, { \"negative\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePast(sample_verb, { \"negative\": True, \"question\": True, \"person\": 1 }))\n print (tr_suffix.makePast(sample_verb, { \"negative\": True, \"question\": True, \"person\": 2 }))\n print (tr_suffix.makePast(sample_verb, { \"negative\": True, \"question\": True, \"person\": 3 }))\n print (tr_suffix.makePast(sample_verb, { \"negative\": True, \"question\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePast(sample_verb, { \"negative\": True, \"question\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePast(sample_verb, { \"negative\": True, \"question\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n\n print (tr_suffix.makePastPerfect(sample_verb, { \"person\": 1 }))\n print (tr_suffix.makePastPerfect(sample_verb, { \"person\": 2 }))\n print (tr_suffix.makePastPerfect(sample_verb, { \"person\": 3 }))\n print (tr_suffix.makePastPerfect(sample_verb, { \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPerfect(sample_verb, { \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPerfect(sample_verb, { \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePastPerfect(sample_verb, { \"question\": True, \"person\": 1 }))\n print (tr_suffix.makePastPerfect(sample_verb, { \"question\": True, \"person\": 2 }))\n print (tr_suffix.makePastPerfect(sample_verb, { \"question\": True, \"person\": 3 }))\n print (tr_suffix.makePastPerfect(sample_verb, { \"question\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPerfect(sample_verb, { \"question\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPerfect(sample_verb, { \"question\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePastPerfect(sample_verb, { \"negative\": True, \"person\": 1 }))\n print (tr_suffix.makePastPerfect(sample_verb, { \"negative\": True, \"person\": 2 }))\n print (tr_suffix.makePastPerfect(sample_verb, { \"negative\": True, \"person\": 3 }))\n print (tr_suffix.makePastPerfect(sample_verb, { \"negative\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPerfect(sample_verb, { \"negative\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPerfect(sample_verb, { \"negative\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePastPerfect(sample_verb, { \"negative\": True, \"question\": True, \"person\": 1 }))\n print (tr_suffix.makePastPerfect(sample_verb, { \"negative\": True, \"question\": True, \"person\": 2 }))\n print (tr_suffix.makePastPerfect(sample_verb, { \"negative\": True, \"question\": True, \"person\": 3 }))\n print (tr_suffix.makePastPerfect(sample_verb, { \"negative\": True, \"question\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPerfect(sample_verb, { \"negative\": True, \"question\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPerfect(sample_verb, { \"negative\": True, \"question\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"person\": 1 }))\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"person\": 2 }))\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"person\": 3 }))\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"question\": True, \"person\": 1 }))\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"question\": True, \"person\": 2 }))\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"question\": True, \"person\": 3 }))\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"question\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"question\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"question\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"negative\": True, \"person\": 1 }))\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"negative\": True, \"person\": 2 }))\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"negative\": True, \"person\": 3 }))\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"negative\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"negative\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"negative\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"negative\": True, \"question\": True, \"person\": 1 }))\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"negative\": True, \"question\": True, \"person\": 2 }))\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"negative\": True, \"question\": True, \"person\": 3 }))\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"negative\": True, \"question\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"negative\": True, \"question\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPastPerfect(sample_verb, { \"negative\": True, \"question\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"person\": 1 }))\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"person\": 2 }))\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"person\": 3 }))\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"question\": True, \"person\": 1 }))\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"question\": True, \"person\": 2 }))\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"question\": True, \"person\": 3 }))\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"question\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"question\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"question\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"negative\": True, \"person\": 1 }))\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"negative\": True, \"person\": 2 }))\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"negative\": True, \"person\": 3 }))\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"negative\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"negative\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"negative\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"negative\": True, \"question\": True, \"person\": 1 }))\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"negative\": True, \"question\": True, \"person\": 2 }))\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"negative\": True, \"question\": True, \"person\": 3 }))\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"negative\": True, \"question\": True, \"person\": 1, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"negative\": True, \"question\": True, \"person\": 2, \"quantity\": \"plural\" }))\n print (tr_suffix.makePastPerfectFuture(sample_verb, { \"negative\": True, \"question\": True, \"person\": 3, \"quantity\": \"plural\" }))\n\n print (tr_suffix.makeGenitive(u\"araba\"))\n print (tr_suffix.makeDative(\"araba\"))\n print (tr_suffix.makeAblative(\"araba\"))\n print (tr_suffix.makeAccusative(u\"araba\"))\n\n print (tr_suffix.makeGenitive(u\"Cem\", { \"proper_noun\": True} ))\n print (tr_suffix.makeDative(\"Cem\", { \"proper_noun\": True} ))\n print (tr_suffix.makeAblative(\"Cem\", { \"proper_noun\": True} ))\n print (tr_suffix.makeAccusative(u\"Cem\", { \"proper_noun\": True} ))\n\n\n print (tr_suffix.possessiveAffix(\"\u00c3\u00a7anta\", {\"person\": 1, \"quantity\": \"singular\"}))\n print (tr_suffix.possessiveAffix(\"\u00c3\u00a7anta\", {\"person\": 2, \"quantity\": \"singular\"}))\n print (tr_suffix.possessiveAffix(\"\u00c3\u00a7anta\", {\"person\": 3, \"quantity\": \"singular\"}))\n\n print (tr_suffix.possessiveAffix(\"\u00c3\u00a7anta\", {\"person\": 1, \"quantity\": \"plural\"}))\n print (tr_suffix.possessiveAffix(\"\u00c3\u00a7anta\", {\"person\": 2, \"quantity\": \"plural\"}))\n print (tr_suffix.possessiveAffix(\"\u00c3\u00a7anta\", {\"person\": 3, \"quantity\": \"plural\"}))", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "", "keywords": "", "license": "BSD License", "maintainer": "", "maintainer_email": "", "name": "turkish-suffix-library", "package_url": "https://pypi.org/project/turkish-suffix-library/", "platform": "", "project_url": "https://pypi.org/project/turkish-suffix-library/", "project_urls": null, "release_url": "https://pypi.org/project/turkish-suffix-library/0.2.0/", "requires_dist": null, "requires_python": "", "summary": "Turkish Suffix Library is a function for you to make suffixes according the Turkish grammatic rulues.", "version": "0.2.0" }, "last_serial": 3506476, "releases": { "0.2.0": [ { "comment_text": "", "digests": { "md5": "f7e7a3c44c5761c03b4fd5419f1baa0d", "sha256": "5a7c220c2cc7e42eab628c6a2981f756a032f6534bb79dde8bb23cd0b3ed9882" }, "downloads": -1, "filename": "turkish-suffix-library-0.2.0.tar.gz", "has_sig": false, "md5_digest": "f7e7a3c44c5761c03b4fd5419f1baa0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10707, "upload_time": "2018-01-20T04:56:50", "url": "https://files.pythonhosted.org/packages/31/1e/d2a962fd8a432a3779559d8039107968816ecc48509a0c53e40caa24f5df/turkish-suffix-library-0.2.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f7e7a3c44c5761c03b4fd5419f1baa0d", "sha256": "5a7c220c2cc7e42eab628c6a2981f756a032f6534bb79dde8bb23cd0b3ed9882" }, "downloads": -1, "filename": "turkish-suffix-library-0.2.0.tar.gz", "has_sig": false, "md5_digest": "f7e7a3c44c5761c03b4fd5419f1baa0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10707, "upload_time": "2018-01-20T04:56:50", "url": "https://files.pythonhosted.org/packages/31/1e/d2a962fd8a432a3779559d8039107968816ecc48509a0c53e40caa24f5df/turkish-suffix-library-0.2.0.tar.gz" } ] }