Metadata-Version: 2.1
Name: phonetic-alphabet
Version: 0.1.0
Summary: Convert characters and digits to phonetic alphabet equivalents.
Home-page: http://github.com/ryderdamen/phonetic-alphabet
Author: Ryder Damen
Author-email: dev@ryderdamen.com
License: MIT
Keywords: phonetic alphabet aviation flight alpha bravo charlie niner
Platform: UNKNOWN
Description-Content-Type: text/markdown

[![CircleCI](https://circleci.com/gh/ryderdamen/phonetic-alphabet.svg?style=shield)](https://circleci.com/gh/ryderdamen/phonetic-alphabet)
[![PyPI version](https://badge.fury.io/py/phonetic-alphabet.svg)](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
```

