vt-py
vt-py copied to clipboard
The official Python 3 client library for VirusTotal
It would be nice if there were some logging.debug() calls throughout the library to assist with troubleshooting exactly what requests are being made with what headers.
Hi, First of all sorry for not providing PR, lack of spare time. The problem I faced is not strictly an vt-py issue but i beleave that protection against such...
Add type hints to improve DX (#34)
Type hinting improves DX if you are using a modern IDE like VS Code. So how about adding type hints to the library? I will work on that if it...
I have been meaning to ask this, does the function intend to close the file after the scanning? ```py async def virus_analysis_hash(md5_hash): with suppress(Exception): result = await client.get_object_async(f"/files/{md5_hash}") return result.last_analysis_stats...
Original Submission: ``` client.get_object fails when attempting to pull resolutions. example: ``` resolutions = client.get_object("/ip_addresses/46.232.251.191/resolutions") ``` This works through the API developers console, but not via the vt-py library. https://developers.virustotal.com/reference/ip-relationships...
Requested by [email protected] from Mandiant. http://screen/7XE2qzJi5bavDEj http://screen/AUoMzZCzjPMZbiK
Hey, To ease integration in 3rd party environments, do you have an OpenAPI specifications file of the entire VirusTotal API ? It would be great to have one so that...
Hi, I would like to use the VT API to label malware binaries by their family or threat category. When I upload a binary (eba1c664d265f2bbe4b4dfb466fad46c36727c63ad2ef25bc5942cd0235a0c63) to VT's web interface (you...