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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: AutomatedCleaning
3
- Version: 1.0
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.6
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
- ![Logo](https://github.com/DataSpoof/AutomatedCleaning/blob/main/images/logo2.png)
147
-
146
+ ![Logo](https://raw.githubusercontent.com/DataSpoof/AutomatedCleaning/main/images/logo2.png)
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 AutomatedCleaning as ac
170
+ import automatedcleaning as ac
171
171
  df = ac.load_data("dataset.csv")
172
172
  df_cleaned = ac.clean_data(df)
173
173
  ```
@@ -6,4 +6,5 @@ AutomatedCleaning.egg-info/dependency_links.txt
6
6
  AutomatedCleaning.egg-info/requires.txt
7
7
  AutomatedCleaning.egg-info/top_level.txt
8
8
  automatedcleaning/__init__.py
9
- automatedcleaning/cleaning.py
9
+ automatedcleaning/cleaning.py
10
+ automatedcleaning/cleaning_update.py
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: AutomatedCleaning
3
- Version: 1.0
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.6
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
- ![Logo](https://github.com/DataSpoof/AutomatedCleaning/blob/main/images/logo2.png)
147
-
146
+ ![Logo](https://raw.githubusercontent.com/DataSpoof/AutomatedCleaning/main/images/logo2.png)
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 AutomatedCleaning as ac
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
- ![Logo](https://github.com/DataSpoof/AutomatedCleaning/blob/main/images/logo2.png)
6
-
5
+ ![Logo](https://raw.githubusercontent.com/DataSpoof/AutomatedCleaning/main/images/logo2.png)
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 AutomatedCleaning as ac
29
+ import automatedcleaning as ac
30
30
  df = ac.load_data("dataset.csv")
31
31
  df_cleaned = ac.clean_data(df)
32
32
  ```