Metadata-Version: 2.1
Name: aladhan.py
Version: 1.2.0
Summary: A Python wrapper for the Aladhan prayer times API
Home-page: https://github.com/HETHAT/aladhan.py
Author: HETHAT
Author-email: zhethat@gmail.com
License: MIT
Project-URL: Documentation, https://aladhanpy.rtfd.org 
Project-URL: Issue tracker, https://github.com/HETHAT/aladhan.py/issues
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.7
Description-Content-Type: text/x-rst
Provides-Extra: async
Provides-Extra: sync
License-File: LICENSE

``aladhan.py`` is a pythonic wrapper for the `Aladhan prayer times <https://aladhan.com/prayer-times-api>`_ API.

.. image:: https://img.shields.io/pypi/v/aladhan.py?color=blue
    :target: https://pypi.python.org/pypi/aladhan.py
    :alt: PyPI version info
.. image:: https://img.shields.io/pypi/pyversions/aladhan.py?color=blue
    :target: https://pypi.python.org/pypi/aladhan.py
    :alt: Supported Python versions
.. image:: https://img.shields.io/discord/831992562986123376.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2
    :target: https://discord.gg/jeBGF8Veud
    :alt: Discord support server
.. image:: https://codecov.io/gh/HETHAT/aladhan.py/branch/main/graph/badge.svg
    :target: https://codecov.io/gh/HETHAT/aladhan.py
    :alt: Code coverage

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

**Python 3.7 or higher is required.**

To Install ``aladhan.py`` with pip:

.. code:: sh

    pip install aladhan.py

To install only with synchronous requirements

.. code:: sh

    pip install aladhan.py[sync]

To install only with asynchronous requirements

.. code:: sh

    pip install aladhan.py[async]

Quick Example
-------------

.. code:: py

    import aladhan

    client = aladhan.Client()
    prayer_times = client.get_timings_by_address("London")
    for prayer_time in prayer_times:
        print(prayer_time)

*You can look into more examples* `here <https://github.com/HETHAT/aladhan.py/tree/main/examples>`_

Contribute
----------

- `Source Code <https://github.com/HETHAT/aladhan.py>`_
- `Issue Tracker <https://github.com/HETHAT/aladhan.py/issues>`_


Support
-------

If you are having issues, please let me know by joining the `discord support server <https://discord.gg/jeBGF8Veud>`_

License
-------

The project is licensed under the MIT license.

Links
------

- `PyPi <https://pypi.python.org/pypi/aladhan.py>`_
- `Discord support server <https://discord.gg/jeBGF8Veud>`_
- `Documentation <https://aladhanpy.readthedocs.io/en/latest>`_
