Metadata-Version: 2.3
Name: qualysdk
Version: 0.3.10
Summary: SDK for interacting with Qualys APIs, across most modules the platform offers.
License: MIT
Author: 0x41424142
Author-email: jake@jakelindsay.uk
Maintainer: Jake Lindsay
Maintainer-email: jake@jakelindsay.uk
Requires-Python: >=3.11,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Security
Requires-Dist: bs4 (>=0.0.2,<0.0.3)
Requires-Dist: defusedxml (>=0.7.1,<0.8.0)
Requires-Dist: frozendict (>=2.4.4,<3.0.0)
Requires-Dist: lxml (==6.0.0)
Requires-Dist: numpy (==2.3.2)
Requires-Dist: packaging (==25.0)
Requires-Dist: pandas (==2.3.1)
Requires-Dist: psycopg2 (>=2.9.9,<3.0.0) ; sys_platform == "win32"
Requires-Dist: psycopg2-binary (>=2.9.9,<3.0.0) ; sys_platform == "darwin"
Requires-Dist: psycopg2-binary (>=2.9.9,<3.0.0) ; sys_platform == "linux"
Requires-Dist: pymssql (==2.3.1)
Requires-Dist: pymysql (>=1.1.1,<2.0.0)
Requires-Dist: requests (==2.32.4)
Requires-Dist: sqlalchemy (>=2.0.37,<3.0.0)
Requires-Dist: xlsxwriter (==3.2.5)
Requires-Dist: xmltodict (>=0.13,<0.15)
Project-URL: Documentation, https://qualysdk.jakelindsay.uk
Project-URL: Homepage, https://github.com/0x41424142/qualysdk
Project-URL: Issues, https://github.com/0x41424142/qualysdk/issues
Project-URL: Repository, https://github.com/0x41424142/qualysdk
Description-Content-Type: text/markdown

# qualysdk - A Python SDK for Interacting With Qualys APIs
![Logo](https://raw.githubusercontent.com/0x41424142/qualysdk/main/imgs/qualysdkLogo.png)

[![Code Style: black](https://img.shields.io/badge/code%20style-black-000000.svg?style=for-the-badge)](https://github.com/psf/black) ![Development Status](https://img.shields.io/badge/in%20development-8A2BE2?style=for-the-badge)  ![PyPI - Latest Version](https://img.shields.io/pypi/v/qualysdk?style=for-the-badge&logo=pypi&logoColor=yellow) ![Python Versions](https://img.shields.io/pypi/pyversions/qualysdk?style=for-the-badge&logo=python&logoColor=yellow) ![GitHub Stars](https://img.shields.io/github/stars/0x41424142/qualysdk?style=for-the-badge) ![GitHub License](https://img.shields.io/github/license/0x41424142/qualysdk?style=for-the-badge)


![Black Formatter Status](https://github.com/0x41424142/qualysdk/actions/workflows/black.yml/badge.svg?event=push) ![CodeQL Scan Status](https://github.com/0x41424142/qualysdk/actions/workflows/codeql.yml/badge.svg?branch=main) [![CodeFactor](https://www.codefactor.io/repository/github/0x41424142/qualysdk/badge)](https://www.codefactor.io/repository/github/0x41424142/qualysdk)


This SDK attempts to make it much easier to interact with Qualys's various API endpoints, across as many modules as I can find time to code.

```py
from qualysdk.auth import BasicAuth
from qualysdk.vmdr import get_host_list

auth = BasicAuth(<username>, <password>, platform='qg1')

#Pull 4 pages of hosts, with "All/AGs" details & tags:
hosts = get_host_list(auth, details="All/AGs", show_tags=True, page_count=4)
>>>[VMDRHost(12345), ...]
```

## Current Supported Modules 


|Module| Status |
|--|--|
| GAV (Global AssetView) |✅ See GAV [documentation page](https://qualysdk.jakelindsay.uk/gav/) for supported calls ||
| VMDR | ✅ See VMDR [documentation page](https://qualysdk.jakelindsay.uk/vmdr/) for supported calls |
| PM (Patch Management) | ✅ See Patch Management [documentation page](https://qualysdk.jakelindsay.uk/patch/) for supported calls |
| WAS | ✅ See WAS [documentation page](https://qualysdk.jakelindsay.uk/was/) for supported calls |
| TC (TotalCloud) | ✅ See TotalCloud [documentation page](https://qualysdk.jakelindsay.uk/totalcloud/) for supported calls. |
|Connectors | Not Started |
|Cloud Agent | ✅ See Cloud Agent [documentation page](https://qualysdk.jakelindsay.uk/cloud_agent/) for supported calls |
|CS (Container Security) | ✅ See CS [documentation page](https://qualysdk.jakelindsay.uk/containersecurity/) for supported calls |
|CERT (Certificate View) | ✅ See CERT [documentation page](https://qualysdk.jakelindsay.uk/cert/) for supported calls |
|ADMIN (Administration) | Not Started |
|Asset Management & Tagging | ✅ See Tagging [documentation page](https://qualysdk.jakelindsay.uk/tagging/) for supported calls |
| SQL Data Uploads | ✅ See SQL [documentation page](https://qualysdk.jakelindsay.uk/sql/) for supported uploads/DBs |


# Documentation/Get Started


For more detailed information on the package, including how to get up and running, please see the [documentation](https://qualysdk.jakelindsay.uk).

# Disclaimer

This SDK tool is an independent project and is not an official product of Qualys. It has been developed and maintained solely by the names listed in the GitHub contributors list. Qualys has neither endorsed nor approved this SDK.

Users of this SDK are advised to use it at their own risk and discretion.

For official tools and support, please refer to the official Qualys resources and documentation.


