Metadata-Version: 2.1
Name: pydmart
Version: 0.0.1
Summary: A client to connect to a Dmart isntance
Home-page: https://github.com/edraj/pydmart
Author: <Saad Adel>
Author-email: saad.adel539@yahoo.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Pydmart

This is a Python Dmart client used to interact with a Dmart instance


## Installation

Pydmart is distributed via [PyPI](https://pypi.org/project/pydmart/):

```python
pip install pydmart
```

## Example

Just two steps and you will be ready to interact with your Dmart instance

1. instantiate an object `d_client = DmartService({dmart_instance_url}, {username}, {password})`
2. connect the client to the Dmart instance and authenticate your user `await d_client.connect()`

then you will be able to retrieve your profile as simple as 
`await d_client.get_profile()`
