You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for considering contributing to **YourPackageName**! Contributions are what make open-source software great, and your help is highly appreciated.
4
+
5
+
## How to Contribute
6
+
7
+
### 1. Report Issues
8
+
9
+
If you encounter a bug, have a question, or want to suggest a feature:
10
+
- Check the [issues page](https://github.com/zohal/python-zohal-sdk/issues) to see if it has already been reported.
11
+
- If not, open a new issue with the following details:
12
+
-**Title**: A concise description of the issue.
13
+
-**Description**: Steps to reproduce the issue or the details of the feature request.
14
+
-**Environment**: Include Python version, OS, and any other relevant information.
15
+
16
+
### 2. Submit Code Changes
17
+
18
+
#### Fork the Repository
19
+
1. Go to the [repository](https://github.com/zohal/python-zohal-sdk) and fork it.
zohal-sdk is a Python SDK for interfacing with [zohal.io](https://zohal.io). It simplifies the process of interacting with the API by providing clean, Pythonic abstractions for all key functionalities.
10
+
11
+
## Installation
12
+
13
+
Install the SDK using pip:
14
+
15
+
```bash
16
+
pip install zohal-sdk
17
+
```
18
+
## Getting Started
19
+
20
+
Here's a quick example to get you started:
21
+
```python
22
+
from zohal_sdk import Client
23
+
24
+
# Initialize the client
25
+
client = Client(token="your_api_key")
26
+
27
+
# Example usage
28
+
response = client.shahkar(mobile="your mobile number", national_code="your national code")
29
+
print(response)
30
+
```
31
+
For detailed usage, check the documentation.
32
+
Documentation
33
+
34
+
## Documentation
35
+
36
+
Full documentation is available at [Documentation]().
37
+
38
+
## Contributing
39
+
40
+
We welcome contributions! See [CONTRIBUTING.md](./CONTRIBUTING.md) for guidelines.
0 commit comments