Metadata-Version: 2.1
Name: netwrix-api
Version: 0.0.3
Summary: A library to interact with Netwrix Search API
Home-page: https://github.com/BongoEADGC6/netwrix-api
Author: Cliff Hults
Author-email: bongoeadgc6@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: sys
Requires-Dist: requests
Requires-Dist: json
Requires-Dist: logging

# Netwrix Search API Module

This is a python3 library to interact with [Netwrix Auditor](https://www.netwrix.com/auditor.html) 


Example:
```
from netwrix-api import Netwrix


filter_data = {
    "what": {"Contains": "GroupTest"},
    "datasource": "Active Directory",
    "objecttype": {"Contains": "Group"}
}
netwrix_host = "netwrixsv01.contoso.com"
username = "Username"
passwd = "ENTERPASSOWRD"
api = Netwrix.NetwrixAPI(netwrix_host, username, passwd)
results = api.queryDB(filter_data)
```


