koava 0.0.1__py3-none-win_arm64.whl

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.
Binary file
@@ -0,0 +1,83 @@
1
+ Metadata-Version: 2.4
2
+ Name: koava
3
+ Version: 0.0.1
4
+ Requires-Dist: huggingface-hub[cli]>=0.16.0 ; extra == 'huggingface'
5
+ Provides-Extra: huggingface
6
+ License-File: LICENSE
7
+ Summary: KoalaVault model converter tool for producers
8
+ Author-email: KoalaVault Team <koalavaultx@gmail.com>
9
+ License: MIT
10
+ Requires-Python: >=3.8
11
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
12
+ Project-URL: Homepage, https://www.koalavault.ai
13
+ Project-URL: Repository, https://github.com/koalavault/koalavault.ai
14
+
15
+ # KoalaVault Converter (koava)
16
+
17
+ [![PyPI version](https://badge.fury.io/py/koava.svg)](https://badge.fury.io/py/koava)
18
+ [![Python versions](https://img.shields.io/pypi/pyversions/koava.svg)](https://pypi.org/project/koava/)
19
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
20
+
21
+ **koava** - KoalaVault seller tool for secure encryption and upload AI models.
22
+
23
+ ## Features
24
+
25
+ - **Secure Encryption**: Encrypt Hugging Face safetensors models to KoalaVault format
26
+ - **Automatic Backup**: Create backups during encryption process
27
+ - **Cloud Storage**: Upload encrypted models to KoalaVault server
28
+ - **Model Management**: List, delete, and restore model files
29
+ - **Cross-Platform**: Supports Linux (x86_64, ARM64) and macOS (x86_64, ARM64)
30
+ - **High Performance**: Built with Rust
31
+
32
+ ## Installation
33
+
34
+ **Basic installation:**
35
+ ```bash
36
+ pip install koava
37
+ ```
38
+
39
+ **With Hugging Face CLI support (recommended for model downloading):**
40
+ ```bash
41
+ pip install koava[huggingface]
42
+ ```
43
+
44
+ ## Quick Start
45
+
46
+ ### 1. Login
47
+
48
+ ```bash
49
+ koava login sk-1234567890abcdef
50
+ ```
51
+
52
+ ### 2. Encrypt Model
53
+
54
+ ```bash
55
+ koava encrypt ./my-model
56
+ ```
57
+
58
+ ### 3. Upload to Server
59
+
60
+ ```bash
61
+ koava upload ./my-model
62
+ ```
63
+
64
+ ### 4. Manage Models
65
+
66
+ ```bash
67
+ koava list my-model # List model files
68
+ koava remove my-model # Delete model
69
+ koava restore ./my-model # Restore from backup
70
+ ```
71
+
72
+
73
+ ## Documentation
74
+
75
+ - [Complete Documentation](https://www.koalavault.ai/docs/koava)
76
+
77
+ ## Support
78
+
79
+ For support, visit [KoalaVault Website](https://www.koalavault.ai) or contact support.
80
+
81
+ ---
82
+
83
+ **koava** - KoalaVault seller tool for secure AI model management!
@@ -0,0 +1,5 @@
1
+ koava-0.0.1.data/scripts/koava.exe,sha256=VHfsssNqsVGy7ommY0FxEEzYOpYfYv_VvRLigPX4HuA,13335040
2
+ koava-0.0.1.dist-info/METADATA,sha256=pDlPltkD8l94K9YpIWdXw0GAoLBi_xp0JVagYykSquo,2231
3
+ koava-0.0.1.dist-info/WHEEL,sha256=0rgqmAiXzA2gqWyiLsACtsytP8eWJMQrOxvlgzFMRJY,93
4
+ koava-0.0.1.dist-info/licenses/LICENSE,sha256=FZRF9YcZW1x_RwzxVaaL-_iGthc5MaLZkkbrOE2l-IA,1093
5
+ koava-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.9.4)
3
+ Root-Is-Purelib: false
4
+ Tag: py3-none-win_arm64
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 KoalaVault Team
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.