https://github.com/ryderdamen/phonetic-alphabet
A Python package for converting characters and digits to phonetic alphabet equivalents.
https://github.com/ryderdamen/phonetic-alphabet
alpha-bravo alphabet aviation call-sign convert-characters phonetic phonetic-alphabet phonetic-alphabet-equivalents pypi python
Last synced: over 1 year ago
JSON representation
A Python package for converting characters and digits to phonetic alphabet equivalents.
- Host: GitHub
- URL: https://github.com/ryderdamen/phonetic-alphabet
- Owner: ryderdamen
- License: mit
- Created: 2018-11-25T16:09:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-28T02:04:36.000Z (over 7 years ago)
- Last Synced: 2025-03-25T07:36:06.735Z (over 1 year ago)
- Topics: alpha-bravo, alphabet, aviation, call-sign, convert-characters, phonetic, phonetic-alphabet, phonetic-alphabet-equivalents, pypi, python
- Language: Python
- Size: 19.5 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
[](https://circleci.com/gh/ryderdamen/phonetic-alphabet)
[](https://badge.fury.io/py/phonetic-alphabet)
# Phonetic Alphabet
A Python package for converting characters and digits to phonetic alphabet equivalents.
## Installation
Installation can be done with the Python Package Index (PyPI).
```bash
pip install phonetic-alphabet
```
## Examples
Converting an aircraft call-sign:
```python
import phonetic_alphabet as alpha
call_sign = 'CF-ABC'
response = alpha.read(call_sign)
>>> CHARLIE FOXTROT - ALPHA BRAVO CHARLIE
```
Converting digits:
```python
import phonetic_alphabet as alpha
heading = 290
response = alpha.read(heading)
>>> TWO NINER ZERO
```