Metadata-Version: 2.4
Name: securecorp-sdk
Version: 0.4.2
Summary: Official Python SDK for Secure Corp Threat Intelligence Platform
Author-email: Secure Corp DevSecOps Team <devops@securecorp-dev.io>
License: MIT
Project-URL: Homepage, https://securecorp.dev/developer/sdk
Project-URL: Documentation, https://securecorp.dev/docs
Project-URL: Repository, https://github.com/securecorp-dev/python-sdk
Project-URL: Bug Tracker, https://github.com/securecorp-dev/python-sdk/issues
Project-URL: Docker Image, https://hub.docker.com/r/securecorp/api-gateway
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Security
Classifier: Development Status :: 4 - Beta
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.28.0
Requires-Dist: pydantic>=2.0.0

# Secure Corp Python SDK (`securecorp-sdk`)

[![PyPI Version](https://img.shields.io/badge/pypi-v0.4.2-blue.svg)](https://pypi.org/project/securecorp-sdk/)
[![Build Status](https://github.com/securecorp-dev/python-sdk/workflows/publish-pypi/badge.svg)](https://github.com/securecorp-dev/python-sdk/actions)

Official Python SDK for integrating with Secure Corp Cloud API services and threat intelligence endpoints.

## Installation

```bash
pip install securecorp-sdk
```

## Quickstart

```python
from securecorp_sdk import SecureCorpClient

client = SecureCorpClient(api_key="sc_live_dummy_key_99823")
health = client.get_health()
print("Edge Status:", health)
```

## Documentation & Developer Portal
- Official Site: [https://securecorp.dev/developer](https://securecorp.dev/developer)
- PyPI Package: `securecorp-sdk`
- DockerHub Container: `securecorp/api-gateway`
- GitHub Repo: [securecorp-dev/python-sdk](https://github.com/securecorp-dev/python-sdk)
