Metadata-Version: 2.4
Name: hgbest-client-python
Version: 2.4.4
Summary: Python SDK for the HgBest API, providing secure, signed access to various services.
Home-page: https://github.com/HAVENGROUP12/sdk-python.git
Author: HAVENGROUP
Author-email: agborboris5@gmail.com
Keywords: hgbest api sdk client
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.25.1
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# HgBest Python SDK

Official Python SDK for the [HgBest Analytics API](https://hgbest.online).

## Get your API key

You need a free API key to use this SDK.
**Sign up in 60 seconds at [https://hgbest.online](https://hgbest.online)**

## Installation

pip install hgbest-client-python

## Quick start

```python
from hgbest_client import HgBestClientPython

client = HgBestClientPython(
    api_key="your_api_key",
    api_secret="your_api_secret"
)

# Risk
result = client.risk.global_supply_chain_alert({...})

# Finance
result = client.finance.macro_sentiment_score({...})

# Market
result = client.market.algorithmic_divergence_signal({...})

# AML/KYC
result = client.aml_kyc.verify({
    "id_image_base64": "data:image/jpeg;base64,...",
    "selfie_base64":   "data:image/jpeg;base64,...",
    "webhook_url":     "https://yourapp.com/webhook"
})
```

## Support

Visit [https://hgbest.online](https://hgbest.online) for docs and support.
