Skip to content

Commit

Permalink
Merge pull request #20 from thc202/openapi-zap-class
Browse files Browse the repository at this point in the history
Add openaapi to ZAPv2 class
  • Loading branch information
psiinon authored Jun 27, 2017
2 parents 1fa8b46 + a8b9d07 commit e3a9381
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@
)
setup(
name="python-owasp-zap-v2.4",
version="0.0.11",
version="0.0.12",
description="OWASP ZAP 2.6 API client",
long_description="OWASP Zed Attack Proxy 2.6 API python client (the 2.4 package name has been kept to make it easier to upgrade)",
author="ZAP development team",
author_email='',
url="https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project",
download_url="https://github.com/zaproxy/zap-api-python/releases/tag/0.0.11",
download_url="https://github.com/zaproxy/zap-api-python/releases/tag/0.0.12",
platforms=['any'],
license="ASL2.0",
package_dir={
Expand Down
4 changes: 3 additions & 1 deletion src/zapv2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""

__docformat__ = 'restructuredtext'
__version__ = '0.0.11'
__version__ = '0.0.12'

import requests
from requests.packages.urllib3.exceptions import InsecureRequestWarning
Expand All @@ -38,6 +38,7 @@
from .httpSessions import httpSessions
from .importLogFiles import importLogFiles
from .importurls import importurls
from .openapi import openapi
from .params import params
from .pnh import pnh
from .pscan import pscan
Expand Down Expand Up @@ -88,6 +89,7 @@ def __init__(self, proxies=None, apikey=None):
self.httpsessions = httpSessions(self)
self.importLogFiles = importLogFiles(self)
self.importurls = importurls(self)
self.openapi = openapi(self)
self.params = params(self)
self.pnh = pnh(self)
self.pscan = pscan(self)
Expand Down

0 comments on commit e3a9381

Please sign in to comment.