AutomatedCleaning 1.0__tar.gz → 1.2__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.
- {automatedcleaning-1.0 → automatedcleaning-1.2}/AutomatedCleaning.egg-info/PKG-INFO +5 -5
- {automatedcleaning-1.0 → automatedcleaning-1.2}/AutomatedCleaning.egg-info/SOURCES.txt +2 -1
- {automatedcleaning-1.0 → automatedcleaning-1.2}/PKG-INFO +5 -5
- {automatedcleaning-1.0 → automatedcleaning-1.2}/README.md +3 -3
- automatedcleaning-1.2/automatedcleaning/cleaning.py +1269 -0
- automatedcleaning-1.0/automatedcleaning/cleaning.py → automatedcleaning-1.2/automatedcleaning/cleaning_update.py +46 -62
- {automatedcleaning-1.0 → automatedcleaning-1.2}/setup.py +2 -2
- {automatedcleaning-1.0 → automatedcleaning-1.2}/AutomatedCleaning.egg-info/dependency_links.txt +0 -0
- {automatedcleaning-1.0 → automatedcleaning-1.2}/AutomatedCleaning.egg-info/requires.txt +0 -0
- {automatedcleaning-1.0 → automatedcleaning-1.2}/AutomatedCleaning.egg-info/top_level.txt +0 -0
- {automatedcleaning-1.0 → automatedcleaning-1.2}/automatedcleaning/__init__.py +0 -0
- {automatedcleaning-1.0 → automatedcleaning-1.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: AutomatedCleaning
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2
|
|
4
4
|
Summary: Automated Data Cleaning Library
|
|
5
5
|
Home-page: https://github.com/DataSpoof/AutomatedCleaning
|
|
6
6
|
Author: Abhishek Kumar Singh
|
|
@@ -8,7 +8,7 @@ Author-email: dataspoof007@gmail.com
|
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
|
-
Requires-Python: >=3.
|
|
11
|
+
Requires-Python: >=3.11
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
Requires-Dist: absl-py==2.1.0
|
|
14
14
|
Requires-Dist: annotated-types==0.7.0
|
|
@@ -143,8 +143,7 @@ Dynamic: summary
|
|
|
143
143
|
|
|
144
144
|
AutomatedCleaning is a Python library for automated data cleaning.It helps preprocess and analyze datasets by handling missing values, outliers, spelling corrections, and more.
|
|
145
145
|
|
|
146
|
-

|
|
148
147
|
|
|
149
148
|
## Features
|
|
150
149
|
- Supports both large (100+ GB) and small datasets
|
|
@@ -157,6 +156,7 @@ AutomatedCleaning is a Python library for automated data cleaning.It helps prepr
|
|
|
157
156
|
- Analyzes cardinality in categorical columns
|
|
158
157
|
- Identifies and cleans text columns
|
|
159
158
|
- Detect JSON-type columns
|
|
159
|
+
- Detect and mask PII types of columns
|
|
160
160
|
- Performs univariate, bivariate, and multivariate analysis
|
|
161
161
|
|
|
162
162
|
|
|
@@ -167,7 +167,7 @@ pip install AutomatedCleaning
|
|
|
167
167
|
|
|
168
168
|
## Usage
|
|
169
169
|
```bash
|
|
170
|
-
import
|
|
170
|
+
import automatedcleaning as ac
|
|
171
171
|
df = ac.load_data("dataset.csv")
|
|
172
172
|
df_cleaned = ac.clean_data(df)
|
|
173
173
|
```
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: AutomatedCleaning
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2
|
|
4
4
|
Summary: Automated Data Cleaning Library
|
|
5
5
|
Home-page: https://github.com/DataSpoof/AutomatedCleaning
|
|
6
6
|
Author: Abhishek Kumar Singh
|
|
@@ -8,7 +8,7 @@ Author-email: dataspoof007@gmail.com
|
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
|
-
Requires-Python: >=3.
|
|
11
|
+
Requires-Python: >=3.11
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
Requires-Dist: absl-py==2.1.0
|
|
14
14
|
Requires-Dist: annotated-types==0.7.0
|
|
@@ -143,8 +143,7 @@ Dynamic: summary
|
|
|
143
143
|
|
|
144
144
|
AutomatedCleaning is a Python library for automated data cleaning.It helps preprocess and analyze datasets by handling missing values, outliers, spelling corrections, and more.
|
|
145
145
|
|
|
146
|
-

|
|
148
147
|
|
|
149
148
|
## Features
|
|
150
149
|
- Supports both large (100+ GB) and small datasets
|
|
@@ -157,6 +156,7 @@ AutomatedCleaning is a Python library for automated data cleaning.It helps prepr
|
|
|
157
156
|
- Analyzes cardinality in categorical columns
|
|
158
157
|
- Identifies and cleans text columns
|
|
159
158
|
- Detect JSON-type columns
|
|
159
|
+
- Detect and mask PII types of columns
|
|
160
160
|
- Performs univariate, bivariate, and multivariate analysis
|
|
161
161
|
|
|
162
162
|
|
|
@@ -167,7 +167,7 @@ pip install AutomatedCleaning
|
|
|
167
167
|
|
|
168
168
|
## Usage
|
|
169
169
|
```bash
|
|
170
|
-
import
|
|
170
|
+
import automatedcleaning as ac
|
|
171
171
|
df = ac.load_data("dataset.csv")
|
|
172
172
|
df_cleaned = ac.clean_data(df)
|
|
173
173
|
```
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
AutomatedCleaning is a Python library for automated data cleaning.It helps preprocess and analyze datasets by handling missing values, outliers, spelling corrections, and more.
|
|
4
4
|
|
|
5
|
-

|
|
7
6
|
|
|
8
7
|
## Features
|
|
9
8
|
- Supports both large (100+ GB) and small datasets
|
|
@@ -16,6 +15,7 @@ AutomatedCleaning is a Python library for automated data cleaning.It helps prepr
|
|
|
16
15
|
- Analyzes cardinality in categorical columns
|
|
17
16
|
- Identifies and cleans text columns
|
|
18
17
|
- Detect JSON-type columns
|
|
18
|
+
- Detect and mask PII types of columns
|
|
19
19
|
- Performs univariate, bivariate, and multivariate analysis
|
|
20
20
|
|
|
21
21
|
|
|
@@ -26,7 +26,7 @@ pip install AutomatedCleaning
|
|
|
26
26
|
|
|
27
27
|
## Usage
|
|
28
28
|
```bash
|
|
29
|
-
import
|
|
29
|
+
import automatedcleaning as ac
|
|
30
30
|
df = ac.load_data("dataset.csv")
|
|
31
31
|
df_cleaned = ac.clean_data(df)
|
|
32
32
|
```
|