Skip to content

Commit

Permalink
0.0.6 (#11)
Browse files Browse the repository at this point in the history
* Updated dependencies.

* Updated changelog, dependencies & usage example.

* Bumped version to 0.0.6

* Add shield.

* Fix formatting.
  • Loading branch information
Dextroz committed May 14, 2019
1 parent 89e53c8 commit fdea2ba
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 14 deletions.
19 changes: 10 additions & 9 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# virustotal-python
# virustotal-python 🐍
![PyPI](https://img.shields.io/pypi/v/virustotal-python.svg?style=flat-square)

A light wrapper around the public VirusTotal API.

# Dependancies
Expand All @@ -10,7 +12,7 @@ black = "*"
twine = "*"
[packages]
requests = "*"
requests = {extras = ["socks"],version = "*"}
```

```pipenv install```
Expand All @@ -25,7 +27,7 @@ Or

## Example Usage
```python
from virustotal import Virustotal
from virustotal_python import Virustotal
from pprint import pprint

# Normal Initialisation.
Expand Down Expand Up @@ -130,6 +132,8 @@ pprint(resp)

## Changelog

* 0.0.6 - Fixed usage example and dependencies in README.md, Setup github.io website, updated requirements.txt.

* 0.0.5 - Added Proxy support. Via HTTP(S) or using SOCKS: See [#8](https://github.com/Dextroz/virustotal-python/pull/8).

* 0.0.4 - README.md updated; dependencies updated.
Expand Down
Binary file modified requirements.txt
Binary file not shown.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="virustotal-python",
version="0.0.5",
version="0.0.6",
author="Dextroz",
author_email="[email protected]",
description="A light wrapper around the public VirusTotal API.",
Expand Down
2 changes: 1 addition & 1 deletion virustotal_python/virustotal.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __init__(self, API_KEY=None, PROXIES=None):
self.API_KEY = API_KEY
self.PROXIES = PROXIES
self.BASEURL = "https://www.virustotal.com/vtapi/v2/"
self.VERSION = "0.0.5"
self.VERSION = "0.0.6"
self.headers = {
"Accept-Encoding": "gzip, deflate",
"User-Agent": f"gzip, virustotal-python {self.VERSION}",
Expand Down

0 comments on commit fdea2ba

Please sign in to comment.