wiz-craft 0.0.1__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,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 Pinak Datta
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.
@@ -0,0 +1,105 @@
1
+ Metadata-Version: 2.1
2
+ Name: wiz-craft
3
+ Version: 0.0.1
4
+ Summary: A CLI-based dataset preprocessing tool for machine learning tasks. Features include data exploration, null value handling, one-hot encoding, and feature scaling, and download the modified dataset effortlessly.
5
+ Author: Pinak Datta
6
+ Author-email: pinakdatta2002@gmail.com
7
+ Keywords: Dataset preprocessing,Data cleaning,Machine learning,Data analysis,Data manipulation,Data preparation,Data engineering,CLI tool,Command Line Interface,Data science,Feature scaling,One-hot encoding,Data imputation,Null value handling,Data exploration,Data visualization,Python library,Data transformation,Data processing,DataWiz,Wizcraft,wiz-craft,WizCraft
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Operating System :: MacOS :: MacOS X
11
+ Classifier: Operating System :: Microsoft :: Windows
12
+ Classifier: Operating System :: Unix
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+
16
+ # WizCraft - CLI-Based Dataset Preprocessing Tool
17
+
18
+ WizCraft is a cutting-edge Command Line Interface (CLI) tool developed to simplify the process of dataset preprocessing for machine learning tasks. It aims to provide a seamless and efficient experience for data scientists of all levels, facilitating the preparation of data for various machine-learning applications.
19
+
20
+ **[Try the tool online here](https://replit.com/@PinakDatta/DataWiz)**
21
+
22
+ ## Table of Contents
23
+
24
+ - [Features](#features)
25
+ - [Getting Started](#getting-started)
26
+ - [Installation](#installation)
27
+ - [Usage](#usage)
28
+ - [Tasks](#tasks)
29
+ - [Data Description](#data-description)
30
+ - [Handle Null Values](#handle-null-values)
31
+ - [Encode Categorical Values](#encode-categorical-values)
32
+ - [Feature Scaling](#feature-scaling)
33
+ - [Save Preprocessed Dataset](#save-preprocessed-dataset)
34
+ - [Future Works](#future-works)
35
+
36
+ ## Features
37
+
38
+ - Load and preprocess your dataset effortlessly through a Command Line Interface (CLI).
39
+ - View dataset statistics, null value counts, and perform data imputation.
40
+ - Encode categorical variables using one-hot encoding.
41
+ - Normalize and standardize numerical features for better model performance.
42
+ - Download the preprocessed dataset with your desired modifications.
43
+
44
+ ## Getting Started
45
+
46
+ ### Installation
47
+
48
+ 1. Clone this repository:
49
+
50
+ ```bash
51
+ git clone https://github.com/Pinak-Datta/wiz-craft.git
52
+ cd wiz-craft
53
+ 2. Install the required dependencies:
54
+
55
+ ```bash
56
+ pip install -r requirements.txt
57
+
58
+ ### Usage
59
+
60
+ 1. To use the module, use the commands:
61
+ ```python
62
+ from wizcraft import Wizcraft
63
+ wz_object = Wizcraft()
64
+ wz_object.run()
65
+ 2. Follow the on-screen prompts to load your dataset, select target variables, and perform preprocessing tasks.
66
+
67
+ ## Features Available
68
+
69
+ ### Data Description
70
+
71
+ 1. View statistics and properties of numeric columns.
72
+ 2. Explore unique values and statistics of categorical columns.
73
+ 3. Display a snapshot of the dataset.
74
+
75
+ ### Handle Null Values
76
+
77
+ 1. Show NULL value counts in each column.
78
+
79
+ 2. Remove specific columns or fill NULL values with mean, median, or mode.
80
+
81
+ ### Encode Categorical Values
82
+
83
+
84
+ 1. Identify and list categorical columns.
85
+ 2. Perform one-hot encoding on categorical columns.
86
+
87
+ ### Feature Scaling
88
+
89
+ 1. Normalize (Min-Max scaling) or standardize (Standard Scaler) numerical columns.
90
+
91
+ ### Save Preprocessed Dataset
92
+
93
+ 1. Download the modified dataset with applied preprocessing steps.
94
+
95
+ ## Future Works
96
+
97
+ - [ ] Undo/Redo Option for each step
98
+
99
+ - [ ] Extension for NLP tasks (like tokenization, stemming)
100
+
101
+ - [ ] Advanced Data Imputation Techniques: Adding support for advanced data imputation techniques, such as K-nearest neighbors (KNN) imputation.
102
+
103
+ - [ ] User-Friendly Interface: Improving the user interface to provide more interactive and user-friendly features, such as progress bars, error handling, and clear instructions.
104
+
105
+ - [ ] Using Curses for terminal Manipulation.
@@ -0,0 +1,102 @@
1
+ WizCraft - CLI-Based Dataset Preprocessing Tool
2
+ ===============================================
3
+
4
+ WizCraft is a cutting-edge Command Line Interface (CLI) tool developed
5
+ to simplify the process of dataset preprocessing for machine learning
6
+ tasks. It aims to provide a seamless and efficient experience for data
7
+ scientists of all levels, facilitating the preparation of data for
8
+ various machine-learning applications.
9
+
10
+ `Try the tool online here <https://replit.com/@PinakDatta/DataWiz>`__
11
+
12
+ Table of Contents
13
+ -----------------
14
+
15
+ - Features <#features>
16
+ - Getting Started <#getting-started>
17
+
18
+ - Installation <#installation>
19
+ - Usage <#usage>
20
+
21
+ - Tasks <#tasks>
22
+
23
+ - Data Description <#data-description>
24
+ - Handle Null Values <#handle-null-values>
25
+ - Encode Categorical Values <#encode-categorical-values>
26
+ - Feature Scaling <#feature-scaling>
27
+ - Save Preprocessed Dataset <#save-preprocessed-dataset>
28
+
29
+ - Future Works <#future-works>
30
+
31
+ Features
32
+ --------
33
+
34
+ - Load and preprocess your dataset effortlessly through a Command Line
35
+ Interface (CLI).
36
+ - View dataset statistics, null value counts, and perform data
37
+ imputation.
38
+ - Encode categorical variables using one-hot encoding.
39
+ - Normalize and standardize numerical features for better model
40
+ performance.
41
+ - Download the preprocessed dataset with your desired modifications.
42
+
43
+ Getting Started
44
+ ---------------
45
+
46
+ Installation
47
+ ~~~~~~~~~~~~
48
+
49
+ 1. Clone this repository::
50
+
51
+ git clone https://github.com/Pinak-Datta/wiz-craft.git
52
+ cd wiz-craft
53
+
54
+ 2. Install the required dependencies::
55
+
56
+ pip install -r requirements.txt
57
+
58
+ Usage
59
+ ~~~~~
60
+
61
+ 1. To use the module, use the commands::
62
+
63
+ from wizcraft import Wizcraft
64
+ wz_object = Wizcraft()
65
+ wz_object.run()
66
+
67
+ 2. Follow the on-screen prompts to load your dataset, select target
68
+ variables, and perform preprocessing tasks.
69
+
70
+ Features Available
71
+ ------------------
72
+
73
+ Data Description
74
+ ~~~~~~~~~~~~~~~~
75
+
76
+ 1. View statistics and properties of numeric columns.
77
+ 2. Explore unique values and statistics of categorical columns.
78
+ 3. Display a snapshot of the dataset.
79
+
80
+ Handle Null Values
81
+ ~~~~~~~~~~~~~~~~~~
82
+
83
+ 1. Show NULL value counts in each column.
84
+ 2. Remove specific columns or fill NULL values with mean, median, or
85
+ mode.
86
+
87
+ Encode Categorical Values
88
+ ~~~~~~~~~~~~~~~~~~~~~~~~~
89
+
90
+ 1. Identify and list categorical columns.
91
+ 2. Perform one-hot encoding on categorical columns.
92
+
93
+ Feature Scaling
94
+ ~~~~~~~~~~~~~~~
95
+
96
+ 1. Normalize (Min-Max scaling) or standardize (Standard Scaler)
97
+
98
+
99
+ Save the Modified Dataset
100
+ ~~~~~~~~~~~~~~~
101
+
102
+ 1. Download the modified dataset with applied preprocessing steps.
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,42 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ with open('Readme.md', 'r') as file_handler:
4
+ long_description = file_handler.read()
5
+
6
+ VERSION = '0.0.1',
7
+ DESCRIPTION = 'A CLI-based dataset preprocessing tool for machine learning tasks. Features include data exploration, ' \
8
+ 'null value handling, one-hot encoding, and feature scaling, and download the modified dataset ' \
9
+ 'effortlessly. '
10
+ setup(
11
+ name='wiz-craft',
12
+ version='0.0.1',
13
+ author_email='pinakdatta2002@gmail.com',
14
+ author='Pinak Datta',
15
+ description='A CLI-based dataset preprocessing tool for machine learning tasks. Features include data '
16
+ 'exploration, null value handling, one-hot encoding, and feature scaling, and download the modified '
17
+ 'dataset effortlessly.',
18
+ long_description_content_type='text/markdown',
19
+ long_description=long_description,
20
+ packages=find_packages(),
21
+ install_requires=[
22
+ 'numpy',
23
+ 'pandas',
24
+ 'scikit-learn',
25
+ 'scipy',
26
+ 'pandoc'
27
+ ],
28
+ keywords=['Dataset preprocessing', 'Data cleaning', 'Machine learning', 'Data analysis', 'Data manipulation',
29
+ 'Data preparation', 'Data engineering', 'CLI tool', 'Command Line Interface', 'Data science',
30
+ 'Feature scaling', 'One-hot encoding', 'Data imputation', 'Null value handling', 'Data exploration',
31
+ 'Data visualization', 'Python library', 'Data transformation', 'Data processing', 'DataWiz', 'Wizcraft',
32
+ 'wiz-craft', 'WizCraft'
33
+ ],
34
+
35
+ classifiers=[
36
+ "Programming Language :: Python :: 3",
37
+ "Intended Audience :: Developers",
38
+ "Operating System :: MacOS :: MacOS X",
39
+ "Operating System :: Microsoft :: Windows",
40
+ "Operating System :: Unix",
41
+ ]
42
+ )
@@ -0,0 +1,105 @@
1
+ Metadata-Version: 2.1
2
+ Name: wiz-craft
3
+ Version: 0.0.1
4
+ Summary: A CLI-based dataset preprocessing tool for machine learning tasks. Features include data exploration, null value handling, one-hot encoding, and feature scaling, and download the modified dataset effortlessly.
5
+ Author: Pinak Datta
6
+ Author-email: pinakdatta2002@gmail.com
7
+ Keywords: Dataset preprocessing,Data cleaning,Machine learning,Data analysis,Data manipulation,Data preparation,Data engineering,CLI tool,Command Line Interface,Data science,Feature scaling,One-hot encoding,Data imputation,Null value handling,Data exploration,Data visualization,Python library,Data transformation,Data processing,DataWiz,Wizcraft,wiz-craft,WizCraft
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Operating System :: MacOS :: MacOS X
11
+ Classifier: Operating System :: Microsoft :: Windows
12
+ Classifier: Operating System :: Unix
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+
16
+ # WizCraft - CLI-Based Dataset Preprocessing Tool
17
+
18
+ WizCraft is a cutting-edge Command Line Interface (CLI) tool developed to simplify the process of dataset preprocessing for machine learning tasks. It aims to provide a seamless and efficient experience for data scientists of all levels, facilitating the preparation of data for various machine-learning applications.
19
+
20
+ **[Try the tool online here](https://replit.com/@PinakDatta/DataWiz)**
21
+
22
+ ## Table of Contents
23
+
24
+ - [Features](#features)
25
+ - [Getting Started](#getting-started)
26
+ - [Installation](#installation)
27
+ - [Usage](#usage)
28
+ - [Tasks](#tasks)
29
+ - [Data Description](#data-description)
30
+ - [Handle Null Values](#handle-null-values)
31
+ - [Encode Categorical Values](#encode-categorical-values)
32
+ - [Feature Scaling](#feature-scaling)
33
+ - [Save Preprocessed Dataset](#save-preprocessed-dataset)
34
+ - [Future Works](#future-works)
35
+
36
+ ## Features
37
+
38
+ - Load and preprocess your dataset effortlessly through a Command Line Interface (CLI).
39
+ - View dataset statistics, null value counts, and perform data imputation.
40
+ - Encode categorical variables using one-hot encoding.
41
+ - Normalize and standardize numerical features for better model performance.
42
+ - Download the preprocessed dataset with your desired modifications.
43
+
44
+ ## Getting Started
45
+
46
+ ### Installation
47
+
48
+ 1. Clone this repository:
49
+
50
+ ```bash
51
+ git clone https://github.com/Pinak-Datta/wiz-craft.git
52
+ cd wiz-craft
53
+ 2. Install the required dependencies:
54
+
55
+ ```bash
56
+ pip install -r requirements.txt
57
+
58
+ ### Usage
59
+
60
+ 1. To use the module, use the commands:
61
+ ```python
62
+ from wizcraft import Wizcraft
63
+ wz_object = Wizcraft()
64
+ wz_object.run()
65
+ 2. Follow the on-screen prompts to load your dataset, select target variables, and perform preprocessing tasks.
66
+
67
+ ## Features Available
68
+
69
+ ### Data Description
70
+
71
+ 1. View statistics and properties of numeric columns.
72
+ 2. Explore unique values and statistics of categorical columns.
73
+ 3. Display a snapshot of the dataset.
74
+
75
+ ### Handle Null Values
76
+
77
+ 1. Show NULL value counts in each column.
78
+
79
+ 2. Remove specific columns or fill NULL values with mean, median, or mode.
80
+
81
+ ### Encode Categorical Values
82
+
83
+
84
+ 1. Identify and list categorical columns.
85
+ 2. Perform one-hot encoding on categorical columns.
86
+
87
+ ### Feature Scaling
88
+
89
+ 1. Normalize (Min-Max scaling) or standardize (Standard Scaler) numerical columns.
90
+
91
+ ### Save Preprocessed Dataset
92
+
93
+ 1. Download the modified dataset with applied preprocessing steps.
94
+
95
+ ## Future Works
96
+
97
+ - [ ] Undo/Redo Option for each step
98
+
99
+ - [ ] Extension for NLP tasks (like tokenization, stemming)
100
+
101
+ - [ ] Advanced Data Imputation Techniques: Adding support for advanced data imputation techniques, such as K-nearest neighbors (KNN) imputation.
102
+
103
+ - [ ] User-Friendly Interface: Improving the user interface to provide more interactive and user-friendly features, such as progress bars, error handling, and clear instructions.
104
+
105
+ - [ ] Using Curses for terminal Manipulation.
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ README.rst
3
+ setup.py
4
+ wiz_craft.egg-info/PKG-INFO
5
+ wiz_craft.egg-info/SOURCES.txt
6
+ wiz_craft.egg-info/dependency_links.txt
7
+ wiz_craft.egg-info/requires.txt
8
+ wiz_craft.egg-info/top_level.txt
@@ -0,0 +1,5 @@
1
+ numpy
2
+ pandas
3
+ scikit-learn
4
+ scipy
5
+ pandoc