gdata-vaas is a Python library for the VaaS-API.
Project description
gdata-vaas
An SDK to easily utilize G DATA VaaS.
Verdict-as-a-Service (VaaS) is a service that provides a platform for scanning files for malware and other threats. It allows easy integration in your application. With a few lines of code, you can start scanning files for malware.
ATTENTION: This library is currently under heavy construction!
What does the SDK do?
It gives you as a developer a functions to talk to G DATA VaaS. It wraps away the complexity of the API into 2 basic functions.
for_sha256
If you calculate the sha256 for a file, you can request that sha256 against G DATA VaaS. It's the fastest way to get a verdict from our service.
for_file
You can also ask for a file itself. You will still get the benefit of a fast verdict via Sha256 because the SDK will do that for you first. But additionally, if we don't know the file, the file will get uploaded and (automatically) analyzed by us.
How to use
Install
pip3 install gdata-vaas
Import
from vaas import Vaas
Example: Request a verdict for file
async with Vaas() as vaas:
await vaas.connect(TOKEN)
path = "/path/to/file"
verdict = await vaas.for_file(path)
I'm interested in VaaS
You need credentials to use the service in your application. If you are interested in using VaaS, please contact us.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for gdata_vaas-0.0.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b79dea8f72cfa5bcd158bafba9082e757c164e14f1ba1770a1b69dc71eb6b009 |
|
MD5 | 74e6f1994bf3fc84921c6b5654e9707a |
|
BLAKE2b-256 | 7447f36a0ec9ba0b7db83d3936dc50748d491e0b6c543201da6909e7bcedc301 |