Metadata-Version: 1.1
Name: python-quran-odoa
Version: 1.4
Summary: Library to get random ayah within quran including the translation.
Home-page: https://github.com/Keda87/python-quran-odoa
Author: Adiyat Mubarak
Author-email: adiyatmubarak@gmail.com
License: MIT
Description: Python Quran ODOA
        =================
        Python library to support ODOA (One Day One Ayat) campaign that will displaying random ayat within quran surah including the translation, currently supports only Bahasa Indonesia and English.
        
        This library using datasource from `https://github.com/semarketir/quranjson <https://github.com/semarketir/quranjson>`_
         
        
        Suitable for your bot or web apps.
        
        Prerequisite:
        -------------
        - Python v2.* & v3.*
        
        Installation:
        -------------
        
        **Manual**
        
        - Clone repo : https://github.com/Keda87/python-quran-odoa.git
        - Run : ``python setup.py install``
        
        **PIP**
        
        - ``pip install python-quran-odoa``
        
        **easy_install**
        
        - ``easy_install python-quran-odoa``
        
        **Usage:**
        ::
            from odoa import ODOA
           
            odoa = ODOA()
           
            # by default the translation using bahasa indonesia,
            # pass `lang='en'` if you want english translation.
            surah = odoa.get_random_surah()  # odoa.get_random_surah(lang='en')
            
            surah.get('ayat')
            surah.get('translate')
            surah.get('sound')
            surah.get('description')
        
Keywords: development quran
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
