Metadata-Version: 2.1
Name: nua_sdk
Version: 1.1.2
Summary: SDK for NUA shared components
Author: NUA Team
Author-email: a.baqaleb@nuasecurity.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# NUA SDK

## Overview

The NUA SDK provides shared components and utilities for NUA security agents. This package serves as a foundation for building and extending NUA's security automation capabilities.

## Installation
You can install the NUA SDK by running:
```sh
pip install nua-sdk
```
## .env for authentication agent.
You must have this value in your .env to make sure the authentication agent will work properly
```sh
AUTH_AGENT_URL=auth agent deployment URL
```

## Use authentication agent
```sh
from nua_sdk import AuthenticationAgent
results = AuthenticationAgent(instructions, pentest_uuid).authenticate()
```
