Metadata-Version: 2.1
Name: zarban-python-sdk
Version: 0.1
Summary: Python SDK for Zarban
Home-page: https://github.com/zarbanio/zarban-py
Author: Zarban
Author-email: info@zarban.io
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: openapi-generator-cli

# Zarban Python SDK Setup Guide

1. Clone the repository:

   ```
   git clone https://github.com/zarbanio/zarban-py.git
   cd zarban-python-sdk
   ```

2. Create and activate a virtual environment (optional but recommended):

   ```
   python -m venv venv
   source venv/bin/activate  # On Windows, use `venv\Scripts\activate`
   ```

3. Install the SDK in editable mode:

   ```
   pip install -e .
   ```

4. Verify the installation:
   ```
   python
   >>> import zarban_python_sdk
   >>> # If no error occurs, your package is installed correctly
   ```

Congratulations! You've now set up the Zarban Python SDK.
