preclick 0.1.0__py3-none-any.whl
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.
- preclick/__init__.py +31 -0
- preclick/_client.py +1289 -0
- preclick/_errors.py +52 -0
- preclick/py.typed +0 -0
- preclick-0.1.0.dist-info/METADATA +421 -0
- preclick-0.1.0.dist-info/RECORD +8 -0
- preclick-0.1.0.dist-info/WHEEL +4 -0
- preclick-0.1.0.dist-info/licenses/LICENSE +201 -0
preclick/__init__.py
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Copyright 2026 CybrLab.ai
|
|
2
|
+
# SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
|
|
4
|
+
"""
|
|
5
|
+
preclick -- async Python client for the PreClick URL security scanning
|
|
6
|
+
service. Hosted endpoint, scan-oriented public API, no MCP protocol
|
|
7
|
+
vocabulary in the public surface.
|
|
8
|
+
|
|
9
|
+
Public surface: two primary methods (scan, scan_with_intent) plus five
|
|
10
|
+
job methods (start_scan, start_scan_with_intent, get_scan_status,
|
|
11
|
+
get_scan_result, wait_for_scan) for explicit control. See README.md
|
|
12
|
+
for usage.
|
|
13
|
+
|
|
14
|
+
Publisher: CybrLab.ai (https://cybrlab.ai)
|
|
15
|
+
Service: PreClick (https://preclick.ai)
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
from ._client import PRECLICK_ENDPOINT, PreClickClient
|
|
19
|
+
from ._errors import (
|
|
20
|
+
PreClickConnectionError,
|
|
21
|
+
PreClickError,
|
|
22
|
+
PreClickRemoteError,
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
__all__ = [
|
|
26
|
+
"PreClickClient",
|
|
27
|
+
"PreClickError",
|
|
28
|
+
"PreClickConnectionError",
|
|
29
|
+
"PreClickRemoteError",
|
|
30
|
+
"PRECLICK_ENDPOINT",
|
|
31
|
+
]
|