pid-sdk 0.1.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.
- pid_sdk-0.1.0/PKG-INFO +36 -0
- pid_sdk-0.1.0/README.md +21 -0
- pid_sdk-0.1.0/pid_sdk/__init__.py +7 -0
- pid_sdk-0.1.0/pid_sdk/pid.py +40 -0
- pid_sdk-0.1.0/pid_sdk.egg-info/PKG-INFO +36 -0
- pid_sdk-0.1.0/pid_sdk.egg-info/SOURCES.txt +8 -0
- pid_sdk-0.1.0/pid_sdk.egg-info/dependency_links.txt +1 -0
- pid_sdk-0.1.0/pid_sdk.egg-info/top_level.txt +1 -0
- pid_sdk-0.1.0/pyproject.toml +22 -0
- pid_sdk-0.1.0/setup.cfg +4 -0
pid_sdk-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pid-sdk
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Universal Portable Identity SDK for the Agentic Era (PID)
|
|
5
|
+
Author-email: XY and Z <milo@xyandz.io>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://xyandz.io
|
|
8
|
+
Project-URL: Repository, https://github.com/XYANDZ-iO/pid-sdk
|
|
9
|
+
Keywords: pid,identity,agentic,aos,passport,xyandz
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# pid-sdk
|
|
17
|
+
|
|
18
|
+
Universal Portable Identity SDK for the Agentic Era.
|
|
19
|
+
|
|
20
|
+
## Install
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
pip install pid-sdk
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Quick Start
|
|
27
|
+
|
|
28
|
+
```python
|
|
29
|
+
from pid_sdk import PID
|
|
30
|
+
|
|
31
|
+
passport = PID.create(name="Sarah", domain="ad-intelligence")
|
|
32
|
+
passport.board("ad-intelligence", {"brand": "Glow Beauty", "budget": "$200K/month"})
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
- [GitHub](https://github.com/XYANDZ-iO/pid-sdk)
|
|
36
|
+
- [xyandz.io](https://xyandz.io)
|
pid_sdk-0.1.0/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# pid-sdk
|
|
2
|
+
|
|
3
|
+
Universal Portable Identity SDK for the Agentic Era.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install pid-sdk
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Quick Start
|
|
12
|
+
|
|
13
|
+
```python
|
|
14
|
+
from pid_sdk import PID
|
|
15
|
+
|
|
16
|
+
passport = PID.create(name="Sarah", domain="ad-intelligence")
|
|
17
|
+
passport.board("ad-intelligence", {"brand": "Glow Beauty", "budget": "$200K/month"})
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
- [GitHub](https://github.com/XYANDZ-iO/pid-sdk)
|
|
21
|
+
- [xyandz.io](https://xyandz.io)
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"""PID — Passport ID"""
|
|
2
|
+
import uuid
|
|
3
|
+
import time
|
|
4
|
+
from dataclasses import dataclass, field
|
|
5
|
+
from typing import Dict, Any
|
|
6
|
+
|
|
7
|
+
@dataclass
|
|
8
|
+
class PID:
|
|
9
|
+
id: str = field(default_factory=lambda: str(uuid.uuid4()))
|
|
10
|
+
name: str = ""
|
|
11
|
+
domain: str = ""
|
|
12
|
+
context: Dict[str, Any] = field(default_factory=dict)
|
|
13
|
+
created_at: float = field(default_factory=time.time)
|
|
14
|
+
|
|
15
|
+
@classmethod
|
|
16
|
+
def create(cls, name: str, domain: str = "", **kwargs) -> "PID":
|
|
17
|
+
return cls(name=name, domain=domain, context=kwargs)
|
|
18
|
+
|
|
19
|
+
def board(self, domain: str, context: dict):
|
|
20
|
+
self.domain = domain
|
|
21
|
+
self.context.update(context)
|
|
22
|
+
|
|
23
|
+
def export(self) -> dict:
|
|
24
|
+
return {
|
|
25
|
+
"id": self.id,
|
|
26
|
+
"name": self.name,
|
|
27
|
+
"domain": self.domain,
|
|
28
|
+
"context": self.context,
|
|
29
|
+
"created_at": self.created_at,
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
@classmethod
|
|
33
|
+
def load(cls, data: dict) -> "PID":
|
|
34
|
+
return cls(
|
|
35
|
+
id=data["id"],
|
|
36
|
+
name=data["name"],
|
|
37
|
+
domain=data.get("domain", ""),
|
|
38
|
+
context=data.get("context", {}),
|
|
39
|
+
created_at=data.get("created_at", time.time()),
|
|
40
|
+
)
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pid-sdk
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Universal Portable Identity SDK for the Agentic Era (PID)
|
|
5
|
+
Author-email: XY and Z <milo@xyandz.io>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://xyandz.io
|
|
8
|
+
Project-URL: Repository, https://github.com/XYANDZ-iO/pid-sdk
|
|
9
|
+
Keywords: pid,identity,agentic,aos,passport,xyandz
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# pid-sdk
|
|
17
|
+
|
|
18
|
+
Universal Portable Identity SDK for the Agentic Era.
|
|
19
|
+
|
|
20
|
+
## Install
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
pip install pid-sdk
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Quick Start
|
|
27
|
+
|
|
28
|
+
```python
|
|
29
|
+
from pid_sdk import PID
|
|
30
|
+
|
|
31
|
+
passport = PID.create(name="Sarah", domain="ad-intelligence")
|
|
32
|
+
passport.board("ad-intelligence", {"brand": "Glow Beauty", "budget": "$200K/month"})
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
- [GitHub](https://github.com/XYANDZ-iO/pid-sdk)
|
|
36
|
+
- [xyandz.io](https://xyandz.io)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pid_sdk
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pid-sdk"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Universal Portable Identity SDK for the Agentic Era (PID)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [{name = "XY and Z", email = "milo@xyandz.io"}]
|
|
13
|
+
keywords = ["pid", "identity", "agentic", "aos", "passport", "xyandz"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 3 - Alpha",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://xyandz.io"
|
|
22
|
+
Repository = "https://github.com/XYANDZ-iO/pid-sdk"
|
pid_sdk-0.1.0/setup.cfg
ADDED