kiarina 1.22.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.
@@ -0,0 +1,132 @@
1
+ Metadata-Version: 2.4
2
+ Name: kiarina
3
+ Version: 1.22.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-Expression: 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: Operating System :: OS Independent
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Programming Language :: Python :: 3 :: Only
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Classifier: Topic :: Utilities
23
+ Classifier: Typing :: Typed
24
+ Requires-Python: >=3.12
25
+ Description-Content-Type: text/markdown
26
+ Requires-Dist: kiarina-i18n>=1.15.1
27
+ Requires-Dist: kiarina-lib-anthropic>=1.10.0
28
+ Requires-Dist: kiarina-lib-cloudflare-auth>=1.3.0
29
+ Requires-Dist: kiarina-lib-cloudflare-d1>=1.6.0
30
+ Requires-Dist: kiarina-lib-falkordb>=1.0.1
31
+ Requires-Dist: kiarina-lib-google-auth>=1.3.0
32
+ Requires-Dist: kiarina-lib-google-cloud-storage>=1.4.0
33
+ Requires-Dist: kiarina-lib-openai>=1.10.0
34
+ Requires-Dist: kiarina-lib-redis>=1.0.1
35
+ Requires-Dist: kiarina-lib-redisearch>=1.0.1
36
+ Requires-Dist: kiarina-llm>=1.0.1
37
+ Requires-Dist: kiarina-utils-common>=1.0.1
38
+ Requires-Dist: kiarina-utils-file>=1.0.1
39
+
40
+ # kiarina
41
+
42
+ [![Python](https://img.shields.io/badge/python-3.12%2B-blue.svg)](https://www.python.org/downloads/)
43
+ [![PyPI version](https://badge.fury.io/py/kiarina.svg)](https://badge.fury.io/py/kiarina)
44
+ [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/kiarina/kiarina-python/blob/main/LICENSE)
45
+
46
+ > 🐍 **kiarina's Python utility collection** - A comprehensive namespace package collection providing essential utilities for modern Python development.
47
+
48
+ ## 🚀 Quick Install
49
+
50
+ Install all kiarina packages with a single command:
51
+
52
+ ```bash
53
+ pip install kiarina
54
+ ```
55
+
56
+ This meta-package installs all kiarina utilities:
57
+
58
+ - **kiarina-i18n** - Simple internationalization (i18n) utilities
59
+ - **kiarina-utils-common** - Common utilities and helper functions
60
+ - **kiarina-utils-file** - Advanced file I/O operations with encoding detection
61
+ - **kiarina-lib-anthropic** - Anthropic API integration utilities
62
+ - **kiarina-lib-cloudflare-auth** - Cloudflare authentication utilities
63
+ - **kiarina-lib-cloudflare-d1** - Cloudflare D1 database integration
64
+ - **kiarina-lib-falkordb** - FalkorDB integration utilities
65
+ - **kiarina-lib-google-auth** - Google Cloud authentication utilities
66
+ - **kiarina-lib-google-cloud-storage** - Google Cloud Storage integration
67
+ - **kiarina-lib-openai** - OpenAI API integration utilities
68
+ - **kiarina-lib-redis** - Redis integration with configuration management
69
+ - **kiarina-lib-redisearch** - RediSearch integration and query builders
70
+ - **kiarina-llm** - LLM integration utilities
71
+
72
+ ## 📖 Usage
73
+
74
+ After installation, you can use any kiarina package:
75
+
76
+ ```python
77
+ # Configuration parsing
78
+ from kiarina.utils.common import parse_config_string
79
+ config = parse_config_string("app.debug:true,db.port:5432")
80
+
81
+ # File operations with encoding detection
82
+ import kiarina.utils.file as kf
83
+ blob = kf.read_file("document.txt") # Auto-detects encoding
84
+ data = kf.read_json_dict("config.json", default={})
85
+
86
+ # Async file operations
87
+ import kiarina.utils.file.asyncio as kfa
88
+ blob = await kfa.read_file("large_file.dat")
89
+
90
+ # Redis integration
91
+ from kiarina.lib.redis import create_redis_client
92
+ redis = create_redis_client("redis://localhost:6379")
93
+ ```
94
+
95
+ ## 🎯 Individual Package Installation
96
+
97
+ If you only need specific functionality, you can install individual packages:
98
+
99
+ ```bash
100
+ # Core utilities only
101
+ pip install kiarina-utils-common kiarina-utils-file
102
+
103
+ # Database libraries
104
+ pip install kiarina-lib-redis kiarina-lib-falkordb kiarina-lib-redisearch
105
+
106
+ # LLM utilities
107
+ pip install kiarina-llm
108
+ ```
109
+
110
+ ## 📚 Documentation
111
+
112
+ For detailed documentation, examples, and API reference, visit the main repository:
113
+
114
+ **[📖 Full Documentation](https://github.com/kiarina/kiarina-python#readme)**
115
+
116
+ ## 🤝 Contributing
117
+
118
+ This is primarily a personal project, but contributions are welcome! Visit the [main repository](https://github.com/kiarina/kiarina-python) for contribution guidelines.
119
+
120
+ ## 📄 License
121
+
122
+ This project is licensed under the MIT License - see the [LICENSE](https://github.com/kiarina/kiarina-python/blob/main/LICENSE) file for details.
123
+
124
+ ---
125
+
126
+ <div align="center">
127
+
128
+ **Made with ❤️ by [kiarina](https://github.com/kiarina)**
129
+
130
+ *Building better Python utilities, one package at a time.*
131
+
132
+ </div>
@@ -0,0 +1,93 @@
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-i18n** - Simple internationalization (i18n) utilities
20
+ - **kiarina-utils-common** - Common utilities and helper functions
21
+ - **kiarina-utils-file** - Advanced file I/O operations with encoding detection
22
+ - **kiarina-lib-anthropic** - Anthropic API integration utilities
23
+ - **kiarina-lib-cloudflare-auth** - Cloudflare authentication utilities
24
+ - **kiarina-lib-cloudflare-d1** - Cloudflare D1 database integration
25
+ - **kiarina-lib-falkordb** - FalkorDB integration utilities
26
+ - **kiarina-lib-google-auth** - Google Cloud authentication utilities
27
+ - **kiarina-lib-google-cloud-storage** - Google Cloud Storage integration
28
+ - **kiarina-lib-openai** - OpenAI API integration utilities
29
+ - **kiarina-lib-redis** - Redis integration with configuration management
30
+ - **kiarina-lib-redisearch** - RediSearch integration and query builders
31
+ - **kiarina-llm** - LLM integration utilities
32
+
33
+ ## 📖 Usage
34
+
35
+ After installation, you can use any kiarina package:
36
+
37
+ ```python
38
+ # Configuration parsing
39
+ from kiarina.utils.common import parse_config_string
40
+ config = parse_config_string("app.debug:true,db.port:5432")
41
+
42
+ # File operations with encoding detection
43
+ import kiarina.utils.file as kf
44
+ blob = kf.read_file("document.txt") # Auto-detects encoding
45
+ data = kf.read_json_dict("config.json", default={})
46
+
47
+ # Async file operations
48
+ import kiarina.utils.file.asyncio as kfa
49
+ blob = await kfa.read_file("large_file.dat")
50
+
51
+ # Redis integration
52
+ from kiarina.lib.redis import create_redis_client
53
+ redis = create_redis_client("redis://localhost:6379")
54
+ ```
55
+
56
+ ## 🎯 Individual Package Installation
57
+
58
+ If you only need specific functionality, you can install individual packages:
59
+
60
+ ```bash
61
+ # Core utilities only
62
+ pip install kiarina-utils-common kiarina-utils-file
63
+
64
+ # Database libraries
65
+ pip install kiarina-lib-redis kiarina-lib-falkordb kiarina-lib-redisearch
66
+
67
+ # LLM utilities
68
+ pip install kiarina-llm
69
+ ```
70
+
71
+ ## 📚 Documentation
72
+
73
+ For detailed documentation, examples, and API reference, visit the main repository:
74
+
75
+ **[📖 Full Documentation](https://github.com/kiarina/kiarina-python#readme)**
76
+
77
+ ## 🤝 Contributing
78
+
79
+ This is primarily a personal project, but contributions are welcome! Visit the [main repository](https://github.com/kiarina/kiarina-python) for contribution guidelines.
80
+
81
+ ## 📄 License
82
+
83
+ This project is licensed under the MIT License - see the [LICENSE](https://github.com/kiarina/kiarina-python/blob/main/LICENSE) file for details.
84
+
85
+ ---
86
+
87
+ <div align="center">
88
+
89
+ **Made with ❤️ by [kiarina](https://github.com/kiarina)**
90
+
91
+ *Building better Python utilities, one package at a time.*
92
+
93
+ </div>
@@ -0,0 +1,132 @@
1
+ Metadata-Version: 2.4
2
+ Name: kiarina
3
+ Version: 1.22.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-Expression: 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: Operating System :: OS Independent
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Programming Language :: Python :: 3 :: Only
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Classifier: Topic :: Utilities
23
+ Classifier: Typing :: Typed
24
+ Requires-Python: >=3.12
25
+ Description-Content-Type: text/markdown
26
+ Requires-Dist: kiarina-i18n>=1.15.1
27
+ Requires-Dist: kiarina-lib-anthropic>=1.10.0
28
+ Requires-Dist: kiarina-lib-cloudflare-auth>=1.3.0
29
+ Requires-Dist: kiarina-lib-cloudflare-d1>=1.6.0
30
+ Requires-Dist: kiarina-lib-falkordb>=1.0.1
31
+ Requires-Dist: kiarina-lib-google-auth>=1.3.0
32
+ Requires-Dist: kiarina-lib-google-cloud-storage>=1.4.0
33
+ Requires-Dist: kiarina-lib-openai>=1.10.0
34
+ Requires-Dist: kiarina-lib-redis>=1.0.1
35
+ Requires-Dist: kiarina-lib-redisearch>=1.0.1
36
+ Requires-Dist: kiarina-llm>=1.0.1
37
+ Requires-Dist: kiarina-utils-common>=1.0.1
38
+ Requires-Dist: kiarina-utils-file>=1.0.1
39
+
40
+ # kiarina
41
+
42
+ [![Python](https://img.shields.io/badge/python-3.12%2B-blue.svg)](https://www.python.org/downloads/)
43
+ [![PyPI version](https://badge.fury.io/py/kiarina.svg)](https://badge.fury.io/py/kiarina)
44
+ [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/kiarina/kiarina-python/blob/main/LICENSE)
45
+
46
+ > 🐍 **kiarina's Python utility collection** - A comprehensive namespace package collection providing essential utilities for modern Python development.
47
+
48
+ ## 🚀 Quick Install
49
+
50
+ Install all kiarina packages with a single command:
51
+
52
+ ```bash
53
+ pip install kiarina
54
+ ```
55
+
56
+ This meta-package installs all kiarina utilities:
57
+
58
+ - **kiarina-i18n** - Simple internationalization (i18n) utilities
59
+ - **kiarina-utils-common** - Common utilities and helper functions
60
+ - **kiarina-utils-file** - Advanced file I/O operations with encoding detection
61
+ - **kiarina-lib-anthropic** - Anthropic API integration utilities
62
+ - **kiarina-lib-cloudflare-auth** - Cloudflare authentication utilities
63
+ - **kiarina-lib-cloudflare-d1** - Cloudflare D1 database integration
64
+ - **kiarina-lib-falkordb** - FalkorDB integration utilities
65
+ - **kiarina-lib-google-auth** - Google Cloud authentication utilities
66
+ - **kiarina-lib-google-cloud-storage** - Google Cloud Storage integration
67
+ - **kiarina-lib-openai** - OpenAI API integration utilities
68
+ - **kiarina-lib-redis** - Redis integration with configuration management
69
+ - **kiarina-lib-redisearch** - RediSearch integration and query builders
70
+ - **kiarina-llm** - LLM integration utilities
71
+
72
+ ## 📖 Usage
73
+
74
+ After installation, you can use any kiarina package:
75
+
76
+ ```python
77
+ # Configuration parsing
78
+ from kiarina.utils.common import parse_config_string
79
+ config = parse_config_string("app.debug:true,db.port:5432")
80
+
81
+ # File operations with encoding detection
82
+ import kiarina.utils.file as kf
83
+ blob = kf.read_file("document.txt") # Auto-detects encoding
84
+ data = kf.read_json_dict("config.json", default={})
85
+
86
+ # Async file operations
87
+ import kiarina.utils.file.asyncio as kfa
88
+ blob = await kfa.read_file("large_file.dat")
89
+
90
+ # Redis integration
91
+ from kiarina.lib.redis import create_redis_client
92
+ redis = create_redis_client("redis://localhost:6379")
93
+ ```
94
+
95
+ ## 🎯 Individual Package Installation
96
+
97
+ If you only need specific functionality, you can install individual packages:
98
+
99
+ ```bash
100
+ # Core utilities only
101
+ pip install kiarina-utils-common kiarina-utils-file
102
+
103
+ # Database libraries
104
+ pip install kiarina-lib-redis kiarina-lib-falkordb kiarina-lib-redisearch
105
+
106
+ # LLM utilities
107
+ pip install kiarina-llm
108
+ ```
109
+
110
+ ## 📚 Documentation
111
+
112
+ For detailed documentation, examples, and API reference, visit the main repository:
113
+
114
+ **[📖 Full Documentation](https://github.com/kiarina/kiarina-python#readme)**
115
+
116
+ ## 🤝 Contributing
117
+
118
+ This is primarily a personal project, but contributions are welcome! Visit the [main repository](https://github.com/kiarina/kiarina-python) for contribution guidelines.
119
+
120
+ ## 📄 License
121
+
122
+ This project is licensed under the MIT License - see the [LICENSE](https://github.com/kiarina/kiarina-python/blob/main/LICENSE) file for details.
123
+
124
+ ---
125
+
126
+ <div align="center">
127
+
128
+ **Made with ❤️ by [kiarina](https://github.com/kiarina)**
129
+
130
+ *Building better Python utilities, one package at a time.*
131
+
132
+ </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,13 @@
1
+ kiarina-i18n>=1.15.1
2
+ kiarina-lib-anthropic>=1.10.0
3
+ kiarina-lib-cloudflare-auth>=1.3.0
4
+ kiarina-lib-cloudflare-d1>=1.6.0
5
+ kiarina-lib-falkordb>=1.0.1
6
+ kiarina-lib-google-auth>=1.3.0
7
+ kiarina-lib-google-cloud-storage>=1.4.0
8
+ kiarina-lib-openai>=1.10.0
9
+ kiarina-lib-redis>=1.0.1
10
+ kiarina-lib-redisearch>=1.0.1
11
+ kiarina-llm>=1.0.1
12
+ kiarina-utils-common>=1.0.1
13
+ kiarina-utils-file>=1.0.1
@@ -0,0 +1,58 @@
1
+ [project]
2
+ name = "kiarina"
3
+ version = "1.22.0"
4
+ description = "A comprehensive namespace package collection providing essential utilities for modern Python development"
5
+ readme = "README.md"
6
+ license = "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
+ "Operating System :: OS Independent",
28
+ "Programming Language :: Python :: 3",
29
+ "Programming Language :: Python :: 3.12",
30
+ "Programming Language :: Python :: 3.13",
31
+ "Programming Language :: Python :: 3 :: Only",
32
+ "Topic :: Software Development :: Libraries :: Python Modules",
33
+ "Topic :: Utilities",
34
+ "Typing :: Typed",
35
+ ]
36
+ requires-python = ">=3.12"
37
+ dependencies = [
38
+ "kiarina-i18n>=1.15.1",
39
+ "kiarina-lib-anthropic>=1.10.0",
40
+ "kiarina-lib-cloudflare-auth>=1.3.0",
41
+ "kiarina-lib-cloudflare-d1>=1.6.0",
42
+ "kiarina-lib-falkordb>=1.0.1",
43
+ "kiarina-lib-google-auth>=1.3.0",
44
+ "kiarina-lib-google-cloud-storage>=1.4.0",
45
+ "kiarina-lib-openai>=1.10.0",
46
+ "kiarina-lib-redis>=1.0.1",
47
+ "kiarina-lib-redisearch>=1.0.1",
48
+ "kiarina-llm>=1.0.1",
49
+ "kiarina-utils-common>=1.0.1",
50
+ "kiarina-utils-file>=1.0.1",
51
+ ]
52
+
53
+ [project.urls]
54
+ Homepage = "https://github.com/kiarina/kiarina-python"
55
+ Repository = "https://github.com/kiarina/kiarina-python.git"
56
+ Issues = "https://github.com/kiarina/kiarina-python/issues"
57
+ Changelog = "https://github.com/kiarina/kiarina-python/blob/main/CHANGELOG.md"
58
+ Documentation = "https://github.com/kiarina/kiarina-python#readme"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+