Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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