runegrid 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.
runegrid-1.0.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 setapart-design
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,62 @@
1
+ Metadata-Version: 2.4
2
+ Name: runegrid
3
+ Version: 1.0.0
4
+ Summary: RuneGrid Universal Trust Infrastructure — Python SDK
5
+ Author-email: SetApart Labs <sarat@setapartinc.ai>
6
+ License: MIT
7
+ Project-URL: Homepage, https://runegrid.ai
8
+ Project-URL: Documentation, https://api.runegrid.ai/docs
9
+ Project-URL: Repository, https://github.com/setapart-design/runegrid-python-sdk
10
+ Keywords: trust,verification,credentials,runegrid
11
+ Requires-Python: >=3.9
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: httpx>=0.27.0
15
+ Dynamic: license-file
16
+
17
+ # runegrid
18
+
19
+ Official Python SDK for the [RuneGrid](https://runegrid.ai) Universal Trust Infrastructure API.
20
+
21
+ ## Installation
22
+
23
+ ```bash
24
+ pip install runegrid
25
+ ```
26
+
27
+ ## Quick Start
28
+
29
+ ```python
30
+ from runegrid.sdk import RuneGridClient
31
+
32
+ client = RuneGridClient(
33
+ base_url="https://api.runegrid.ai",
34
+ api_key="rg_live_...",
35
+ )
36
+
37
+ result = client.verify(
38
+ person_id="uuid",
39
+ claim_type="employment",
40
+ claim={
41
+ "employer_name": "Salesforce",
42
+ "start_date": "2021-01",
43
+ },
44
+ )
45
+
46
+ print(result.confidence_score)
47
+ ```
48
+
49
+ ## Documentation
50
+
51
+ - [API Reference](https://api.runegrid.ai/docs)
52
+ - [Developer Hub](https://runegrid.ai/developers)
53
+ - [Marketplace](https://runegrid.ai/marketplace)
54
+
55
+ ## Support
56
+
57
+ - [Contact](https://runegrid.ai/contact)
58
+ - [Trust Center](https://runegrid.ai/trust)
59
+
60
+ ## License
61
+
62
+ MIT — see [LICENSE](./LICENSE)
@@ -0,0 +1,46 @@
1
+ # runegrid
2
+
3
+ Official Python SDK for the [RuneGrid](https://runegrid.ai) Universal Trust Infrastructure API.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install runegrid
9
+ ```
10
+
11
+ ## Quick Start
12
+
13
+ ```python
14
+ from runegrid.sdk import RuneGridClient
15
+
16
+ client = RuneGridClient(
17
+ base_url="https://api.runegrid.ai",
18
+ api_key="rg_live_...",
19
+ )
20
+
21
+ result = client.verify(
22
+ person_id="uuid",
23
+ claim_type="employment",
24
+ claim={
25
+ "employer_name": "Salesforce",
26
+ "start_date": "2021-01",
27
+ },
28
+ )
29
+
30
+ print(result.confidence_score)
31
+ ```
32
+
33
+ ## Documentation
34
+
35
+ - [API Reference](https://api.runegrid.ai/docs)
36
+ - [Developer Hub](https://runegrid.ai/developers)
37
+ - [Marketplace](https://runegrid.ai/marketplace)
38
+
39
+ ## Support
40
+
41
+ - [Contact](https://runegrid.ai/contact)
42
+ - [Trust Center](https://runegrid.ai/trust)
43
+
44
+ ## License
45
+
46
+ MIT — see [LICENSE](./LICENSE)
@@ -0,0 +1,23 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "runegrid"
7
+ version = "1.0.0"
8
+ description = "RuneGrid Universal Trust Infrastructure — Python SDK"
9
+ readme = "README.md"
10
+ license = {text = "MIT"}
11
+ authors = [{name = "SetApart Labs", email = "sarat@setapartinc.ai"}]
12
+ keywords = ["trust", "verification", "credentials", "runegrid"]
13
+ requires-python = ">=3.9"
14
+ dependencies = ["httpx>=0.27.0"]
15
+
16
+ [project.urls]
17
+ Homepage = "https://runegrid.ai"
18
+ Documentation = "https://api.runegrid.ai/docs"
19
+ Repository = "https://github.com/setapart-design/runegrid-python-sdk"
20
+
21
+ [tool.setuptools.packages.find]
22
+ where = ["."]
23
+ include = ["runegrid*"]
@@ -0,0 +1,62 @@
1
+ Metadata-Version: 2.4
2
+ Name: runegrid
3
+ Version: 1.0.0
4
+ Summary: RuneGrid Universal Trust Infrastructure — Python SDK
5
+ Author-email: SetApart Labs <sarat@setapartinc.ai>
6
+ License: MIT
7
+ Project-URL: Homepage, https://runegrid.ai
8
+ Project-URL: Documentation, https://api.runegrid.ai/docs
9
+ Project-URL: Repository, https://github.com/setapart-design/runegrid-python-sdk
10
+ Keywords: trust,verification,credentials,runegrid
11
+ Requires-Python: >=3.9
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: httpx>=0.27.0
15
+ Dynamic: license-file
16
+
17
+ # runegrid
18
+
19
+ Official Python SDK for the [RuneGrid](https://runegrid.ai) Universal Trust Infrastructure API.
20
+
21
+ ## Installation
22
+
23
+ ```bash
24
+ pip install runegrid
25
+ ```
26
+
27
+ ## Quick Start
28
+
29
+ ```python
30
+ from runegrid.sdk import RuneGridClient
31
+
32
+ client = RuneGridClient(
33
+ base_url="https://api.runegrid.ai",
34
+ api_key="rg_live_...",
35
+ )
36
+
37
+ result = client.verify(
38
+ person_id="uuid",
39
+ claim_type="employment",
40
+ claim={
41
+ "employer_name": "Salesforce",
42
+ "start_date": "2021-01",
43
+ },
44
+ )
45
+
46
+ print(result.confidence_score)
47
+ ```
48
+
49
+ ## Documentation
50
+
51
+ - [API Reference](https://api.runegrid.ai/docs)
52
+ - [Developer Hub](https://runegrid.ai/developers)
53
+ - [Marketplace](https://runegrid.ai/marketplace)
54
+
55
+ ## Support
56
+
57
+ - [Contact](https://runegrid.ai/contact)
58
+ - [Trust Center](https://runegrid.ai/trust)
59
+
60
+ ## License
61
+
62
+ MIT — see [LICENSE](./LICENSE)
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ runegrid.egg-info/PKG-INFO
5
+ runegrid.egg-info/SOURCES.txt
6
+ runegrid.egg-info/dependency_links.txt
7
+ runegrid.egg-info/requires.txt
8
+ runegrid.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ httpx>=0.27.0
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+