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.
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 3 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_url
If you want to request if a file behind a URL is safe, you can specify the URL as well. Depending on the file size, the duration for the analysis can vary.
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
Installation
pip3 install gdata-vaas
Import
from vaas import Vaas, ClientCredentialsGrantAuthenticator
Request a verdict
Authentication & Initializing:
authenticator = ClientCredentialsGrantAuthenticator(
CLIENT_ID,
CLIENT_SECRET,
TOKEN_URL,
SSL_VERIFICATION
)
Verdict Request for SHA256:
async with Vaas() as vaas:
await vaas.connect(await authenticator.get_token())
sha256 = "275a021bbfb6489e54d471899f7db9d1663fc695ec2fe2a2c4538aabf651fd0f"
verdict = await vaas.for_sha256(sha256)
Verdict Request for a file:
async with Vaas() as vaas:
await vaas.connect(await authenticator.get_token())
path = "/path/to/file"
verdict = await vaas.for_file(path)
Verdict Request for a URL:
async with Vaas() as vaas:
await vaas.connect(await authenticator.get_token())
url = "https://www.gdatasoftware.com/oem/verdict-as-a-service"
verdict = await vaas.for_url(url)
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.
Developing with Visual Studio Code
Every single SDKs also includes Devcontainer. If you use the Visual Studio Code Dev Containers extension, you can run the code in a full-featured development environment.
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-5.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7fac2b8b367c8cc90a805907cae7a0eb3ac0e0de92909e3a1986278469efab8b |
|
MD5 | 15fc71eb8e6c30b6c1ab2348257b4df5 |
|
BLAKE2b-256 | 8b9ccf4a1762df779b1d4aab05ffd831565b03f110aa5503ddc72cbe04a44ce9 |