Skip to content

Commit 4cc894b

Browse files
committed
Minor cosmetic changes
1 parent 5a3f9d7 commit 4cc894b

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

ivona_api/__init__.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
# -*- coding: utf-8 -*-
2+
"""
3+
ivona_api - Python library that helps you connect to Amazon's IVONA Speech
4+
Cloud from within your Python project.
5+
"""
26
from __future__ import absolute_import, unicode_literals
37

48
from ivona_api.ivona_api import IvonaAPI # noqa
59

610

11+
__title__ = 'ivona_api'
712
__version__ = '0.2.0'
13+
__author__ = 'Pythonity'
14+
__license__ = 'MIT'
15+
__url__ = 'https://github.com/Pythonity/python-ivona-api'

ivona_api/exceptions.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# -*- coding: utf-8 -*-
2+
"""
3+
ivona_api related exceptions
4+
"""
25
from __future__ import absolute_import, unicode_literals
36

47

ivona_api/ivona_api.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# -*- coding: utf-8 -*-
2+
"""
3+
ivona_api main module
4+
"""
25
from __future__ import absolute_import, unicode_literals
36

47
import os

0 commit comments

Comments
 (0)