valleydam 0.1.0__tar.gz → 0.1.1__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.
- {valleydam-0.1.0 → valleydam-0.1.1}/PKG-INFO +3 -5
- {valleydam-0.1.0 → valleydam-0.1.1}/README.md +1 -3
- {valleydam-0.1.0 → valleydam-0.1.1}/setup.py +2 -2
- {valleydam-0.1.0 → valleydam-0.1.1}/src/valleydam.egg-info/PKG-INFO +3 -5
- {valleydam-0.1.0 → valleydam-0.1.1}/setup.cfg +0 -0
- {valleydam-0.1.0 → valleydam-0.1.1}/src/valleydam/__init__.py +0 -0
- {valleydam-0.1.0 → valleydam-0.1.1}/src/valleydam/cli.py +0 -0
- {valleydam-0.1.0 → valleydam-0.1.1}/src/valleydam/client.py +0 -0
- {valleydam-0.1.0 → valleydam-0.1.1}/src/valleydam/core.py +0 -0
- {valleydam-0.1.0 → valleydam-0.1.1}/src/valleydam/verifier.py +0 -0
- {valleydam-0.1.0 → valleydam-0.1.1}/src/valleydam.egg-info/SOURCES.txt +0 -0
- {valleydam-0.1.0 → valleydam-0.1.1}/src/valleydam.egg-info/dependency_links.txt +0 -0
- {valleydam-0.1.0 → valleydam-0.1.1}/src/valleydam.egg-info/entry_points.txt +0 -0
- {valleydam-0.1.0 → valleydam-0.1.1}/src/valleydam.egg-info/requires.txt +0 -0
- {valleydam-0.1.0 → valleydam-0.1.1}/src/valleydam.egg-info/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: valleydam
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary: A DNS-based cryptographic identity verification protocol for AI
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: A DNS-based cryptographic identity verification protocol for AI agents and automated HTTP clients.
|
|
5
5
|
Home-page: https://github.com/supra-nlpn/valley-dam
|
|
6
6
|
Author: Supra N.
|
|
7
7
|
Project-URL: Bug Tracker, https://github.com/supra-nlpn/valley-dam/issues
|
|
@@ -27,14 +27,12 @@ Dynamic: summary
|
|
|
27
27
|
|
|
28
28
|
# ⛰️ ValleyDam
|
|
29
29
|
|
|
30
|
-
ValleyDam is a lightweight, open protocol for verifying the identity of AI agents and web scrapers using
|
|
30
|
+
ValleyDam is a lightweight, open protocol for verifying the identity of automated HTTP clients — including AI agents and web scrapers — using DNS-backed cryptographic proof.
|
|
31
31
|
|
|
32
32
|
It enables a website to verify that a request *actually* came from `bot.openai.com` (or your startup’s domain) **without** API keys, IP allowlists, or complex authentication handshakes.
|
|
33
33
|
|
|
34
34
|
---
|
|
35
35
|
|
|
36
|
-
## The Problem
|
|
37
|
-
|
|
38
36
|
Today, websites have no reliable way to identify automated clients.
|
|
39
37
|
|
|
40
38
|
- **User-Agent strings are lies**
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
# ⛰️ ValleyDam
|
|
2
2
|
|
|
3
|
-
ValleyDam is a lightweight, open protocol for verifying the identity of AI agents and web scrapers using
|
|
3
|
+
ValleyDam is a lightweight, open protocol for verifying the identity of automated HTTP clients — including AI agents and web scrapers — using DNS-backed cryptographic proof.
|
|
4
4
|
|
|
5
5
|
It enables a website to verify that a request *actually* came from `bot.openai.com` (or your startup’s domain) **without** API keys, IP allowlists, or complex authentication handshakes.
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
-
## The Problem
|
|
10
|
-
|
|
11
9
|
Today, websites have no reliable way to identify automated clients.
|
|
12
10
|
|
|
13
11
|
- **User-Agent strings are lies**
|
|
@@ -5,9 +5,9 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name="valleydam",
|
|
8
|
-
version="0.1.
|
|
8
|
+
version="0.1.1",
|
|
9
9
|
author="Supra N.",
|
|
10
|
-
description="A DNS-based cryptographic identity verification protocol for AI
|
|
10
|
+
description="A DNS-based cryptographic identity verification protocol for AI agents and automated HTTP clients.",
|
|
11
11
|
long_description=long_description,
|
|
12
12
|
long_description_content_type="text/markdown",
|
|
13
13
|
url="https://github.com/supra-nlpn/valley-dam",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: valleydam
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary: A DNS-based cryptographic identity verification protocol for AI
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: A DNS-based cryptographic identity verification protocol for AI agents and automated HTTP clients.
|
|
5
5
|
Home-page: https://github.com/supra-nlpn/valley-dam
|
|
6
6
|
Author: Supra N.
|
|
7
7
|
Project-URL: Bug Tracker, https://github.com/supra-nlpn/valley-dam/issues
|
|
@@ -27,14 +27,12 @@ Dynamic: summary
|
|
|
27
27
|
|
|
28
28
|
# ⛰️ ValleyDam
|
|
29
29
|
|
|
30
|
-
ValleyDam is a lightweight, open protocol for verifying the identity of AI agents and web scrapers using
|
|
30
|
+
ValleyDam is a lightweight, open protocol for verifying the identity of automated HTTP clients — including AI agents and web scrapers — using DNS-backed cryptographic proof.
|
|
31
31
|
|
|
32
32
|
It enables a website to verify that a request *actually* came from `bot.openai.com` (or your startup’s domain) **without** API keys, IP allowlists, or complex authentication handshakes.
|
|
33
33
|
|
|
34
34
|
---
|
|
35
35
|
|
|
36
|
-
## The Problem
|
|
37
|
-
|
|
38
36
|
Today, websites have no reliable way to identify automated clients.
|
|
39
37
|
|
|
40
38
|
- **User-Agent strings are lies**
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|