Metadata-Version: 2.0
Name: tarakimu
Version: 0.2.0
Summary: A python library for number to Swahili words conversion
Home-page: https://github.com/tehamalab/tarakimu
Author: Tehamalab
Author-email: developers@tehamalab.com
License: BSD license
Description-Content-Type: UNKNOWN
Keywords: tarakimu
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: Click (>=6.0)

========
Tarakimu
========


.. image:: https://img.shields.io/pypi/v/tarakimu.svg
        :target: https://pypi.python.org/pypi/tarakimu

.. image:: https://img.shields.io/travis/tehamalab/tarakimu.svg
        :target: https://travis-ci.org/tehamalab/tarakimu

.. image:: https://readthedocs.org/projects/tarakimu/badge/?version=latest
        :target: https://tarakimu.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status


.. image:: https://pyup.io/repos/github/tehamalab/tarakimu/shield.svg
     :target: https://pyup.io/repos/github/tehamalab/tarakimu/
     :alt: Updates



A python library for number to Swahili words conversion


* Free software: BSD license
* Documentation: https://tarakimu.readthedocs.io.


Installation
-------------

To install tarakimu library you can use pip:

.. code-block:: console

    $ pip install tarakimu


Basic Usage
-----------

*Examples*

Using Python

.. code-block:: python

    from tarakimu import num_to_words

    num_to_words('88')  # returns 'themanini na nane'

    num_to_words(88.88)  # returns 'themanini na nane nukta nane nane'

    num_to_words('-88000000')  # returns 'hasi kuadrilioni themanini na nane'


Using command line interface

.. code-block:: console

    $ tarakimu numtowords 88  # writes to the standard output 'themanini na nane'


=======
History
=======

0.1.0 (2018-05-10)
------------------

* Package created.

0.2.0 (2018-05-15)
------------------

* Adding multilingual support, Swahili and English.


