Metadata-Version: 2.4
Name: inceses
Version: 1.0
Summary: Turkish Phonetic Transcriptor for Python by Enis Tuna
Author-email: Enis Tuna <enissstuna@gmail.com>
Project-URL: Homepage, https://github.com/enistuna/inceses_turkish_phonetic_transcriptor
Project-URL: Issues, https://github.com/enistuna/inceses_turkish_phonetic_transcriptor
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# İnceses - Turkish Phonetic Transcriptor


*  The phonetic transcriptor function was first written for the [İncesöz](https://github.com/enistuna/incesoz_turkish_linguistics_analyzer) project in 2024 and is now being used for its own Python package for easier deployment and usability.
The function was first developed using the **Özgün Koşaner's** lecture notes from the Phonetics class at *Dokuz Eylul University's Linguistics* department.

## Explanation ##
* To use it, simply import the Python package and write the "inceses.phonetic_analysis('')" line of code. 
Finally, put the Turkish word you want to transcript in the quotation marks and run the code

## Installation ##
* To use the Turkish phonetic transciptor, first install the Python package using the pip command.
```
pip install inceses
```

## How to Use ##
```py
import inceses

decipher = inceses.phonetic_analysis('Enis Tuna ile yemeğe mi gittin?')

print(decipher)
>> "[ ɛnis tʰunα ile jɛme•e mi ɟittʰin? ]"
```
