Metadata-Version: 2.1
Name: vtpython
Version: 2.2
Summary: A very simple Python package for submitting files to VirusTotal for analysis
Home-page: https://github.com/Mateodevv/virustotal-python
Author: Mateo Mrvelj
Author-email: burningmalwareblog@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# virustotal-python
A very simple implementation of the VirusTotal V3 API. You can examine files/urls/domains/IPs quickly by simply passing the filepath.

## installation

```pip install vtpython```

## Quickstart


``` 
from virustotalapi import VirusTotalClient

client = VirtusTotalClient('YOUR-API-KEY')

file_report = client.get_file_report('PATH/TO/FILE')

url_report = client.get_url_report('PATH/TO/FILE')

domain_report = client.get_domain_report('PAATH/TO/FILE')

ip_report = client.get_ip_address_report('PATH/TO/FILE')

```


