0
私たちは拒否されている私たちのプロキシ経由でVirustotal APIを渡そうとしています。 HTTPウェブサイトはコードを使用してアクセスできますが、HTTPSは通過しません。私たちを助ける数少ないサンプルコードを投稿してください。Python 2.7のHTTPS認証
import postfile
host = "www.virustotal.com"
selector = "https://www.virustotal.com/vtapi/v2/file/scan"
fields = [("apikey", "-- YOUR API KEY --")]
file_to_send = open("test.txt", "rb").read()
files = [("file", "test.txt", file_to_send)]
json = postfile.post_multipart(host, selector, fields, files)
print json