An unofficial Python client for the Clover API v3
Project description
clover-api-py
An unofficial Python client for the Clover API v3. This library enables seamless interaction with the Clover API for managing inventory, orders, taxes, cash transactions, and more.
Features
- Fetch inventory details and stock levels.
- Update inventory items, including names, SKUs, and prices.
- Manage orders and summarize order data.
- Fetch and manage cash transactions.
- Retrieve tax rates and other merchant-specific details.
- Handles API pagination automatically for large datasets.
Installation
Install the package using pip:
pip install clover-api-py
Usage
Initialize the Client
To get started, initialize the client with your Clover API credentials.
from cloverapi.cloverapi_client import CloverApiClient
# Your Clover API credentials
API_TOKEN = "your_api_token"
MERCHANT_ID = "your_merchant_id"
REGION = "us" # Options: 'us', 'ca', 'eu', 'latam'
# Initialize the Clover API Client
client = CloverApiClient(auth_token=API_TOKEN, merchant_id=MERCHANT_ID, region=REGION)
Supported Regions
When initializing the client, specify the region parameter:
| Region | Code | Base URL |
|---|---|---|
| United States | us |
https://api.clover.com |
| Canada | ca |
https://ca.api.clover.com |
| Europe | eu |
https://eu.api.clover.com |
| Latin America | latam |
https://latam.api.clover.com |
Examples
Fetch All Inventory Items
inventory_items = client.inventory_service.get_all_inventory()
for item in inventory_items.get("elements", []):
print(item)
Fetch Details for a Specific Item
item_id = "ITEM_ID"
item_details = client.inventory_service.get_item_detail(item_id)
print(item_details)
Update Item Details
item_id = "ITEM_ID"
updated_item = client.inventory_service.update_item_detail(
item_id,
name="Updated Item Name",
sku="NEW_SKU123",
price=1500 # Price in cents (e.g., $15.00)
)
print(updated_item)
Retrieve Item Stock
item_id = "ITEM_ID"
item_stock = client.inventory_service.get_item_stock(item_id)
print(item_stock)
Update Item Stock
item_id = "ITEM_ID"
new_stock = client.inventory_service.update_item_stock(item_id, stock_count=20)
print(new_stock)
Fetch Tax Rates
tax_rates = client.tax_service.get_tax_rates()
for tax in tax_rates.get("elements", []):
print(tax)
Contributing
We welcome contributions! Please follow these steps:
- Fork the repository.
- Create a branch (
git checkout -b feature-name). - Commit your changes (
git commit -m 'Add feature'). - Push to your branch (
git push origin feature-name). - Create a pull request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file clover-api-py-0.0.18.tar.gz.
File metadata
- Download URL: clover-api-py-0.0.18.tar.gz
- Upload date:
- Size: 20.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e58b4c2ff0221efece87444efeb9ba50e761df02577ea4c16bd206113532ec6
|
|
| MD5 |
0c2dbe42ed2a54a964a0d9f7dadec6e3
|
|
| BLAKE2b-256 |
23bf77c735ee8f20842f5f3fbaa8e42afbd0a51128a6c06a9a6c22e97aeda761
|
File details
Details for the file clover_api_py-0.0.18-py2.py3-none-any.whl.
File metadata
- Download URL: clover_api_py-0.0.18-py2.py3-none-any.whl
- Upload date:
- Size: 28.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a681053a4e33ffad90d552abbc76bce27d9d38a7a7ee2062040548968956454
|
|
| MD5 |
8f5d394a33c4b4f544ab3613088b3c14
|
|
| BLAKE2b-256 |
449e72aa7c53568f55589be3448beddaab968bbcb2baf711c0dd4e6351685d46
|