Metadata-Version: 2.1
Name: kasperskytip
Version: 1.0
Summary: Kaspersky TIP unofficial API for Python
Home-page: https://github.com/clienthold/kaspersky-tip
Author: Dmitry Kondrashov
Keywords: api kaspersky antivirus malware scan
Requires-Python: >=3.7, <4
Description-Content-Type: text/markdown

# 🛡️ Kaspersky TIP API

**[Kaspersky Threat Intelligence Portal](https://opentip.kaspersky.com/)** unofficial API for Python

# ✨ Features
- Search by **hash** (md5, sha1, sha256)
- Search by **IP address**
- Search by **domain**
- Search by **URL**
- Upload **samples**

# 📥 Installation

```
pip install kasperskytip
```

# ▶️ Getting Started

```python
import kasperskytip

ks = kasperskytip.kaspersky_tip()
site = ks.search("google.com")

print(site.is_safe)
>>> True
```

# 📝 Usage

Please, see the usage examples on [readthedocs](https://kaspersky-tip.readthedocs.io/en/latest/)
