noshot 0.3.3__py3-none-any.whl → 0.3.4__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.
@@ -1,37 +1,37 @@
1
- Month,Sales
2
- 01-01,266
3
- 01-02,145.9
4
- 01-03,183.1
5
- 01-04,119.3
6
- 01-05,180.3
7
- 01-06,168.5
8
- 01-07,231.8
9
- 01-08,224.5
10
- 01-09,192.8
11
- 1-10,122.9
12
- 1-11,336.5
13
- 1-12,185.9
14
- 02-01,194.3
15
- 02-02,149.5
16
- 02-03,210.1
17
- 02-04,273.3
18
- 02-05,191.4
19
- 02-06,287
20
- 02-07,226
21
- 02-08,303.6
22
- 02-09,289.9
23
- 2-10,421.6
24
- 2-11,264.5
25
- 2-12,342.3
26
- 03-01,339.7
27
- 03-02,440.4
28
- 03-03,315.9
29
- 03-04,439.3
30
- 03-05,401.3
31
- 03-06,437.4
32
- 03-07,575.5
33
- 03-08,407.6
34
- 03-09,682
35
- 3-10,475.3
36
- 3-11,581.3
1
+ Month,Sales
2
+ 01-01,266
3
+ 01-02,145.9
4
+ 01-03,183.1
5
+ 01-04,119.3
6
+ 01-05,180.3
7
+ 01-06,168.5
8
+ 01-07,231.8
9
+ 01-08,224.5
10
+ 01-09,192.8
11
+ 1-10,122.9
12
+ 1-11,336.5
13
+ 1-12,185.9
14
+ 02-01,194.3
15
+ 02-02,149.5
16
+ 02-03,210.1
17
+ 02-04,273.3
18
+ 02-05,191.4
19
+ 02-06,287
20
+ 02-07,226
21
+ 02-08,303.6
22
+ 02-09,289.9
23
+ 2-10,421.6
24
+ 2-11,264.5
25
+ 2-12,342.3
26
+ 03-01,339.7
27
+ 03-02,440.4
28
+ 03-03,315.9
29
+ 03-04,439.3
30
+ 03-05,401.3
31
+ 03-06,437.4
32
+ 03-07,575.5
33
+ 03-08,407.6
34
+ 03-09,682
35
+ 3-10,475.3
36
+ 3-11,581.3
37
37
  3-12,646.9
noshot/main.py CHANGED
@@ -1,19 +1,19 @@
1
- from noshot.utils.shell_utils import get_folder
2
- from noshot.utils.shell_utils import get_file
3
- from noshot.utils.shell_utils import remove_folder
4
-
5
- available = {'-1 ' : "ML TS XAI(Folder)",
6
- '0 ' : "Remove Folder"}
7
-
8
- def get(name = None, open = False):
9
- try:
10
- if name is not None:
11
- name = str(name)
12
- if name in ['-1'] : get_folder("ML TS XAI", loc = True)
13
- elif name in ['0'] : remove_folder("ML TS XAI")
14
- else:
15
- for k, v in available.items():
16
- sep = " : " if v else ""
17
- print(k,v,sep = sep)
18
- except Exception as error:
1
+ from noshot.utils.shell_utils import get_folder
2
+ from noshot.utils.shell_utils import get_file
3
+ from noshot.utils.shell_utils import remove_folder
4
+
5
+ available = {'-1 ' : "ML TS XAI(Folder)",
6
+ '0 ' : "Remove Folder"}
7
+
8
+ def get(name = None, open = False):
9
+ try:
10
+ if name is not None:
11
+ name = str(name)
12
+ if name in ['-1'] : get_folder("ML TS XAI", loc = True)
13
+ elif name in ['0'] : remove_folder("ML TS XAI")
14
+ else:
15
+ for k, v in available.items():
16
+ sep = " : " if v else ""
17
+ print(k,v,sep = sep)
18
+ except Exception as error:
19
19
  print(error)
noshot/utils/__init__.py CHANGED
@@ -1,3 +1,3 @@
1
- from .shell_utils import get_file
2
- from .shell_utils import get_folder
1
+ from .shell_utils import get_file
2
+ from .shell_utils import get_folder
3
3
  from .shell_utils import remove_folder
@@ -1,57 +1,57 @@
1
- import os
2
- import shutil
3
- import subprocess
4
- import pathlib
5
-
6
- def get_folder(folder_path, loc = False):
7
- src = os.path.join(os.path.dirname(os.path.dirname(__file__)), "data", pathlib.Path(folder_path))
8
- try:
9
- dest = os.path.join(os.getcwd(), pathlib.Path(folder_path))
10
- shutil.copytree(src, dest, symlinks=False, copy_function = shutil.copy2,
11
- ignore=shutil.ignore_patterns('.ipynb_checkpoints', '__init__.py', '__pycache__'),
12
- ignore_dangling_symlinks=False, dirs_exist_ok=True)
13
- except:
14
- try:
15
- dest = os.path.join(os.path.expanduser('~'), "Downloads", pathlib.Path(folder_path))
16
- shutil.copytree(src, dest, symlinks=False, copy_function = shutil.copy2,
17
- ignore=shutil.ignore_patterns('.ipynb_checkpoints', '__init__.py', '__pycache__'),
18
- ignore_dangling_symlinks=False, dirs_exist_ok=True)
19
- except Exception as error:
20
- print(error)
21
- return
22
- finally:
23
- if loc:
24
- print("Path:",dest)
25
-
26
- def get_file(file_path, loc = False, open = False):
27
- src = os.path.join(os.path.dirname(os.path.dirname(__file__)), "data", pathlib.Path(file_path))
28
- try:
29
- dest = os.path.join(os.getcwd(), pathlib.Path(file_path).name)
30
- shutil.copy(src, dest)
31
- if open:
32
- subprocess.Popen(f"jupyter notebook {dest}")
33
- except:
34
- try:
35
- dest = os.path.join(os.path.expanduser('~'), "Downloads", pathlib.Path(file_path).name)
36
- shutil.copy(src, dest)
37
- except Exception as error:
38
- print(error)
39
- finally:
40
- if loc:
41
- print("Path:",dest)
42
-
43
- def remove_folder(folder_path):
44
- try:
45
- src1 = os.path.join(os.getcwd(), pathlib.Path(folder_path))
46
- src2 = os.path.join(os.path.expanduser('~'), "Downloads", pathlib.Path(folder_path))
47
- if os.path.exists(src1) or os.path.exists(src2):
48
- shutil.rmtree(src1, ignore_errors = True)
49
- shutil.rmtree(src2, ignore_errors = True)
50
- if os.path.exists(src1) or os.path.exists(src2):
51
- print("Deletion Impossible [File Not Closed - Shutdown File Kernel]\nGo to Home page -> Running Tab -> Click Shut Down All")
52
- else:
53
- print(f"Folder({pathlib.Path(folder_path)}) Removed Successfully")
54
- else:
55
- print(f"Folder({pathlib.Path(folder_path)}) Not Found [Repeated Iteration | Probably Removed Manually]")
56
- except Exception as error:
1
+ import os
2
+ import shutil
3
+ import subprocess
4
+ import pathlib
5
+
6
+ def get_folder(folder_path, loc = False):
7
+ src = os.path.join(os.path.dirname(os.path.dirname(__file__)), "data", pathlib.Path(folder_path))
8
+ try:
9
+ dest = os.path.join(os.getcwd(), pathlib.Path(folder_path))
10
+ shutil.copytree(src, dest, symlinks=False, copy_function = shutil.copy2,
11
+ ignore=shutil.ignore_patterns('.ipynb_checkpoints', '__init__.py', '__pycache__'),
12
+ ignore_dangling_symlinks=False, dirs_exist_ok=True)
13
+ except:
14
+ try:
15
+ dest = os.path.join(os.path.expanduser('~'), "Downloads", pathlib.Path(folder_path))
16
+ shutil.copytree(src, dest, symlinks=False, copy_function = shutil.copy2,
17
+ ignore=shutil.ignore_patterns('.ipynb_checkpoints', '__init__.py', '__pycache__'),
18
+ ignore_dangling_symlinks=False, dirs_exist_ok=True)
19
+ except Exception as error:
20
+ print(error)
21
+ return
22
+ finally:
23
+ if loc:
24
+ print("Path:",dest)
25
+
26
+ def get_file(file_path, loc = False, open = False):
27
+ src = os.path.join(os.path.dirname(os.path.dirname(__file__)), "data", pathlib.Path(file_path))
28
+ try:
29
+ dest = os.path.join(os.getcwd(), pathlib.Path(file_path).name)
30
+ shutil.copy(src, dest)
31
+ if open:
32
+ subprocess.Popen(f"jupyter notebook {dest}")
33
+ except:
34
+ try:
35
+ dest = os.path.join(os.path.expanduser('~'), "Downloads", pathlib.Path(file_path).name)
36
+ shutil.copy(src, dest)
37
+ except Exception as error:
38
+ print(error)
39
+ finally:
40
+ if loc:
41
+ print("Path:",dest)
42
+
43
+ def remove_folder(folder_path):
44
+ try:
45
+ src1 = os.path.join(os.getcwd(), pathlib.Path(folder_path))
46
+ src2 = os.path.join(os.path.expanduser('~'), "Downloads", pathlib.Path(folder_path))
47
+ if os.path.exists(src1) or os.path.exists(src2):
48
+ shutil.rmtree(src1, ignore_errors = True)
49
+ shutil.rmtree(src2, ignore_errors = True)
50
+ if os.path.exists(src1) or os.path.exists(src2):
51
+ print("Deletion Impossible [File Not Closed - Shutdown File Kernel]\nGo to Home page -> Running Tab -> Click Shut Down All")
52
+ else:
53
+ print(f"Folder({pathlib.Path(folder_path)}) Removed Successfully")
54
+ else:
55
+ print(f"Folder({pathlib.Path(folder_path)}) Not Found [Repeated Iteration | Probably Removed Manually]")
56
+ except Exception as error:
57
57
  print(error)
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 The author
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
1
+ MIT License
2
+
3
+ Copyright (c) 2025 The author
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
21
21
  THE SOFTWARE.
@@ -1,55 +1,55 @@
1
- Metadata-Version: 2.2
2
- Name: noshot
3
- Version: 0.3.3
4
- Summary: Support library for Artificial Intelligence, Machine Learning and Data Science tools
5
- Author: Tim Stan S
6
- License: MIT
7
- Classifier: Programming Language :: Python :: 3
8
- Classifier: Programming Language :: Python :: 3.7
9
- Classifier: Programming Language :: Python :: 3.8
10
- Classifier: Programming Language :: Python :: 3.9
11
- Classifier: Programming Language :: Python :: 3.10
12
- Classifier: Programming Language :: Python :: 3.11
13
- Classifier: License :: OSI Approved :: MIT License
14
- Classifier: Operating System :: OS Independent
15
- Requires-Python: >=3.7
16
- Description-Content-Type: text/markdown
17
- License-File: LICENSE.txt
18
- Dynamic: author
19
- Dynamic: classifier
20
- Dynamic: description
21
- Dynamic: description-content-type
22
- Dynamic: license
23
- Dynamic: requires-python
24
- Dynamic: summary
25
-
26
- <h1 align="center">No Shot</h1>
27
-
28
- <p align="center">
29
- <img src="https://i.ibb.co/XkjpGzzL/noshot.jpg" alt="No Shot Image" width="400">
30
- </p>
31
-
32
- ![Static Badge](https://img.shields.io/badge/OneShotCoding-NoShot-blue?logoColor=yell)
33
- [![PyPI - Version](https://img.shields.io/pypi/v/noshot)](https://pypi.org/project/noshot)
34
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/suganthangnanavelan/one-shot-coding/blob/main/LICENSE.txt)
35
- [![Pepy Total Downloads](https://img.shields.io/pepy/dt/noshot)](https://pepy.tech/projects/noshot)
36
- ![Python Versions](https://img.shields.io/pypi/pyversions/noshot.svg?logo=python&color=yellow)
37
- ![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/suganthangnanavelan/one-shot-coding/test.yml)
38
-
39
- <p align="center">
40
- A powerful support library that enhances the capabilities of NumPy, Pandas, and Matplotlib by providing additional algorithms, visualizations, and utilities.
41
- </p>
42
-
43
- ## 🚀 **Overview**
44
- `NoShot` is a utility library that acts as a **support dependency** for larger modules like **NumPy, Pandas, and Matplotlib**. It enhances their functionality by introducing:
45
- - 📊 **Custom visualizations** built on top of Matplotlib.
46
- - 📈 **Optimized algorithms** for data processing.
47
- - ⚡ **Additional utilities** for working with structured data.
48
-
49
- > [!NOTE]
50
- > This package is **not a replacement** for NumPy or Pandas but extends their features to simplify complex operations.
51
-
52
- ## 📦 **Installation**
53
- Install latest version via `pip`:
54
- ```sh
55
- pip install noshot==0.2.0
1
+ Metadata-Version: 2.2
2
+ Name: noshot
3
+ Version: 0.3.4
4
+ Summary: Support library for Artificial Intelligence, Machine Learning and Data Science tools
5
+ Author: Tim Stan S
6
+ License: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Programming Language :: Python :: 3.7
9
+ Classifier: Programming Language :: Python :: 3.8
10
+ Classifier: Programming Language :: Python :: 3.9
11
+ Classifier: Programming Language :: Python :: 3.10
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Operating System :: OS Independent
15
+ Requires-Python: >=3.7
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE.txt
18
+ Dynamic: author
19
+ Dynamic: classifier
20
+ Dynamic: description
21
+ Dynamic: description-content-type
22
+ Dynamic: license
23
+ Dynamic: requires-python
24
+ Dynamic: summary
25
+
26
+ <h1 align="center">No Shot</h1>
27
+
28
+ <p align="center">
29
+ <img src="https://i.ibb.co/XkjpGzzL/noshot.jpg" alt="No Shot Image" width="400">
30
+ </p>
31
+
32
+ ![Static Badge](https://img.shields.io/badge/OneShotCoding-NoShot-blue?logoColor=yell)
33
+ [![PyPI - Version](https://img.shields.io/pypi/v/noshot)](https://pypi.org/project/noshot)
34
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/suganthangnanavelan/one-shot-coding/blob/main/LICENSE.txt)
35
+ [![Pepy Total Downloads](https://img.shields.io/pepy/dt/noshot)](https://pepy.tech/projects/noshot)
36
+ ![Python Versions](https://img.shields.io/pypi/pyversions/noshot.svg?logo=python&color=yellow)
37
+ ![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/suganthangnanavelan/one-shot-coding/test.yml)
38
+
39
+ <p align="center">
40
+ A powerful support library that enhances the capabilities of NumPy, Pandas, and Matplotlib by providing additional algorithms, visualizations, and utilities.
41
+ </p>
42
+
43
+ ## 🚀 **Overview**
44
+ `NoShot` is a utility library that acts as a **support dependency** for larger modules like **NumPy, Pandas, and Matplotlib**. It enhances their functionality by introducing:
45
+ - 📊 **Custom visualizations** built on top of Matplotlib.
46
+ - 📈 **Optimized algorithms** for data processing.
47
+ - ⚡ **Additional utilities** for working with structured data.
48
+
49
+ > [!NOTE]
50
+ > This package is **not a replacement** for NumPy or Pandas but extends their features to simplify complex operations.
51
+
52
+ ## 📦 **Installation**
53
+ Install latest version via `pip`:
54
+ ```sh
55
+ pip install noshot
@@ -1,15 +1,15 @@
1
1
  noshot/__init__.py,sha256=000R40tii8lDFU8C1fBaD3SOnxD0PWRNWZU-km49YrU,21
2
- noshot/main.py,sha256=zXegIqjJPARlPnQMS-B2dAENcvyaZkNwmue63Gm8lHU,663
2
+ noshot/main.py,sha256=6gU5gZ5csHxJQ7H-YyWVkW51hJIZdV9cqsPBDTjFo9s,645
3
3
  noshot/data/ML TS XAI/ML/1. PCA - EDA.ipynb,sha256=YHOR8PEU-UZDbOnYfY8RXWlKWPmAylk8JjyCNXGJDWs,4951
4
4
  noshot/data/ML TS XAI/ML/2. KNN Classifier.ipynb,sha256=Z-s44hC240B3ZQL4LHVhh6kdec8zbc9WXntA6rmu2gc,7705
5
5
  noshot/data/ML TS XAI/ML/3. Linear Discriminant Analysis.ipynb,sha256=S7lovIZpIxK2rSUa201DQwnbBfVFN99R0v03nFq1amI,2218
6
6
  noshot/data/ML TS XAI/ML/4. Linear Regression.ipynb,sha256=F3DQAZf_2omM8fBeWfkadzdbvrzh6dlRoeG6vqbqJgg,3152
7
7
  noshot/data/ML TS XAI/ML/5. Logistic Regression.ipynb,sha256=QUJd2YY0dR8QncLM2_IgfGOJRJnIH1rBIV9XD8kY2ZY,3766
8
8
  noshot/data/ML TS XAI/ML/6. Bayesian Classifier.ipynb,sha256=O1FCVYpuPBNe33vO2eRmKghvnehMe_rIup1djnzrDJY,2003
9
- noshot/data/ML TS XAI/ML/data/balance-scale.csv,sha256=6doaVIoSlMTyPHqjb3QUG4iiponH0bfw1JHDa0fKxso,6941
10
- noshot/data/ML TS XAI/ML/data/balance-scale.txt,sha256=GPtYUxxyeHEcVqK6AYAZnxzGkIsmEI4lg3cdV-YCoBI,6873
11
- noshot/data/ML TS XAI/ML/data/machine-data.csv,sha256=ibOegRM_3qX7IDexXCE5cxvck-1Kz-iQ-A6KKZ9fExA,8956
12
- noshot/data/ML TS XAI/ML/data/wine-dataset.csv,sha256=LM6dldfZUWWlkbhHQdFdMwD2hioTWijjYBJJ1C8wMFY,12440
9
+ noshot/data/ML TS XAI/ML/data/balance-scale.csv,sha256=TIXuC522eeShSGKEzpVdslBH-7pj-iElyk1J0LQfp3k,6315
10
+ noshot/data/ML TS XAI/ML/data/balance-scale.txt,sha256=_QWQ4ru9MWCeh_4x372ev6Ipg5oOeUcGFH_2Jp0QA9E,6249
11
+ noshot/data/ML TS XAI/ML/data/machine-data.csv,sha256=poHH1NKX94SE7hyRTX7Gug4fWdAHRY4SnUNwYg_B1TQ,8746
12
+ noshot/data/ML TS XAI/ML/data/wine-dataset.csv,sha256=zYAVj609HiA9YdrkIkJiCwLdX5GOY3tfCDgeOefPUgQ,12261
13
13
  noshot/data/ML TS XAI/TS/1. EDA - Handling Time Series Data.ipynb,sha256=TSBMPI4qdxsp4TV8FXxlutybmft76PP5AnnAEVBmX14,5483
14
14
  noshot/data/ML TS XAI/TS/2. Feature Engineering.ipynb,sha256=HdDfhPowxFujZweySJRuP-Et_y_2TvZP-PZLevgXUKY,4231
15
15
  noshot/data/ML TS XAI/TS/3. Temporal Relationships.ipynb,sha256=Fi1Aq6BhqlqY8XcHwvRdOwTTNQ5QvIS7yr41sTMkW3A,3705
@@ -17,14 +17,14 @@ noshot/data/ML TS XAI/TS/4. Up-Down-Sampling and Interpolation.ipynb,sha256=7-_k
17
17
  noshot/data/ML TS XAI/TS/5. Stationarity - Trend - Seasonality.ipynb,sha256=I3vHyu1oxp95TiroeLUrTeKR7am5G7CEPVjp3CZ4V4U,4612
18
18
  noshot/data/ML TS XAI/TS/6. Autocorrelation - Partial Autocorrelation.ipynb,sha256=tRSrqFrJpXQHRo4nyXCz-UZbNmhJc47F4b8pGRWEMRk,1901
19
19
  noshot/data/ML TS XAI/TS/AllinOne.ipynb,sha256=egNDVfK-aObDRs_qyWLWjdQKQhccijA3_cirYbinJeg,35686
20
- noshot/data/ML TS XAI/TS/data/daily-min-temperatures.csv,sha256=i53mPtZ4lJK_SXYl5_m-uWpj02e0sKIXVABvdJ-l5do,67921
21
- noshot/data/ML TS XAI/TS/data/daily-total-female-births.csv,sha256=egwb2zLWj3-jWeVhpPfh_o-y_Cah6mJKQ0qXpjc13XI,6220
22
- noshot/data/ML TS XAI/TS/data/raw_sales.csv,sha256=8QFSn6olv_VH1UOAk7ztD6I5sVurXvE65rV8fZmXkro,1180105
23
- noshot/data/ML TS XAI/TS/data/shampoo_sales.csv,sha256=ZLkeoLu9mTZEyFaCHNMKsBLxDjTXM4NEDqPd9rgmANs,462
24
- noshot/utils/__init__.py,sha256=QVrN1ZpzPXxZqDOqot5-t_ulFjZXVx7Cvr-Is9AK0po,110
25
- noshot/utils/shell_utils.py,sha256=-XfgYlNQlULa_rRJ3vsfTns4m_jiueGEj396J_y0Gus,2611
26
- noshot-0.3.3.dist-info/LICENSE.txt,sha256=fgCruaVm5cUjFGOeEoGIimT6nnUunBqcNZHpGzK8TSw,1086
27
- noshot-0.3.3.dist-info/METADATA,sha256=QyLvOr0OkrB-3Bw6IrbKNHk8c7LmFvzp78j1LOpWrO4,2453
28
- noshot-0.3.3.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
29
- noshot-0.3.3.dist-info/top_level.txt,sha256=UL-c0HffdRwohz-y9icY_rnY48pQDdxGcBsgyCKh2Q8,7
30
- noshot-0.3.3.dist-info/RECORD,,
20
+ noshot/data/ML TS XAI/TS/data/daily-min-temperatures.csv,sha256=F4yFcHwUgxnEyjUGnQRMeZ_yLo1xt6LAiSIhZ1bRiWE,64271
21
+ noshot/data/ML TS XAI/TS/data/daily-total-female-births.csv,sha256=nvfDjkWMQydf_0NJKSLwCZgI1y9oVtrDY9kAwEM1RQQ,5855
22
+ noshot/data/ML TS XAI/TS/data/raw_sales.csv,sha256=prmIL2Za6SSvtNySuENVeeWm96ErETBE2yKdzUTsAIQ,1150525
23
+ noshot/data/ML TS XAI/TS/data/shampoo_sales.csv,sha256=3cnpMyQZjuLerDQ6seFWybW79od4Xx0J1jYJYOjBrm0,426
24
+ noshot/utils/__init__.py,sha256=NovRMat6RWu1WNI1_OH_Xo6Uvaq8D91no-ZhLcuVwHs,108
25
+ noshot/utils/shell_utils.py,sha256=WzVq5EZEgiJFysbDYn9QPRYSE555Ew20HZbb3RDymkE,2555
26
+ noshot-0.3.4.dist-info/LICENSE.txt,sha256=MLVZLpViyRWQLkQCesNwRqdfGzt-aunQSFiP5b_5Qn4,1066
27
+ noshot-0.3.4.dist-info/METADATA,sha256=fFVLUCkRQfl-MNMUYRJt1hyQVXqx0JzsA944dLEVVXA,2391
28
+ noshot-0.3.4.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
29
+ noshot-0.3.4.dist-info/top_level.txt,sha256=UL-c0HffdRwohz-y9icY_rnY48pQDdxGcBsgyCKh2Q8,7
30
+ noshot-0.3.4.dist-info/RECORD,,
File without changes