ilovetools 0.2.3__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.
- ilovetools/__init__.py +42 -0
- ilovetools/ai/__init__.py +13 -0
- ilovetools/ai/embeddings.py +270 -0
- ilovetools/ai/inference.py +5 -0
- ilovetools/ai/llm_helpers.py +141 -0
- ilovetools/audio/__init__.py +5 -0
- ilovetools/automation/__init__.py +5 -0
- ilovetools/conversion/__init__.py +5 -0
- ilovetools/data/__init__.py +27 -0
- ilovetools/data/feature_engineering.py +497 -0
- ilovetools/data/preprocessing.py +234 -0
- ilovetools/database/__init__.py +5 -0
- ilovetools/datetime/__init__.py +5 -0
- ilovetools/files/__init__.py +5 -0
- ilovetools/image/__init__.py +5 -0
- ilovetools/ml/__init__.py +603 -0
- ilovetools/ml/clustering.py +1107 -0
- ilovetools/ml/cross_validation.py +612 -0
- ilovetools/ml/dimensionality.py +1001 -0
- ilovetools/ml/ensemble.py +872 -0
- ilovetools/ml/feature_selection.py +971 -0
- ilovetools/ml/imbalanced.py +797 -0
- ilovetools/ml/interpretation.py +915 -0
- ilovetools/ml/metrics.py +601 -0
- ilovetools/ml/pipeline.py +711 -0
- ilovetools/ml/timeseries.py +984 -0
- ilovetools/ml/tuning.py +781 -0
- ilovetools/security/__init__.py +5 -0
- ilovetools/text/__init__.py +5 -0
- ilovetools/utils/__init__.py +5 -0
- ilovetools/validation/__init__.py +5 -0
- ilovetools/web/__init__.py +5 -0
- ilovetools-0.2.3.dist-info/METADATA +143 -0
- ilovetools-0.2.3.dist-info/RECORD +38 -0
- ilovetools-0.2.3.dist-info/WHEEL +5 -0
- ilovetools-0.2.3.dist-info/licenses/LICENSE +21 -0
- ilovetools-0.2.3.dist-info/top_level.txt +2 -0
- tests/__init__.py +3 -0
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ilovetools
|
|
3
|
+
Version: 0.2.3
|
|
4
|
+
Summary: A comprehensive Python utility library with modular tools for AI/ML, data processing, and daily programming needs
|
|
5
|
+
Home-page: https://github.com/AliMehdi512/ilovetools
|
|
6
|
+
Author: Ali Mehdi
|
|
7
|
+
Author-email: Ali Mehdi <ali.mehdi.dev579@gmail.com>
|
|
8
|
+
License: MIT
|
|
9
|
+
Project-URL: Homepage, https://github.com/AliMehdi512/ilovetools
|
|
10
|
+
Project-URL: Repository, https://github.com/AliMehdi512/ilovetools
|
|
11
|
+
Project-URL: Issues, https://github.com/AliMehdi512/ilovetools/issues
|
|
12
|
+
Keywords: utilities,tools,ai,ml,data-processing,automation
|
|
13
|
+
Classifier: Development Status :: 3 - Alpha
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
16
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
+
Requires-Python: >=3.8
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
License-File: LICENSE
|
|
26
|
+
Dynamic: author
|
|
27
|
+
Dynamic: home-page
|
|
28
|
+
Dynamic: license-file
|
|
29
|
+
Dynamic: requires-python
|
|
30
|
+
|
|
31
|
+
# 🛠️ ilovetools
|
|
32
|
+
|
|
33
|
+
A comprehensive Python utility library with modular tools for AI/ML, data processing, file operations, and daily programming needs.
|
|
34
|
+
|
|
35
|
+
[](https://www.python.org/downloads/)
|
|
36
|
+
[](https://opensource.org/licenses/MIT)
|
|
37
|
+
[](https://badge.fury.io/py/ilovetools)
|
|
38
|
+
|
|
39
|
+
## 📦 Installation
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
pip install ilovetools
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## 🚀 Quick Start
|
|
46
|
+
|
|
47
|
+
```python
|
|
48
|
+
from ilovetools import ai, data, files, text
|
|
49
|
+
|
|
50
|
+
# AI utilities
|
|
51
|
+
embeddings = ai.quick_embed("Your text here")
|
|
52
|
+
|
|
53
|
+
# Data processing
|
|
54
|
+
cleaned_data = data.auto_clean(your_dataframe)
|
|
55
|
+
|
|
56
|
+
# File operations
|
|
57
|
+
files.smart_read("any_file.xyz")
|
|
58
|
+
|
|
59
|
+
# Text processing
|
|
60
|
+
emails = text.extract_emails("Contact us at hello@example.com")
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
## 📚 Modules
|
|
64
|
+
|
|
65
|
+
### 🤖 AI & Machine Learning (`ilovetools.ai`)
|
|
66
|
+
Advanced AI/ML utilities for modern development:
|
|
67
|
+
- LLM helpers and prompt engineering
|
|
68
|
+
- Model loading and inference optimization
|
|
69
|
+
- Embeddings and vector operations
|
|
70
|
+
- RAG pipeline tools
|
|
71
|
+
- Fine-tuning utilities
|
|
72
|
+
|
|
73
|
+
### 📊 Data Processing (`ilovetools.data`)
|
|
74
|
+
Smart data manipulation and analysis tools
|
|
75
|
+
|
|
76
|
+
### 📁 File Operations (`ilovetools.files`)
|
|
77
|
+
Intelligent file handling and management
|
|
78
|
+
|
|
79
|
+
### 📝 Text Processing (`ilovetools.text`)
|
|
80
|
+
Advanced text manipulation and NLP utilities
|
|
81
|
+
|
|
82
|
+
### 🖼️ Image Tools (`ilovetools.image`)
|
|
83
|
+
Image processing and computer vision helpers
|
|
84
|
+
|
|
85
|
+
### 🎵 Audio Tools (`ilovetools.audio`)
|
|
86
|
+
Audio processing utilities
|
|
87
|
+
|
|
88
|
+
### 🌐 Web Utilities (`ilovetools.web`)
|
|
89
|
+
Web scraping and HTTP helpers
|
|
90
|
+
|
|
91
|
+
### 🔐 Security (`ilovetools.security`)
|
|
92
|
+
Encryption and security tools
|
|
93
|
+
|
|
94
|
+
### 💾 Database (`ilovetools.database`)
|
|
95
|
+
Database connection and query helpers
|
|
96
|
+
|
|
97
|
+
### ⏰ DateTime (`ilovetools.datetime`)
|
|
98
|
+
Advanced date and time utilities
|
|
99
|
+
|
|
100
|
+
### ✅ Validation (`ilovetools.validation`)
|
|
101
|
+
Data validation and sanitization
|
|
102
|
+
|
|
103
|
+
### 🔄 Conversion (`ilovetools.conversion`)
|
|
104
|
+
Format converters and transformers
|
|
105
|
+
|
|
106
|
+
### 🤖 Automation (`ilovetools.automation`)
|
|
107
|
+
Task automation helpers
|
|
108
|
+
|
|
109
|
+
### 🔧 Utils (`ilovetools.utils`)
|
|
110
|
+
General utility functions
|
|
111
|
+
|
|
112
|
+
## 📖 Documentation
|
|
113
|
+
|
|
114
|
+
Full documentation available at: [Coming Soon]
|
|
115
|
+
|
|
116
|
+
## 🤝 Contributing
|
|
117
|
+
|
|
118
|
+
Contributions are welcome! Please feel free to submit a Pull Request.
|
|
119
|
+
|
|
120
|
+
## 📄 License
|
|
121
|
+
|
|
122
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
123
|
+
|
|
124
|
+
## 👨💻 Author
|
|
125
|
+
|
|
126
|
+
**Ali Mehdi**
|
|
127
|
+
- GitHub: [@AliMehdi512](https://github.com/AliMehdi512)
|
|
128
|
+
- WhatsApp: https://wa.me/923264747914
|
|
129
|
+
|
|
130
|
+
## 🌟 Support
|
|
131
|
+
|
|
132
|
+
If you find this library useful, please give it a star ⭐️
|
|
133
|
+
|
|
134
|
+
## 📝 Changelog
|
|
135
|
+
|
|
136
|
+
### Version 0.1.0 (Initial Release)
|
|
137
|
+
- Initial library structure
|
|
138
|
+
- Core module setup
|
|
139
|
+
- Basic utilities
|
|
140
|
+
|
|
141
|
+
---
|
|
142
|
+
|
|
143
|
+
Built with ❤️ for the Python community
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
ilovetools/__init__.py,sha256=ig_ZoY0Y3JGlwOJ2F4AolsfCVdSWGtHZ0KlneArgng8,725
|
|
2
|
+
ilovetools/ai/__init__.py,sha256=X8H28OUoTHT7K-OnMx83nAvPRVCyV1r8Llh6QEbkb8E,259
|
|
3
|
+
ilovetools/ai/embeddings.py,sha256=JBJ0c7aCov1eZGcPjuD8fY1CJe-cNmrO2_DCckEIjcA,8583
|
|
4
|
+
ilovetools/ai/inference.py,sha256=lDuREwf04BkaHGmkKQwgy3wwZRVlNy8A607vzwL-oLE,60
|
|
5
|
+
ilovetools/ai/llm_helpers.py,sha256=IgEGEF1s5VSZ2KndrdqXicH7M7n4PV9c2CdOAY-239s,4432
|
|
6
|
+
ilovetools/audio/__init__.py,sha256=B7atdH2nayCangy6b5FolqWNX2vfjh-K2gLx9kMNGmw,48
|
|
7
|
+
ilovetools/automation/__init__.py,sha256=sYuGw2tJBw8fgk8qhQNRyK-6XIqeLyoWo83QPT3fC7k,47
|
|
8
|
+
ilovetools/conversion/__init__.py,sha256=8bs3-l10sx-_XCeYpjqjSzbpW0UuXJrz0-HBM_hrkIM,49
|
|
9
|
+
ilovetools/data/__init__.py,sha256=NSUk-T-n5pkf4fZDo8KllGpeESCzZPWwQTH44RXvZxQ,641
|
|
10
|
+
ilovetools/data/feature_engineering.py,sha256=vy726mnf5K6_zFJX9sv8QetUd8OSuD2E45rTYsHjYRU,15641
|
|
11
|
+
ilovetools/data/preprocessing.py,sha256=l2j-AEF-4nrg9sKmOEmg127OE6QRembPGCGtyzi7xZo,7816
|
|
12
|
+
ilovetools/database/__init__.py,sha256=ksuVyzDM5GdRSulLWghRy-MVGDFy8wbacLuV9DqHImQ,61
|
|
13
|
+
ilovetools/datetime/__init__.py,sha256=znPdTvHcFRTXRgOH8VSGnFLJeNvd3_J1yKRmOq0hHOA,45
|
|
14
|
+
ilovetools/files/__init__.py,sha256=OX27wVQYKB_oPxvL39kWhCDpu5Tt8jGH22MKtYEnK-c,62
|
|
15
|
+
ilovetools/image/__init__.py,sha256=neiSIIZN7i_0CqR0y-neckF_1-45otKjw_dsDaE8gMo,48
|
|
16
|
+
ilovetools/ml/__init__.py,sha256=PGQzittDH2Gb5yuDa8FdQBIRSzIYO9-2P_OqnPppsfY,12772
|
|
17
|
+
ilovetools/ml/clustering.py,sha256=aAefpKDRSV89WjmEvkeeogxjlxH79xCRIhhdfC_FX08,30405
|
|
18
|
+
ilovetools/ml/cross_validation.py,sha256=b4mBjsPcrRMOPDou7CvM6D-6ljAdkvUeCV7rjnu_cgY,16713
|
|
19
|
+
ilovetools/ml/dimensionality.py,sha256=KmV7xa3ARG3W7-_UQAX2sVQNtVbJ-229-vmq_TlLl8Q,26249
|
|
20
|
+
ilovetools/ml/ensemble.py,sha256=pGcGXIdu56IWBYgdw4tKCVyLe7UQ5ku75_j_YFhNAqw,25417
|
|
21
|
+
ilovetools/ml/feature_selection.py,sha256=FkKHGNBK_h4GttlA9vAiN1lhG9YTRjEbzFozdC2MHoU,30747
|
|
22
|
+
ilovetools/ml/imbalanced.py,sha256=IpVfqyRqR0q45ILfgPpsXzXOF-9sVTkHm7VXTEQa5Ng,21806
|
|
23
|
+
ilovetools/ml/interpretation.py,sha256=hQBvPq8y0IqpUH3Tu2TxhGbXRb2CIYLuoqkHnhgSEi4,28016
|
|
24
|
+
ilovetools/ml/metrics.py,sha256=qnHA1wanFp_rWNxseI9OH0_Qv1Fv-OAoFCbSv-LnfRw,17222
|
|
25
|
+
ilovetools/ml/pipeline.py,sha256=ZF8WXBz1Jya1JEKYlxIkoBS5x_CG1t5pIs0IvH5Mnog,18832
|
|
26
|
+
ilovetools/ml/timeseries.py,sha256=crIc8LXOFoi-9rk2EQ7TeUlNPTMVDbh_jLaP-AFw4H8,24649
|
|
27
|
+
ilovetools/ml/tuning.py,sha256=7-YFfcdr6GJ4zqdrg407kWzst6vXKVBLRQpSNfSiytI,23103
|
|
28
|
+
ilovetools/security/__init__.py,sha256=jQg05Gi5QOqFwNhj4kpaVB0rlQy2JvfwD9DHaeqR3iA,55
|
|
29
|
+
ilovetools/text/__init__.py,sha256=tt5iXyHNCQYvomL9Z9ubro4HmckI8W-EKgdKEiTFuWA,55
|
|
30
|
+
ilovetools/utils/__init__.py,sha256=nFtUxlJeWBFZRl7U2wz4REbrwoLjlKif3tYKdMgzn9s,47
|
|
31
|
+
ilovetools/validation/__init__.py,sha256=gnYqT3k_2LYjM0jr-pSnnyMjCBvOrKmGhYS2RoL7Bu8,64
|
|
32
|
+
ilovetools/web/__init__.py,sha256=7HNp0mfw8OVHqxFvJ_M-UfJraG2BX-g3vvOlcSNCQ5w,53
|
|
33
|
+
ilovetools-0.2.3.dist-info/licenses/LICENSE,sha256=pFIsQeo2ZIARy0yDsoT-FYYHdiol7mGq1rtKPYIYn20,1065
|
|
34
|
+
tests/__init__.py,sha256=hiWUFgSflKQWFZ6mOX9sNUbogc6-Vf6xGdY_8-Kk56w,33
|
|
35
|
+
ilovetools-0.2.3.dist-info/METADATA,sha256=KhbFJWylkFXXMWiKpM4SpjWizTmTFSTFiG2DxWwDXG0,4088
|
|
36
|
+
ilovetools-0.2.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
37
|
+
ilovetools-0.2.3.dist-info/top_level.txt,sha256=_JECI73sb4vs7YXZi9JjtIkpCd760dBOVm2ehxYoJIE,17
|
|
38
|
+
ilovetools-0.2.3.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Ali Mehdi
|
|
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.
|
tests/__init__.py
ADDED