swiftapi-python 1.0.0__tar.gz → 1.0.2__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.
- {swiftapi_python-1.0.0 → swiftapi_python-1.0.2}/PKG-INFO +4 -7
- {swiftapi_python-1.0.0 → swiftapi_python-1.0.2}/README.md +2 -3
- {swiftapi_python-1.0.0 → swiftapi_python-1.0.2}/pyproject.toml +2 -4
- {swiftapi_python-1.0.0 → swiftapi_python-1.0.2}/swiftapi_python.egg-info/PKG-INFO +4 -7
- {swiftapi_python-1.0.0 → swiftapi_python-1.0.2}/setup.cfg +0 -0
- {swiftapi_python-1.0.0 → swiftapi_python-1.0.2}/swiftapi/__init__.py +0 -0
- {swiftapi_python-1.0.0 → swiftapi_python-1.0.2}/swiftapi/client.py +0 -0
- {swiftapi_python-1.0.0 → swiftapi_python-1.0.2}/swiftapi/enforcement.py +0 -0
- {swiftapi_python-1.0.0 → swiftapi_python-1.0.2}/swiftapi/exceptions.py +0 -0
- {swiftapi_python-1.0.0 → swiftapi_python-1.0.2}/swiftapi/utils.py +0 -0
- {swiftapi_python-1.0.0 → swiftapi_python-1.0.2}/swiftapi/verifier.py +0 -0
- {swiftapi_python-1.0.0 → swiftapi_python-1.0.2}/swiftapi_python.egg-info/SOURCES.txt +0 -0
- {swiftapi_python-1.0.0 → swiftapi_python-1.0.2}/swiftapi_python.egg-info/dependency_links.txt +0 -0
- {swiftapi_python-1.0.0 → swiftapi_python-1.0.2}/swiftapi_python.egg-info/requires.txt +0 -0
- {swiftapi_python-1.0.0 → swiftapi_python-1.0.2}/swiftapi_python.egg-info/top_level.txt +0 -0
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: swiftapi-python
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: SwiftAPI Python SDK - AI Action Verification Gateway
|
|
5
5
|
Author-email: Rayan Pal <rayan@swiftapi.ai>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Project-URL: Homepage, https://swiftapi.ai
|
|
8
|
-
Project-URL: Documentation, https://docs
|
|
9
|
-
Project-URL: Repository, https://github.com/swiftapi/swiftapi-python
|
|
10
|
-
Project-URL: Issues, https://github.com/swiftapi/swiftapi-python/issues
|
|
8
|
+
Project-URL: Documentation, https://getswiftapi.com/docs
|
|
11
9
|
Keywords: swiftapi,ai,verification,attestation,security,governance,enforcement
|
|
12
10
|
Classifier: Development Status :: 4 - Beta
|
|
13
11
|
Classifier: Intended Audience :: Developers
|
|
@@ -40,7 +38,7 @@ SwiftAPI is the ignition key for AI agents. This SDK provides Python bindings fo
|
|
|
40
38
|
## Installation
|
|
41
39
|
|
|
42
40
|
```bash
|
|
43
|
-
pip install swiftapi
|
|
41
|
+
pip install swiftapi-python
|
|
44
42
|
```
|
|
45
43
|
|
|
46
44
|
## Quick Start
|
|
@@ -248,8 +246,7 @@ MIT License - See LICENSE file for details.
|
|
|
248
246
|
## Links
|
|
249
247
|
|
|
250
248
|
- **API**: https://swiftapi.ai
|
|
251
|
-
- **Documentation**: https://docs
|
|
252
|
-
- **GitHub**: https://github.com/swiftapi/swiftapi-python
|
|
249
|
+
- **Documentation**: https://getswiftapi.com/docs
|
|
253
250
|
|
|
254
251
|
---
|
|
255
252
|
|
|
@@ -7,7 +7,7 @@ SwiftAPI is the ignition key for AI agents. This SDK provides Python bindings fo
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
pip install swiftapi
|
|
10
|
+
pip install swiftapi-python
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
## Quick Start
|
|
@@ -215,8 +215,7 @@ MIT License - See LICENSE file for details.
|
|
|
215
215
|
## Links
|
|
216
216
|
|
|
217
217
|
- **API**: https://swiftapi.ai
|
|
218
|
-
- **Documentation**: https://docs
|
|
219
|
-
- **GitHub**: https://github.com/swiftapi/swiftapi-python
|
|
218
|
+
- **Documentation**: https://getswiftapi.com/docs
|
|
220
219
|
|
|
221
220
|
---
|
|
222
221
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "swiftapi-python"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.2"
|
|
8
8
|
description = "SwiftAPI Python SDK - AI Action Verification Gateway"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
@@ -50,9 +50,7 @@ dev = [
|
|
|
50
50
|
|
|
51
51
|
[project.urls]
|
|
52
52
|
Homepage = "https://swiftapi.ai"
|
|
53
|
-
Documentation = "https://docs
|
|
54
|
-
Repository = "https://github.com/swiftapi/swiftapi-python"
|
|
55
|
-
Issues = "https://github.com/swiftapi/swiftapi-python/issues"
|
|
53
|
+
Documentation = "https://getswiftapi.com/docs"
|
|
56
54
|
|
|
57
55
|
[tool.setuptools.packages.find]
|
|
58
56
|
where = ["."]
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: swiftapi-python
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: SwiftAPI Python SDK - AI Action Verification Gateway
|
|
5
5
|
Author-email: Rayan Pal <rayan@swiftapi.ai>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Project-URL: Homepage, https://swiftapi.ai
|
|
8
|
-
Project-URL: Documentation, https://docs
|
|
9
|
-
Project-URL: Repository, https://github.com/swiftapi/swiftapi-python
|
|
10
|
-
Project-URL: Issues, https://github.com/swiftapi/swiftapi-python/issues
|
|
8
|
+
Project-URL: Documentation, https://getswiftapi.com/docs
|
|
11
9
|
Keywords: swiftapi,ai,verification,attestation,security,governance,enforcement
|
|
12
10
|
Classifier: Development Status :: 4 - Beta
|
|
13
11
|
Classifier: Intended Audience :: Developers
|
|
@@ -40,7 +38,7 @@ SwiftAPI is the ignition key for AI agents. This SDK provides Python bindings fo
|
|
|
40
38
|
## Installation
|
|
41
39
|
|
|
42
40
|
```bash
|
|
43
|
-
pip install swiftapi
|
|
41
|
+
pip install swiftapi-python
|
|
44
42
|
```
|
|
45
43
|
|
|
46
44
|
## Quick Start
|
|
@@ -248,8 +246,7 @@ MIT License - See LICENSE file for details.
|
|
|
248
246
|
## Links
|
|
249
247
|
|
|
250
248
|
- **API**: https://swiftapi.ai
|
|
251
|
-
- **Documentation**: https://docs
|
|
252
|
-
- **GitHub**: https://github.com/swiftapi/swiftapi-python
|
|
249
|
+
- **Documentation**: https://getswiftapi.com/docs
|
|
253
250
|
|
|
254
251
|
---
|
|
255
252
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{swiftapi_python-1.0.0 → swiftapi_python-1.0.2}/swiftapi_python.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|