cloudkit 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.
- {cloudkit-0.1.0 → cloudkit-0.1.1}/PKG-INFO +20 -31
- {cloudkit-0.1.0 → cloudkit-0.1.1}/README.md +19 -30
- {cloudkit-0.1.0 → cloudkit-0.1.1}/pyproject.toml +2 -2
- {cloudkit-0.1.0 → cloudkit-0.1.1}/.gitignore +0 -0
- {cloudkit-0.1.0 → cloudkit-0.1.1}/LICENSE +0 -0
- {cloudkit-0.1.0/cloudabstractor → cloudkit-0.1.1/cloudkit}/__init__.py +0 -0
- {cloudkit-0.1.0/cloudabstractor → cloudkit-0.1.1/cloudkit}/aws.py +0 -0
- {cloudkit-0.1.0/cloudabstractor → cloudkit-0.1.1/cloudkit}/azure.py +0 -0
- {cloudkit-0.1.0/cloudabstractor → cloudkit-0.1.1/cloudkit}/config.py +0 -0
- {cloudkit-0.1.0/cloudabstractor → cloudkit-0.1.1/cloudkit}/interfaces.py +0 -0
- {cloudkit-0.1.0/cloudabstractor → cloudkit-0.1.1/cloudkit}/provider.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cloudkit
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Python cloud abstraction SDK for databases and AI services on Azure and AWS
|
|
5
5
|
Author-email: sleepeatai <sleepeatai@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -33,7 +33,11 @@ Requires-Dist: pydantic>=2.10.6
|
|
|
33
33
|
Requires-Dist: pyyaml>=6.0.2
|
|
34
34
|
Description-Content-Type: text/markdown
|
|
35
35
|
|
|
36
|
-
#
|
|
36
|
+
# CloudKit
|
|
37
|
+
|
|
38
|
+
[](https://badge.fury.io/py/cloudkit)
|
|
39
|
+
[](https://www.python.org/downloads/)
|
|
40
|
+
[](https://opensource.org/licenses/MIT)
|
|
37
41
|
|
|
38
42
|
A Python cloud abstraction SDK that provides a unified interface for databases and AI services across Azure and AWS. This SDK allows you to build cloud-agnostic microservices that can easily switch between cloud providers without changing your application code.
|
|
39
43
|
|
|
@@ -55,36 +59,25 @@ A Python cloud abstraction SDK that provides a unified interface for databases a
|
|
|
55
59
|
|
|
56
60
|
## Installation
|
|
57
61
|
|
|
58
|
-
|
|
59
|
-
```bash
|
|
60
|
-
python3 -m pip install keyring artifacts-keyring
|
|
61
|
-
```
|
|
62
|
+
Install from PyPI:
|
|
62
63
|
|
|
63
|
-
2. Configure Azure Artifacts authentication:
|
|
64
64
|
```bash
|
|
65
|
-
|
|
65
|
+
pip install cloudkit
|
|
66
66
|
```
|
|
67
67
|
|
|
68
|
-
|
|
69
|
-
```bash
|
|
70
|
-
python3 -m pip install cloudabstractor
|
|
71
|
-
```
|
|
68
|
+
Or install from source:
|
|
72
69
|
|
|
73
70
|
```bash
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
cd agentic-composer-sdk
|
|
71
|
+
git clone https://github.com/sleepeatai/cloudkit.git
|
|
72
|
+
cd cloudkit
|
|
77
73
|
pip install -e .
|
|
78
|
-
|
|
79
|
-
# Or install from PyPI (once published)
|
|
80
|
-
pip install agentic-composer-sdk
|
|
81
74
|
```
|
|
82
75
|
|
|
83
76
|
## Quick Start
|
|
84
77
|
|
|
85
78
|
```python
|
|
86
79
|
import asyncio
|
|
87
|
-
from
|
|
80
|
+
from cloudkit import CloudProvider
|
|
88
81
|
|
|
89
82
|
async def main():
|
|
90
83
|
# Initialize for Azure
|
|
@@ -153,7 +146,7 @@ export CLOUD_SDK_AWS__AWS_REGION=us-east-1
|
|
|
153
146
|
### Configuration Dictionary
|
|
154
147
|
|
|
155
148
|
```python
|
|
156
|
-
from
|
|
149
|
+
from cloudkit import CloudProvider
|
|
157
150
|
|
|
158
151
|
# Azure configuration
|
|
159
152
|
azure_config = {
|
|
@@ -286,7 +279,7 @@ Here's how to integrate the SDK into a microservice:
|
|
|
286
279
|
|
|
287
280
|
```python
|
|
288
281
|
from fastapi import FastAPI
|
|
289
|
-
from
|
|
282
|
+
from cloudkit import CloudProvider
|
|
290
283
|
|
|
291
284
|
app = FastAPI()
|
|
292
285
|
|
|
@@ -363,9 +356,6 @@ chat_response = await bedrock_chat.chat_completion(
|
|
|
363
356
|
## Testing
|
|
364
357
|
|
|
365
358
|
```bash
|
|
366
|
-
# Install test dependencies
|
|
367
|
-
pip install -e ".[test]"
|
|
368
|
-
|
|
369
359
|
# Run tests
|
|
370
360
|
pytest tests/
|
|
371
361
|
|
|
@@ -376,18 +366,17 @@ pytest --cov=src tests/
|
|
|
376
366
|
## Development
|
|
377
367
|
|
|
378
368
|
```bash
|
|
379
|
-
# Install development dependencies
|
|
380
|
-
pip install -e ".[dev]"
|
|
381
|
-
|
|
382
369
|
# Format code
|
|
383
|
-
|
|
384
|
-
|
|
370
|
+
ruff format src/ tests/
|
|
371
|
+
|
|
372
|
+
# Lint code
|
|
373
|
+
ruff check src/ tests/
|
|
385
374
|
|
|
386
375
|
# Type checking
|
|
387
376
|
mypy src/
|
|
388
377
|
|
|
389
|
-
#
|
|
390
|
-
|
|
378
|
+
# Run tests
|
|
379
|
+
pytest tests/
|
|
391
380
|
```
|
|
392
381
|
|
|
393
382
|
## Contributing
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
#
|
|
1
|
+
# CloudKit
|
|
2
|
+
|
|
3
|
+
[](https://badge.fury.io/py/cloudkit)
|
|
4
|
+
[](https://www.python.org/downloads/)
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
2
6
|
|
|
3
7
|
A Python cloud abstraction SDK that provides a unified interface for databases and AI services across Azure and AWS. This SDK allows you to build cloud-agnostic microservices that can easily switch between cloud providers without changing your application code.
|
|
4
8
|
|
|
@@ -20,36 +24,25 @@ A Python cloud abstraction SDK that provides a unified interface for databases a
|
|
|
20
24
|
|
|
21
25
|
## Installation
|
|
22
26
|
|
|
23
|
-
|
|
24
|
-
```bash
|
|
25
|
-
python3 -m pip install keyring artifacts-keyring
|
|
26
|
-
```
|
|
27
|
+
Install from PyPI:
|
|
27
28
|
|
|
28
|
-
2. Configure Azure Artifacts authentication:
|
|
29
29
|
```bash
|
|
30
|
-
|
|
30
|
+
pip install cloudkit
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
```bash
|
|
35
|
-
python3 -m pip install cloudabstractor
|
|
36
|
-
```
|
|
33
|
+
Or install from source:
|
|
37
34
|
|
|
38
35
|
```bash
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
cd agentic-composer-sdk
|
|
36
|
+
git clone https://github.com/sleepeatai/cloudkit.git
|
|
37
|
+
cd cloudkit
|
|
42
38
|
pip install -e .
|
|
43
|
-
|
|
44
|
-
# Or install from PyPI (once published)
|
|
45
|
-
pip install agentic-composer-sdk
|
|
46
39
|
```
|
|
47
40
|
|
|
48
41
|
## Quick Start
|
|
49
42
|
|
|
50
43
|
```python
|
|
51
44
|
import asyncio
|
|
52
|
-
from
|
|
45
|
+
from cloudkit import CloudProvider
|
|
53
46
|
|
|
54
47
|
async def main():
|
|
55
48
|
# Initialize for Azure
|
|
@@ -118,7 +111,7 @@ export CLOUD_SDK_AWS__AWS_REGION=us-east-1
|
|
|
118
111
|
### Configuration Dictionary
|
|
119
112
|
|
|
120
113
|
```python
|
|
121
|
-
from
|
|
114
|
+
from cloudkit import CloudProvider
|
|
122
115
|
|
|
123
116
|
# Azure configuration
|
|
124
117
|
azure_config = {
|
|
@@ -251,7 +244,7 @@ Here's how to integrate the SDK into a microservice:
|
|
|
251
244
|
|
|
252
245
|
```python
|
|
253
246
|
from fastapi import FastAPI
|
|
254
|
-
from
|
|
247
|
+
from cloudkit import CloudProvider
|
|
255
248
|
|
|
256
249
|
app = FastAPI()
|
|
257
250
|
|
|
@@ -328,9 +321,6 @@ chat_response = await bedrock_chat.chat_completion(
|
|
|
328
321
|
## Testing
|
|
329
322
|
|
|
330
323
|
```bash
|
|
331
|
-
# Install test dependencies
|
|
332
|
-
pip install -e ".[test]"
|
|
333
|
-
|
|
334
324
|
# Run tests
|
|
335
325
|
pytest tests/
|
|
336
326
|
|
|
@@ -341,18 +331,17 @@ pytest --cov=src tests/
|
|
|
341
331
|
## Development
|
|
342
332
|
|
|
343
333
|
```bash
|
|
344
|
-
# Install development dependencies
|
|
345
|
-
pip install -e ".[dev]"
|
|
346
|
-
|
|
347
334
|
# Format code
|
|
348
|
-
|
|
349
|
-
|
|
335
|
+
ruff format src/ tests/
|
|
336
|
+
|
|
337
|
+
# Lint code
|
|
338
|
+
ruff check src/ tests/
|
|
350
339
|
|
|
351
340
|
# Type checking
|
|
352
341
|
mypy src/
|
|
353
342
|
|
|
354
|
-
#
|
|
355
|
-
|
|
343
|
+
# Run tests
|
|
344
|
+
pytest tests/
|
|
356
345
|
```
|
|
357
346
|
|
|
358
347
|
## Contributing
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "cloudkit" # Change this to match your import name
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.1"
|
|
4
4
|
description = "Python cloud abstraction SDK for databases and AI services on Azure and AWS"
|
|
5
5
|
authors = [
|
|
6
6
|
{name = "sleepeatai", email = "sleepeatai@gmail.com"}
|
|
@@ -93,4 +93,4 @@ requires = ["hatchling"]
|
|
|
93
93
|
build-backend = "hatchling.build"
|
|
94
94
|
|
|
95
95
|
[tool.hatch.build]
|
|
96
|
-
packages = ["src/
|
|
96
|
+
packages = ["src/cloudkit"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|