tigrbl-client 0.2.0.dev4__tar.gz → 0.2.0.dev23__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.
- tigrbl_client-0.2.0.dev23/PKG-INFO +80 -0
- tigrbl_client-0.2.0.dev23/README.md +54 -0
- {tigrbl_client-0.2.0.dev4 → tigrbl_client-0.2.0.dev23}/pyproject.toml +11 -2
- tigrbl_client-0.2.0.dev4/PKG-INFO +0 -42
- tigrbl_client-0.2.0.dev4/README.md +0 -21
- {tigrbl_client-0.2.0.dev4 → tigrbl_client-0.2.0.dev23}/LICENSE +0 -0
- {tigrbl_client-0.2.0.dev4 → tigrbl_client-0.2.0.dev23}/tigrbl_client/__init__.py +0 -0
- {tigrbl_client-0.2.0.dev4 → tigrbl_client-0.2.0.dev23}/tigrbl_client/_crud.py +0 -0
- {tigrbl_client-0.2.0.dev4 → tigrbl_client-0.2.0.dev23}/tigrbl_client/_nested_crud.py +0 -0
- {tigrbl_client-0.2.0.dev4 → tigrbl_client-0.2.0.dev23}/tigrbl_client/_rpc.py +0 -0
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tigrbl-client
|
|
3
|
+
Version: 0.2.0.dev23
|
|
4
|
+
Summary: A client for Tigrbl servers by Swarmauri.
|
|
5
|
+
License-Expression: Apache-2.0
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Keywords: tigrbl,sdk,standards,client
|
|
8
|
+
Author: Jacob Stewart
|
|
9
|
+
Author-email: jacob@swarmauri.com
|
|
10
|
+
Requires-Python: >=3.10,<3.13
|
|
11
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Programming Language :: Python
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
19
|
+
Requires-Dist: fastapi (>=0.100.0)
|
|
20
|
+
Requires-Dist: pydantic (>=2.0.0)
|
|
21
|
+
Requires-Dist: swarmauri_base
|
|
22
|
+
Requires-Dist: swarmauri_core
|
|
23
|
+
Requires-Dist: swarmauri_standard
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
|
|
26
|
+

|
|
27
|
+
|
|
28
|
+
<p align="center">
|
|
29
|
+
<a href="https://pypi.org/project/tigrbl_client/">
|
|
30
|
+
<img src="https://img.shields.io/pypi/v/tigrbl_client?label=tigrbl_client&color=green" alt="PyPI - tigrbl_client"/>
|
|
31
|
+
</a>
|
|
32
|
+
<a href="https://pypi.org/project/tigrbl_client/">
|
|
33
|
+
<img src="https://img.shields.io/pypi/dm/tigrbl_client" alt="PyPI - Downloads"/>
|
|
34
|
+
</a>
|
|
35
|
+
<a href="https://pypi.org/project/tigrbl_client/">
|
|
36
|
+
<img src="https://img.shields.io/pypi/pyversions/tigrbl_client" alt="PyPI - Python Version"/>
|
|
37
|
+
</a>
|
|
38
|
+
<a href="https://pypi.org/project/tigrbl_client/">
|
|
39
|
+
<img src="https://img.shields.io/pypi/l/tigrbl_client" alt="PyPI - License"/>
|
|
40
|
+
</a>
|
|
41
|
+
<a href="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/standards/tigrbl_client/">
|
|
42
|
+
<img alt="Hits" src="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/standards/tigrbl_client.svg"/>
|
|
43
|
+
</a>
|
|
44
|
+
</p>
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
# Tigrbl Client 🐅
|
|
49
|
+
|
|
50
|
+
A lightweight HTTP client for interacting with Tigrbl services.
|
|
51
|
+
Tigrbl exposes operations under resource-based namespaces such as
|
|
52
|
+
`api.core.Users.create` or `api.rpc.Users.login`, all accessible via
|
|
53
|
+
this client.
|
|
54
|
+
|
|
55
|
+
## Features ✨
|
|
56
|
+
|
|
57
|
+
- Minimal dependencies with friendly typing
|
|
58
|
+
- Automatic JSON serialization / deserialization
|
|
59
|
+
- Simple namespace-based method access
|
|
60
|
+
|
|
61
|
+
## Installation 📦
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
pip install tigrbl_client
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Quick Start 🚀
|
|
68
|
+
|
|
69
|
+
```python
|
|
70
|
+
from tigrbl_client import Client
|
|
71
|
+
|
|
72
|
+
client = Client("https://api.tigrbl.io", token="your-token")
|
|
73
|
+
response = client.api.core.Users.read(id=1)
|
|
74
|
+
print(response)
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
## License 📝
|
|
78
|
+
|
|
79
|
+
This project is licensed under the terms of the [MIT license](LICENSE).
|
|
80
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
<a href="https://pypi.org/project/tigrbl_client/">
|
|
5
|
+
<img src="https://img.shields.io/pypi/v/tigrbl_client?label=tigrbl_client&color=green" alt="PyPI - tigrbl_client"/>
|
|
6
|
+
</a>
|
|
7
|
+
<a href="https://pypi.org/project/tigrbl_client/">
|
|
8
|
+
<img src="https://img.shields.io/pypi/dm/tigrbl_client" alt="PyPI - Downloads"/>
|
|
9
|
+
</a>
|
|
10
|
+
<a href="https://pypi.org/project/tigrbl_client/">
|
|
11
|
+
<img src="https://img.shields.io/pypi/pyversions/tigrbl_client" alt="PyPI - Python Version"/>
|
|
12
|
+
</a>
|
|
13
|
+
<a href="https://pypi.org/project/tigrbl_client/">
|
|
14
|
+
<img src="https://img.shields.io/pypi/l/tigrbl_client" alt="PyPI - License"/>
|
|
15
|
+
</a>
|
|
16
|
+
<a href="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/standards/tigrbl_client/">
|
|
17
|
+
<img alt="Hits" src="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/standards/tigrbl_client.svg"/>
|
|
18
|
+
</a>
|
|
19
|
+
</p>
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
# Tigrbl Client 🐅
|
|
24
|
+
|
|
25
|
+
A lightweight HTTP client for interacting with Tigrbl services.
|
|
26
|
+
Tigrbl exposes operations under resource-based namespaces such as
|
|
27
|
+
`api.core.Users.create` or `api.rpc.Users.login`, all accessible via
|
|
28
|
+
this client.
|
|
29
|
+
|
|
30
|
+
## Features ✨
|
|
31
|
+
|
|
32
|
+
- Minimal dependencies with friendly typing
|
|
33
|
+
- Automatic JSON serialization / deserialization
|
|
34
|
+
- Simple namespace-based method access
|
|
35
|
+
|
|
36
|
+
## Installation 📦
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
pip install tigrbl_client
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Quick Start 🚀
|
|
43
|
+
|
|
44
|
+
```python
|
|
45
|
+
from tigrbl_client import Client
|
|
46
|
+
|
|
47
|
+
client = Client("https://api.tigrbl.io", token="your-token")
|
|
48
|
+
response = client.api.core.Users.read(id=1)
|
|
49
|
+
print(response)
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## License 📝
|
|
53
|
+
|
|
54
|
+
This project is licensed under the terms of the [MIT license](LICENSE).
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "tigrbl-client"
|
|
3
|
-
version = "0.2.0.
|
|
3
|
+
version = "0.2.0.dev23"
|
|
4
4
|
description = "A client for Tigrbl servers by Swarmauri."
|
|
5
5
|
license = "Apache-2.0"
|
|
6
6
|
readme = "README.md"
|
|
@@ -12,8 +12,11 @@ classifiers = [
|
|
|
12
12
|
"Programming Language :: Python :: 3.10",
|
|
13
13
|
"Programming Language :: Python :: 3.11",
|
|
14
14
|
"Programming Language :: Python :: 3.12",
|
|
15
|
+
"Programming Language :: Python",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
15
18
|
]
|
|
16
|
-
authors = [{ name = "
|
|
19
|
+
authors = [{ name = "Jacob Stewart", email = "jacob@swarmauri.com" }]
|
|
17
20
|
dependencies = [
|
|
18
21
|
"swarmauri_core",
|
|
19
22
|
"swarmauri_base",
|
|
@@ -21,6 +24,12 @@ dependencies = [
|
|
|
21
24
|
"fastapi>=0.100.0",
|
|
22
25
|
"pydantic>=2.0.0",
|
|
23
26
|
]
|
|
27
|
+
keywords = [
|
|
28
|
+
'tigrbl',
|
|
29
|
+
'sdk',
|
|
30
|
+
'standards',
|
|
31
|
+
'client',
|
|
32
|
+
]
|
|
24
33
|
|
|
25
34
|
[tool.uv.sources]
|
|
26
35
|
swarmauri_core = { workspace = true }
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.3
|
|
2
|
-
Name: tigrbl-client
|
|
3
|
-
Version: 0.2.0.dev4
|
|
4
|
-
Summary: A client for Tigrbl servers by Swarmauri.
|
|
5
|
-
License: Apache-2.0
|
|
6
|
-
Author: Swarmauri Team
|
|
7
|
-
Author-email: team@swarmauri.com
|
|
8
|
-
Requires-Python: >=3.10,<3.13
|
|
9
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
10
|
-
Classifier: Development Status :: 3 - Alpha
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
-
Requires-Dist: fastapi (>=0.100.0)
|
|
15
|
-
Requires-Dist: pydantic (>=2.0.0)
|
|
16
|
-
Requires-Dist: swarmauri_base
|
|
17
|
-
Requires-Dist: swarmauri_core
|
|
18
|
-
Requires-Dist: swarmauri_standard
|
|
19
|
-
Description-Content-Type: text/markdown
|
|
20
|
-
|
|
21
|
-

|
|
22
|
-
|
|
23
|
-
<p align="center">
|
|
24
|
-
<a href="https://pypi.org/project/tigrbl_client/">
|
|
25
|
-
<img src="https://img.shields.io/pypi/dm/tigrbl_client" alt="PyPI - Downloads"/></a>
|
|
26
|
-
<a href="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/standards/tigrbl_client/">
|
|
27
|
-
<img alt="Hits" src="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/standards/tigrbl_client.svg"/></a>
|
|
28
|
-
<a href="https://pypi.org/project/tigrbl_client/">
|
|
29
|
-
<img src="https://img.shields.io/pypi/pyversions/tigrbl_client" alt="PyPI - Python Version"/></a>
|
|
30
|
-
<a href="https://pypi.org/project/tigrbl_client/">
|
|
31
|
-
<img src="https://img.shields.io/pypi/l/tigrbl_client" alt="PyPI - License"/></a>
|
|
32
|
-
<a href="https://pypi.org/project/tigrbl_client/">
|
|
33
|
-
<img src="https://img.shields.io/pypi/v/tigrbl_client?label=tigrbl_client&color=green" alt="PyPI - tigrbl_client"/></a>
|
|
34
|
-
</p>
|
|
35
|
-
|
|
36
|
-
---
|
|
37
|
-
|
|
38
|
-
# Tigrbl Client
|
|
39
|
-
Simple HTTP client for interacting with Tigrbl services. Tigrbl exposes
|
|
40
|
-
operations under resource-based namespaces such as ``api.core.Users.create``
|
|
41
|
-
or ``api.rpc.Users.login`` which can be invoked using this client.
|
|
42
|
-
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-

|
|
2
|
-
|
|
3
|
-
<p align="center">
|
|
4
|
-
<a href="https://pypi.org/project/tigrbl_client/">
|
|
5
|
-
<img src="https://img.shields.io/pypi/dm/tigrbl_client" alt="PyPI - Downloads"/></a>
|
|
6
|
-
<a href="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/standards/tigrbl_client/">
|
|
7
|
-
<img alt="Hits" src="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/standards/tigrbl_client.svg"/></a>
|
|
8
|
-
<a href="https://pypi.org/project/tigrbl_client/">
|
|
9
|
-
<img src="https://img.shields.io/pypi/pyversions/tigrbl_client" alt="PyPI - Python Version"/></a>
|
|
10
|
-
<a href="https://pypi.org/project/tigrbl_client/">
|
|
11
|
-
<img src="https://img.shields.io/pypi/l/tigrbl_client" alt="PyPI - License"/></a>
|
|
12
|
-
<a href="https://pypi.org/project/tigrbl_client/">
|
|
13
|
-
<img src="https://img.shields.io/pypi/v/tigrbl_client?label=tigrbl_client&color=green" alt="PyPI - tigrbl_client"/></a>
|
|
14
|
-
</p>
|
|
15
|
-
|
|
16
|
-
---
|
|
17
|
-
|
|
18
|
-
# Tigrbl Client
|
|
19
|
-
Simple HTTP client for interacting with Tigrbl services. Tigrbl exposes
|
|
20
|
-
operations under resource-based namespaces such as ``api.core.Users.create``
|
|
21
|
-
or ``api.rpc.Users.login`` which can be invoked using this client.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|