Metadata-Version: 2.1
Name: fonemas
Version: 1.0.4
Summary: Phonologic transcription of Spanish
Home-page: https://github.com/fsanzl/fonemas
Author: Fernando Sanz-Lázaro
Author-email: fsanzl@gmail.com
License: LGPL
Project-URL: Source, https://github.com/fsanzl/fonemas/
Project-URL: Tracker, https://github.com/fsanzl/fonemas/issues
Description: [![License: LGPL](https://img.shields.io/github/license/fsanzl/fonemas)](https://opensource.org/licenses/LGPL-2.1)
        [![Version: 1.0.2-15](https://img.shields.io/github/v/release/fsanzl/fonemas)](https://pypi.org/project/fonemas/)
        [![Python versions: 3.5, 3.6, 3.7, 3.8, 3.9](https://img.shields.io/pypi/pyversions/fonemas)](https://pypi.org/project/fonemas/)
        
        
        <h2 align="center">Fonemas</h2>
        <h3 align="center">A Python phonologic transcription library for Spanish</h2>
        
        
        *fonemas* is a Python library of methods and functions for phonologic transcription of Spanish words.
        
        This library is part of the research project [Sound and Meaning in Spanish Golden Age Literature](https://soundandmeaning.univie.ac.at/). Automatic verse scansion required identifying phonologic features that can be used using this library.
        
        ## Installation
        
        ```bash
        pip3 install fonemas
        ```
        
        ## Use
        
        The library provides the function *transcribe()*. The function takes a Spanish word as a single string. It returns a strings list containing syllables in IPA notation.
        
        
        ```python
        >>> from fonemas import transcribe
        >>> transcribe('Averigüéis')
        ['a', 'be', 'ɾi', "'gwejs"]
        ```
        
        ## Description
        
        The transcription is done according to the Spanish phonology and phonotactics described by Quilis (2019).
        
        
        ## Contributions
        
        Feel free to contribute using the [GitHub Issue Tracker](https://github.com/fsanzl/fonemas/issues) for feedback, suggestions, or bug reports.
        
        
        ## Licence
        
        This project is under GNU LGPL 2.1. See [LICENCE](https://github.com/fsanzl/fonemas/LICENCE) for details.
        
        ## References
        
        Quilis, Antonio, *Tratado de fonología y fonética españolas*. Madrid, Gredos, 2019.
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.5
Classifier: Natural Language :: Spanish
Requires-Python: >=3.5
Description-Content-Type: text/markdown
