Metadata-Version: 2.1
Name: waktusolat
Version: 1.0.0
Summary: Prayer times API wrapper
Home-page: https://github.com/sypleks/python-waktu-solat
License: MIT
Keywords: api,wrapper,prayer,malaysia,religion
Author: sypleks
Author-email: adamshafiq2008@outlook.com
Maintainer: sypleks
Maintainer-email: adamshafiq2008@outlook.com
Requires-Python: >=3.10,<4.0
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Religion
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: requests (>=2.28.1,<3.0.0)
Project-URL: Repository, https://github.com/sypleks/python-waktu-solat
Description-Content-Type: text/markdown

# python-waktu-solat
A simple API wrapper for [waktu-solat-api](https://zaimramlan.github.io/waktu-solat-api/). (Malaysia only)

# Installation
```sh
pip install waktusolat
```

# Basic usage
List all states:
```python
from waktusolat import WaktuSolat

client = WaktuSolat()
print(client.states())
```

List all zones:
```python
from waktusolat import WaktuSolat

client = WaktuSolat()
print(client.zones())
```

List all prayer times:
```python
from waktusolat import WaktuSolat

client = WaktuSolat()
print(client.prayer_times())
```

# License
[MIT](./LICENSE)

