kiarina 1.1.0__py3-none-any.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.
@@ -0,0 +1,119 @@
1
+ Metadata-Version: 2.4
2
+ Name: kiarina
3
+ Version: 1.1.0
4
+ Summary: A comprehensive namespace package collection providing essential utilities for modern Python development
5
+ Author-email: kiarina <kiarinadawa@gmail.com>
6
+ Maintainer-email: kiarina <kiarinadawa@gmail.com>
7
+ License: MIT
8
+ Project-URL: Homepage, https://github.com/kiarina/kiarina-python
9
+ Project-URL: Repository, https://github.com/kiarina/kiarina-python.git
10
+ Project-URL: Issues, https://github.com/kiarina/kiarina-python/issues
11
+ Project-URL: Changelog, https://github.com/kiarina/kiarina-python/blob/main/CHANGELOG.md
12
+ Project-URL: Documentation, https://github.com/kiarina/kiarina-python#readme
13
+ Keywords: utilities,namespace-package,file-io,llm,redis,falkordb,redisearch,async,pydantic
14
+ Classifier: Development Status :: 5 - Production/Stable
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Programming Language :: Python :: 3 :: Only
22
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
+ Classifier: Topic :: Utilities
24
+ Classifier: Typing :: Typed
25
+ Requires-Python: >=3.12
26
+ Description-Content-Type: text/markdown
27
+ Requires-Dist: kiarina-lib-falkordb>=1.0.1
28
+ Requires-Dist: kiarina-lib-redis>=1.0.1
29
+ Requires-Dist: kiarina-lib-redisearch>=1.0.1
30
+ Requires-Dist: kiarina-llm>=1.0.1
31
+ Requires-Dist: kiarina-utils-common>=1.0.1
32
+ Requires-Dist: kiarina-utils-file>=1.0.1
33
+
34
+ # kiarina
35
+
36
+ [![Python](https://img.shields.io/badge/python-3.12%2B-blue.svg)](https://www.python.org/downloads/)
37
+ [![PyPI version](https://badge.fury.io/py/kiarina.svg)](https://badge.fury.io/py/kiarina)
38
+ [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/kiarina/kiarina-python/blob/main/LICENSE)
39
+
40
+ > 🐍 **kiarina's Python utility collection** - A comprehensive namespace package collection providing essential utilities for modern Python development.
41
+
42
+ ## 🚀 Quick Install
43
+
44
+ Install all kiarina packages with a single command:
45
+
46
+ ```bash
47
+ pip install kiarina
48
+ ```
49
+
50
+ This meta-package installs all kiarina utilities:
51
+
52
+ - **kiarina-utils-common** - Common utilities and helper functions
53
+ - **kiarina-utils-file** - Advanced file I/O operations with encoding detection
54
+ - **kiarina-lib-falkordb** - FalkorDB integration utilities
55
+ - **kiarina-lib-redis** - Redis integration with configuration management
56
+ - **kiarina-lib-redisearch** - RediSearch integration and query builders
57
+ - **kiarina-llm** - LLM integration utilities
58
+
59
+ ## 📖 Usage
60
+
61
+ After installation, you can use any kiarina package:
62
+
63
+ ```python
64
+ # Configuration parsing
65
+ from kiarina.utils.common import parse_config_string
66
+ config = parse_config_string("app.debug:true,db.port:5432")
67
+
68
+ # File operations with encoding detection
69
+ import kiarina.utils.file as kf
70
+ blob = kf.read_file("document.txt") # Auto-detects encoding
71
+ data = kf.read_json_dict("config.json", default={})
72
+
73
+ # Async file operations
74
+ import kiarina.utils.file.asyncio as kfa
75
+ blob = await kfa.read_file("large_file.dat")
76
+
77
+ # Redis integration
78
+ from kiarina.lib.redis import create_redis_client
79
+ redis = create_redis_client("redis://localhost:6379")
80
+ ```
81
+
82
+ ## 🎯 Individual Package Installation
83
+
84
+ If you only need specific functionality, you can install individual packages:
85
+
86
+ ```bash
87
+ # Core utilities only
88
+ pip install kiarina-utils-common kiarina-utils-file
89
+
90
+ # Database libraries
91
+ pip install kiarina-lib-redis kiarina-lib-falkordb kiarina-lib-redisearch
92
+
93
+ # LLM utilities
94
+ pip install kiarina-llm
95
+ ```
96
+
97
+ ## 📚 Documentation
98
+
99
+ For detailed documentation, examples, and API reference, visit the main repository:
100
+
101
+ **[📖 Full Documentation](https://github.com/kiarina/kiarina-python#readme)**
102
+
103
+ ## 🤝 Contributing
104
+
105
+ This is primarily a personal project, but contributions are welcome! Visit the [main repository](https://github.com/kiarina/kiarina-python) for contribution guidelines.
106
+
107
+ ## 📄 License
108
+
109
+ This project is licensed under the MIT License - see the [LICENSE](https://github.com/kiarina/kiarina-python/blob/main/LICENSE) file for details.
110
+
111
+ ---
112
+
113
+ <div align="center">
114
+
115
+ **Made with ❤️ by [kiarina](https://github.com/kiarina)**
116
+
117
+ *Building better Python utilities, one package at a time.*
118
+
119
+ </div>
@@ -0,0 +1,4 @@
1
+ kiarina-1.1.0.dist-info/METADATA,sha256=Rq2CVZzQPzGFbplo7D1qdlmWJVO9oFg3K0YbRYIbKU4,4320
2
+ kiarina-1.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
3
+ kiarina-1.1.0.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
4
+ kiarina-1.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+