Metadata-Version: 2.1
Name: pygharar
Version: 0.0.2
Summary: Gharar client in python
License: GPLv3
Author: Yazdan Ranjbar
Author-email: Yazdan_ra@icloud.com
Requires-Python: >=3.6.1,<4.0.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: requests (>=2.25.1,<3.0.0)
Description-Content-Type: text/markdown

# Gharar Python Client

This is a python adaptor for interact with 
[Gharar](https://http://gharar.ir) service.

# Installation

You can easily install the package via command line below:

```commandline
pip install pygharar
```

# Usage

```python
from pygharar import Gharar

my_gharar = Gharar(
    service_url="https://gharar.ir/",
    authorization_token="PUT YOUR OWN TOKEN HERE", 
    max_retry=3
)
```

