Metadata-Version: 2.1
Name: ipaparser
Version: 1.0.0
Summary: Phonetically aware library for parsing IPA transcriptions
Home-page: https://github.com/danmysak/ipa-parser
Author: Danylo Mysak
Author-email: danmysak@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/danmysak/ipa-parser/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# IPA parser for Python

## Quick start
```python
from ipaparser import IPA

print([str(symbol) for symbol in IPA('[ˈpʰɹɛʔt͡sɫ̩]') if 'consonant' in symbol.features()])
```
```python
['pʰ', 'ɹ', 'ʔ', 't͡s', 'ɫ̩']
```

## Usage/reference

_Please see full documentation on [GitHub](https://github.com/danmysak/ipa-parser#readme)._


