agenticdome-python-sdk 1.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (23) hide show
  1. agenticdome_python_sdk-1.0.0/MANIFEST.in +10 -0
  2. agenticdome_python_sdk-1.0.0/PKG-INFO +42 -0
  3. agenticdome_python_sdk-1.0.0/README.md +8 -0
  4. agenticdome_python_sdk-1.0.0/agentguard_sdk/__init__.py +13 -0
  5. agenticdome_python_sdk-1.0.0/agentguard_sdk/client.py +1151 -0
  6. agenticdome_python_sdk-1.0.0/agentguard_sdk/scenarios.py +196 -0
  7. agenticdome_python_sdk-1.0.0/agenticdome_python_sdk.egg-info/PKG-INFO +42 -0
  8. agenticdome_python_sdk-1.0.0/agenticdome_python_sdk.egg-info/SOURCES.txt +21 -0
  9. agenticdome_python_sdk-1.0.0/agenticdome_python_sdk.egg-info/dependency_links.txt +1 -0
  10. agenticdome_python_sdk-1.0.0/agenticdome_python_sdk.egg-info/requires.txt +9 -0
  11. agenticdome_python_sdk-1.0.0/agenticdome_python_sdk.egg-info/top_level.txt +1 -0
  12. agenticdome_python_sdk-1.0.0/examples/agno_lateral_refund.py +23 -0
  13. agenticdome_python_sdk-1.0.0/examples/ai_foundry_callback_export.py +12 -0
  14. agenticdome_python_sdk-1.0.0/examples/crewai_lateral_refund.py +23 -0
  15. agenticdome_python_sdk-1.0.0/examples/mcp_remote_patch.py +12 -0
  16. agenticdome_python_sdk-1.0.0/examples/mesh_output_redaction.py +18 -0
  17. agenticdome_python_sdk-1.0.0/examples/microsoft_metadata_exfil.py +15 -0
  18. agenticdome_python_sdk-1.0.0/examples/salesforce_hidden_bcc.py +16 -0
  19. agenticdome_python_sdk-1.0.0/examples/servicenow_delete_logs.py +16 -0
  20. agenticdome_python_sdk-1.0.0/pyproject.toml +76 -0
  21. agenticdome_python_sdk-1.0.0/setup.cfg +4 -0
  22. agenticdome_python_sdk-1.0.0/setup.py +3 -0
  23. agenticdome_python_sdk-1.0.0/tests/test_client.py +293 -0
@@ -0,0 +1,10 @@
1
+ include README.md
2
+ include pyproject.toml
3
+ include setup.py
4
+
5
+ recursive-include examples *.py
6
+ recursive-include tests *.py
7
+
8
+ global-exclude __pycache__
9
+ global-exclude *.py[cod]
10
+ global-exclude .DS_Store
@@ -0,0 +1,42 @@
1
+ Metadata-Version: 2.4
2
+ Name: agenticdome-python-sdk
3
+ Version: 1.0.0
4
+ Summary: Official Python SDK for AgentGuard Intelligence Engine and Action Firewall.
5
+ Author: AgenticDome
6
+ License: Proprietary
7
+ Project-URL: Homepage, https://au.agenticdome.io
8
+ Project-URL: Repository, https://github.com/YOUR_ORG/agentguard-python-sdk
9
+ Project-URL: Documentation, https://github.com/YOUR_ORG/agentguard-python-sdk#readme
10
+ Project-URL: Issues, https://github.com/YOUR_ORG/agentguard-python-sdk/issues
11
+ Keywords: agentguard,agenticdome,ai-security,agent-security,guardrails,a2a,mcp,zero-trust,runtime-security
12
+ Classifier: Development Status :: 5 - Production/Stable
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Intended Audience :: Information Technology
15
+ Classifier: Topic :: Security
16
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
17
+ Classifier: Topic :: Internet :: WWW/HTTP
18
+ Classifier: Operating System :: OS Independent
19
+ Classifier: Programming Language :: Python :: 3
20
+ Classifier: Programming Language :: Python :: 3.9
21
+ Classifier: Programming Language :: Python :: 3.10
22
+ Classifier: Programming Language :: Python :: 3.11
23
+ Classifier: Programming Language :: Python :: 3.12
24
+ Requires-Python: >=3.9
25
+ Description-Content-Type: text/markdown
26
+ Requires-Dist: requests>=2.31.0
27
+ Requires-Dist: urllib3>=2.0.0
28
+ Provides-Extra: dev
29
+ Requires-Dist: pytest>=8.0.0; extra == "dev"
30
+ Requires-Dist: ruff>=0.5.0; extra == "dev"
31
+ Requires-Dist: mypy>=1.8.0; extra == "dev"
32
+ Requires-Dist: build>=1.0.0; extra == "dev"
33
+ Requires-Dist: twine>=5.0.0; extra == "dev"
34
+
35
+ # AgentGuard Python SDK
36
+
37
+ Official Python SDK for AgentGuard Intelligence Engine and Action Firewall.
38
+
39
+ ## Installation
40
+
41
+ ```bash
42
+ pip install agentguard-python-sdk
@@ -0,0 +1,8 @@
1
+ # AgentGuard Python SDK
2
+
3
+ Official Python SDK for AgentGuard Intelligence Engine and Action Firewall.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install agentguard-python-sdk
@@ -0,0 +1,13 @@
1
+ from .client import (
2
+ AgentGuardClient,
3
+ AgentGuardError,
4
+ AgentGuardHTTPError,
5
+ GuardrailClient,
6
+ )
7
+
8
+ __all__ = [
9
+ "AgentGuardClient",
10
+ "AgentGuardError",
11
+ "AgentGuardHTTPError",
12
+ "GuardrailClient",
13
+ ]