Metadata-Version: 2.1
Name: aisapi
Version: 0.0.4
Summary: UNKNOWN
Home-page: https://github.com/sviete/AIS-api
Author: AI-Speaker
Author-email: info@ai-speaker.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: aiohttp
Requires-Dist: async-timeout

# AIS-api [![Build Status][travis_status]][travis] [![PyPI version][pypi_badge]][pypi]

_Python wrapper package for the AIS API._

## Install

```bash
pip install aisapi
```

Look at the file `example.py` for a usage example.

[travis_status]: https://travis-ci.org/sviete/AIS-api.svg?branch=master
[travis]: https://travis-ci.org/sviete/ais-api
[pypi]:https://pypi.org/project/aisapi/
[pypi_badge]: https://badge.fury.io/py/aisapi.svg


## Develop

```bash
git clone https://github.com/sviete/AIS-api.git

```


## Publish the new version to pip

```bash
rm -rf dist
python3 setup.py sdist bdist_wheel
twine upload dist/*
```


