-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update virustotal.py * add param to docstring * refactor: Remove f string and trailing space. * feat: Add `VirustotalError` class. Add EOF. * feat: Add tests for `large_file` parameter. Add fixture `large_file_fixture` to setup and teardown a large file. * refactor: Remove testing pytest marks. * fix: Typo in test comment. * feat: Add example to upload a large file for analysis. * fix: Formatting using `black`. * chore: Prep for new release. Bump version to `0.2.0`. * docs: Add note to recommend v3 API use. Add changelog for `0.2.0`. * docs: Add link to PR. * docs: Add contributor. * chore: Bump version to `0.2.0`. * chore: Bump license year. Co-authored-by: dbrennand <[email protected]>
- Loading branch information
Showing
7 changed files
with
98 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
from virustotal_python.virustotal import Virustotal | ||
name = "virustotal-python" | ||
from virustotal_python.virustotal import VirustotalError | ||
name = "virustotal-python" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters