kiarina 1.1.0__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.
kiarina-1.1.0/PKG-INFO ADDED
@@ -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,86 @@
1
+ # kiarina
2
+
3
+ [![Python](https://img.shields.io/badge/python-3.12%2B-blue.svg)](https://www.python.org/downloads/)
4
+ [![PyPI version](https://badge.fury.io/py/kiarina.svg)](https://badge.fury.io/py/kiarina)
5
+ [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/kiarina/kiarina-python/blob/main/LICENSE)
6
+
7
+ > 🐍 **kiarina's Python utility collection** - A comprehensive namespace package collection providing essential utilities for modern Python development.
8
+
9
+ ## 🚀 Quick Install
10
+
11
+ Install all kiarina packages with a single command:
12
+
13
+ ```bash
14
+ pip install kiarina
15
+ ```
16
+
17
+ This meta-package installs all kiarina utilities:
18
+
19
+ - **kiarina-utils-common** - Common utilities and helper functions
20
+ - **kiarina-utils-file** - Advanced file I/O operations with encoding detection
21
+ - **kiarina-lib-falkordb** - FalkorDB integration utilities
22
+ - **kiarina-lib-redis** - Redis integration with configuration management
23
+ - **kiarina-lib-redisearch** - RediSearch integration and query builders
24
+ - **kiarina-llm** - LLM integration utilities
25
+
26
+ ## 📖 Usage
27
+
28
+ After installation, you can use any kiarina package:
29
+
30
+ ```python
31
+ # Configuration parsing
32
+ from kiarina.utils.common import parse_config_string
33
+ config = parse_config_string("app.debug:true,db.port:5432")
34
+
35
+ # File operations with encoding detection
36
+ import kiarina.utils.file as kf
37
+ blob = kf.read_file("document.txt") # Auto-detects encoding
38
+ data = kf.read_json_dict("config.json", default={})
39
+
40
+ # Async file operations
41
+ import kiarina.utils.file.asyncio as kfa
42
+ blob = await kfa.read_file("large_file.dat")
43
+
44
+ # Redis integration
45
+ from kiarina.lib.redis import create_redis_client
46
+ redis = create_redis_client("redis://localhost:6379")
47
+ ```
48
+
49
+ ## 🎯 Individual Package Installation
50
+
51
+ If you only need specific functionality, you can install individual packages:
52
+
53
+ ```bash
54
+ # Core utilities only
55
+ pip install kiarina-utils-common kiarina-utils-file
56
+
57
+ # Database libraries
58
+ pip install kiarina-lib-redis kiarina-lib-falkordb kiarina-lib-redisearch
59
+
60
+ # LLM utilities
61
+ pip install kiarina-llm
62
+ ```
63
+
64
+ ## 📚 Documentation
65
+
66
+ For detailed documentation, examples, and API reference, visit the main repository:
67
+
68
+ **[📖 Full Documentation](https://github.com/kiarina/kiarina-python#readme)**
69
+
70
+ ## 🤝 Contributing
71
+
72
+ This is primarily a personal project, but contributions are welcome! Visit the [main repository](https://github.com/kiarina/kiarina-python) for contribution guidelines.
73
+
74
+ ## 📄 License
75
+
76
+ This project is licensed under the MIT License - see the [LICENSE](https://github.com/kiarina/kiarina-python/blob/main/LICENSE) file for details.
77
+
78
+ ---
79
+
80
+ <div align="center">
81
+
82
+ **Made with ❤️ by [kiarina](https://github.com/kiarina)**
83
+
84
+ *Building better Python utilities, one package at a time.*
85
+
86
+ </div>
@@ -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,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ kiarina.egg-info/PKG-INFO
4
+ kiarina.egg-info/SOURCES.txt
5
+ kiarina.egg-info/dependency_links.txt
6
+ kiarina.egg-info/requires.txt
7
+ kiarina.egg-info/top_level.txt
@@ -0,0 +1,6 @@
1
+ kiarina-lib-falkordb>=1.0.1
2
+ kiarina-lib-redis>=1.0.1
3
+ kiarina-lib-redisearch>=1.0.1
4
+ kiarina-llm>=1.0.1
5
+ kiarina-utils-common>=1.0.1
6
+ kiarina-utils-file>=1.0.1
@@ -0,0 +1,52 @@
1
+ [project]
2
+ name = "kiarina"
3
+ version = "1.1.0"
4
+ description = "A comprehensive namespace package collection providing essential utilities for modern Python development"
5
+ readme = "README.md"
6
+ license = { text = "MIT" }
7
+ authors = [
8
+ { name = "kiarina", email = "kiarinadawa@gmail.com" }
9
+ ]
10
+ maintainers = [
11
+ { name = "kiarina", email = "kiarinadawa@gmail.com" }
12
+ ]
13
+ keywords = [
14
+ "utilities",
15
+ "namespace-package",
16
+ "file-io",
17
+ "llm",
18
+ "redis",
19
+ "falkordb",
20
+ "redisearch",
21
+ "async",
22
+ "pydantic"
23
+ ]
24
+ classifiers = [
25
+ "Development Status :: 5 - Production/Stable",
26
+ "Intended Audience :: Developers",
27
+ "License :: OSI Approved :: MIT License",
28
+ "Operating System :: OS Independent",
29
+ "Programming Language :: Python :: 3",
30
+ "Programming Language :: Python :: 3.12",
31
+ "Programming Language :: Python :: 3.13",
32
+ "Programming Language :: Python :: 3 :: Only",
33
+ "Topic :: Software Development :: Libraries :: Python Modules",
34
+ "Topic :: Utilities",
35
+ "Typing :: Typed",
36
+ ]
37
+ requires-python = ">=3.12"
38
+ dependencies = [
39
+ "kiarina-lib-falkordb>=1.0.1",
40
+ "kiarina-lib-redis>=1.0.1",
41
+ "kiarina-lib-redisearch>=1.0.1",
42
+ "kiarina-llm>=1.0.1",
43
+ "kiarina-utils-common>=1.0.1",
44
+ "kiarina-utils-file>=1.0.1",
45
+ ]
46
+
47
+ [project.urls]
48
+ Homepage = "https://github.com/kiarina/kiarina-python"
49
+ Repository = "https://github.com/kiarina/kiarina-python.git"
50
+ Issues = "https://github.com/kiarina/kiarina-python/issues"
51
+ Changelog = "https://github.com/kiarina/kiarina-python/blob/main/CHANGELOG.md"
52
+ Documentation = "https://github.com/kiarina/kiarina-python#readme"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+