noshot 0.1.0__py3-none-any.whl → 0.1.2__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.
noshot/main.py CHANGED
@@ -18,29 +18,28 @@ def get(name = None, open = False):
18
18
  pass
19
19
 
20
20
  def get_folder(loc = False, i = 0, j = 0):
21
- src = os.path.realpath(__file__)[:-7]+"\\data\\AIDS CN NLP"
22
- src = src.replace("\\\\","\\")
21
+ src = os.path.join(os.path.realpath(__file__)[:-7], "data", "AIDS CN NLP")
23
22
  try:
24
- dest = os.getcwd()+"\\AIDS CN NLP"+(f" ({i})" if i != 0 else "")
23
+ dest = os.path.join(os.getcwd(), ("AIDS CN NLP" + (f" ({i})" if i != 0 else "")))
25
24
  shutil.copytree(src, dest, symlinks=False,
26
25
  copy_function = shutil.copy2,
27
26
  ignore=shutil.ignore_patterns('.ipynb_checkpoints', '__init__.py', '__pycache__'),
28
27
  ignore_dangling_symlinks=False,
29
28
  dirs_exist_ok=False)
30
29
  if loc:
31
- print("Path:",dest.replace("\\\\","\\"))
30
+ print("Path:",dest)
32
31
  except FileExistsError:
33
32
  get_folder(loc, i + 1, j)
34
33
  except:
35
34
  try:
36
- dest = os.path.expanduser('~')+"\\Downloads\\AIDS CN NLP"+(f" ({j})" if j != 0 else "")
35
+ dest = os.path.join(os.path.expanduser('~'), "Downloads", ("AIDS CN NLP" + (f" ({i})" if i != 0 else "")))
37
36
  shutil.copytree(src, dest, symlinks=False,
38
37
  copy_function = shutil.copy2,
39
38
  ignore=shutil.ignore_patterns('.ipynb_checkpoints', '__init__.py', '__pycache__'),
40
39
  ignore_dangling_symlinks=False,
41
40
  dirs_exist_ok=False)
42
41
  if loc:
43
- print("Path:",dest.replace("\\\\","\\"))
42
+ print("Path:",dest)
44
43
  except FileExistsError:
45
44
  get_folder(loc, i, j + 1)
46
45
  except:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: noshot
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Support library for Artificial Intelligence, Machine Learning and Data Science tools
5
5
  Author: Tim Stan S
6
6
  License: MIT
@@ -23,29 +23,18 @@ Dynamic: license
23
23
  Dynamic: requires-python
24
24
  Dynamic: summary
25
25
 
26
- <p align="center">
27
- <a href="https://pypi.org/project/noshot/">
28
- <img src="https://img.shields.io/pypi/v/noshot?color=blue&logo=pypi" alt="PyPI Version">
29
- </a>
30
- <a href="https://pypi.org/project/noshot/">
31
- <img src="https://img.shields.io/pypi/pyversions/noshot.svg?logo=python&color=yellow" alt="Python Versions">
32
- </a>
33
- <a href="https://opensource.org/licenses/MIT">
34
- <img src="https://img.shields.io/badge/license-MIT-green.svg" alt="LICENSE">
35
- </a>
36
- <a href="https://github.com/suganthangnanavelan/one-shot-coding/actions/workflows/tests.yml">
37
- <img src="https://img.shields.io/github/actions/workflow/status/suganthangnanavelan/one-shot-coding/tests.yml?branch=main" alt="Build Status">
38
- </a>
39
- <a href="https://pepy.tech/project/noshot">
40
- <img src="https://pepy.tech/badge/noshot" alt="Downloads">
41
- </a>
42
- </p>
26
+ <h1 align="center">No Shot</h1>
43
27
 
44
28
  <p align="center">
45
- <img src="logo.png" alt="NoShot Logo" width="800">
29
+ <img src="https://i.ibb.co/XkjpGzzL/noshot.jpg" alt="No Shot Image" width="400">
46
30
  </p>
47
31
 
48
- <h1 align="center">NoShot</h1>
32
+ ![Static Badge](https://img.shields.io/badge/OneHotCoding-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://pypi.org/project/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)
49
38
 
50
39
  <p align="center">
51
40
  A powerful support library that enhances the capabilities of NumPy, Pandas, and Matplotlib by providing additional algorithms, visualizations, and utilities.
@@ -57,9 +46,10 @@ Dynamic: summary
57
46
  - 📈 **Optimized algorithms** for data processing.
58
47
  - ⚡ **Additional utilities** for working with structured data.
59
48
 
60
- This package is **not a replacement** for NumPy or Pandas but extends their features to simplify complex operations.
49
+ > [!NOTE]
50
+ > This package is **not a replacement** for NumPy or Pandas but extends their features to simplify complex operations.
61
51
 
62
52
  ## 📦 **Installation**
63
- Install via `pip`:
53
+ Install latest version via `pip`:
64
54
  ```sh
65
- pip install noshot
55
+ pip install noshot==0.1.2
@@ -1,5 +1,5 @@
1
1
  noshot/__init__.py,sha256=000R40tii8lDFU8C1fBaD3SOnxD0PWRNWZU-km49YrU,21
2
- noshot/main.py,sha256=kiJv7efW_MkQCGEqJb-mip1leWNVCD9_7Puiq5Jdy1E,1764
2
+ noshot/main.py,sha256=g4ijlsh5q3DfhWYiVUQKdTn8wTCSESV-fQus1WGNZhU,1738
3
3
  noshot/data/AIDS CN NLP/Ubuntu CN Lab.iso,sha256=CkoX_H3nGO6EqfK3Qa62mt_vYNpmMOzKU0oCcBJQ41M,4589568
4
4
  noshot/data/AIDS CN NLP/AIDS/1. Implement Basic Search Strategies/(A) Breadth First Search.ipynb,sha256=Xde_I0zbFZb4SmiAYDzH7ft6JBFBvGkpv48X2I_LGiQ,3548
5
5
  noshot/data/AIDS CN NLP/AIDS/1. Implement Basic Search Strategies/(B) Depth First Search.ipynb,sha256=pfZ8D_bQiqxt_qLoWlQjwK8mbblh053AupAwxyyEhrM,3535
@@ -59,6 +59,10 @@ noshot/data/AIDS CN NLP/CN/2. File Transfer/file_to_send.txt,sha256=wff8Qa_l2iK4
59
59
  noshot/data/AIDS CN NLP/CN/2. File Transfer/filetransfer.java,sha256=Qle-Q7_zIBvrETNlpTz5QweyFlfFCSfzWh3sYj6duQ8,3787
60
60
  noshot/data/AIDS CN NLP/CN/2. File Transfer/output.png,sha256=HchXV_7mSmrbXOOSSS8xF3DjXs27BBHiLdxg0CNaIqM,80444
61
61
  noshot/data/AIDS CN NLP/CN/2. File Transfer/procedure.png,sha256=yD1MWNRaWKgU6sYBsLKF373zRgPID3gRcOAYSfkOpY0,121441
62
+ noshot/data/AIDS CN NLP/CN/3. RMI (Remote Method Invocation)/Client.class,sha256=SJI8pJoFHEn7iSf80VPpKvqYYW4lq_8rCvW5i4U16BE,1371
63
+ noshot/data/AIDS CN NLP/CN/3. RMI (Remote Method Invocation)/MyServerImpl.class,sha256=T68pDS1u6lUxkA9AG7xzZYWgdhWjm8GzcMVwz2BeD6s,811
64
+ noshot/data/AIDS CN NLP/CN/3. RMI (Remote Method Invocation)/MyServerIntf.class,sha256=rtbvSH3LhAOfN7r1Yx9bWYOjb4n-oF0te6Lu38iAbnc,211
65
+ noshot/data/AIDS CN NLP/CN/3. RMI (Remote Method Invocation)/Server.class,sha256=hEkkBWrLpl4HD5xL6uPHSGCSjD0ZxVG8gOpD7hBQubc,1186
62
66
  noshot/data/AIDS CN NLP/CN/3. RMI (Remote Method Invocation)/output.png,sha256=7OMas3H-fT7agRGocXFg9FF0LNC6JYX1_01OpTf1Igs,25742
63
67
  noshot/data/AIDS CN NLP/CN/3. RMI (Remote Method Invocation)/procedure.png,sha256=rdue3CPgHKr4luAYf9Osf4B4wox2nzAFQRiZz_r52fs,98505
64
68
  noshot/data/AIDS CN NLP/CN/3. RMI (Remote Method Invocation)/rmi.java,sha256=V-_Wew5IoD1njAMN6LAOxjwUE199qyKA0kG4Cd51R7Q,1393
@@ -203,8 +207,8 @@ noshot/data/AIDS CN NLP/NLP/NLP 6/4. Hinddle and Rooth.ipynb,sha256=E5TYdhHCAOlU
203
207
  "noshot/data/AIDS CN NLP/NLP/NLP 6/5 and 6 FWD, BWD, Viterbi.ipynb",sha256=h3gQHxHT4wOwZxo0sRq7Z87fk2ucvtuwsFiz6RHcz34,4859
204
208
  noshot/data/AIDS CN NLP/NLP/NLP 6/7. PCFG using CYK.ipynb,sha256=gOb9b8dUslegyuGVXjm4BB9XSKFgIME-ZfkjFrUhoAk,8735
205
209
  noshot/data/AIDS CN NLP/NLP/NLP 6/8. BOW and TF-IDF.ipynb,sha256=xgey9ML4zdVWOEg8wkEuWsM20Pz1-amMzcIt7IH9RFs,11133
206
- noshot-0.1.0.dist-info/LICENSE.txt,sha256=fgCruaVm5cUjFGOeEoGIimT6nnUunBqcNZHpGzK8TSw,1086
207
- noshot-0.1.0.dist-info/METADATA,sha256=mIflWjdSsxcyb1Ie0U5FVKsS8P0STKBpMadjMILIHtY,2621
208
- noshot-0.1.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
209
- noshot-0.1.0.dist-info/top_level.txt,sha256=UL-c0HffdRwohz-y9icY_rnY48pQDdxGcBsgyCKh2Q8,7
210
- noshot-0.1.0.dist-info/RECORD,,
210
+ noshot-0.1.2.dist-info/LICENSE.txt,sha256=fgCruaVm5cUjFGOeEoGIimT6nnUunBqcNZHpGzK8TSw,1086
211
+ noshot-0.1.2.dist-info/METADATA,sha256=IL5ewsAmfMdAClSidiXilSatueZGHgGugeXZoKO8z-c,2450
212
+ noshot-0.1.2.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
213
+ noshot-0.1.2.dist-info/top_level.txt,sha256=UL-c0HffdRwohz-y9icY_rnY48pQDdxGcBsgyCKh2Q8,7
214
+ noshot-0.1.2.dist-info/RECORD,,
File without changes