File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " virustotal-python"
3- version = " 1.0.1 "
3+ version = " 1.0.2 "
44description = " A Python library to interact with the public VirusTotal v3 and v2 APIs."
55authors = [" dbrennand" ]
66license = " MIT"
Original file line number Diff line number Diff line change 88
99__all__ = ["Virustotal" , "VirustotalResponse" , "VirustotalError" ]
1010__author__ = "dbrennand"
11- __version__ = "1.0.1 "
11+ __version__ = "1.0.2 "
Original file line number Diff line number Diff line change @@ -267,14 +267,14 @@ def __init__(
267267 self .BASEURL = "https://www.virustotal.com/vtapi/v2/"
268268 self .HEADERS = {
269269 "Accept-Encoding" : "gzip, deflate" ,
270- "User-Agent" : f"gzip, virustotal-python 1.0.1 " ,
270+ "User-Agent" : f"gzip, virustotal-python 1.0.2 " ,
271271 }
272272 elif (API_VERSION == "v3" ) or (API_VERSION == 3 ):
273273 self .API_VERSION = API_VERSION
274274 self .BASEURL = "https://www.virustotal.com/api/v3/"
275275 self .HEADERS = {
276276 "Accept-Encoding" : "gzip, deflate" ,
277- "User-Agent" : f"gzip, virustotal-python 1.0.1 " ,
277+ "User-Agent" : f"gzip, virustotal-python 1.0.2 " ,
278278 "x-apikey" : f"{ self .API_KEY } " ,
279279 }
280280 else :
You can’t perform that action at this time.
0 commit comments