We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if the object has been created locally instead of retrieved:
https://github.com/VirusTotal/vt-py/blob/master/vt/client.py#L586C33-L586C57
example: rules attribute will not be uploaded.
The text was updated successfully, but these errors were encountered:
I tool at look at this, and there's no way to do fix it in a way that makes sense for the API user. Instead you could simply do this:
with vt.Client(...) as client: id = '11111111' ruleset = vt.Object('hunting_ruleset', obj_id=id) ruleset.rules = 'eso' client.patch(...)
Sorry, something went wrong.
No branches or pull requests
if the object has been created locally instead of retrieved:
https://github.com/VirusTotal/vt-py/blob/master/vt/client.py#L586C33-L586C57
example:
rules attribute will not be uploaded.
The text was updated successfully, but these errors were encountered: