smemhack 5.8__tar.gz → 5.8.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.1
2
2
  Name: smemhack
3
- Version: 5.8
3
+ Version: 5.8.2
4
4
  Summary: A Python library to automate online homework tasks with AI and system control.
5
5
  Home-page: UNKNOWN
6
6
  Author: Dickily
@@ -55,5 +55,5 @@ Classifier: License :: Other/Proprietary License
55
55
  Classifier: Programming Language :: Python :: 3
56
56
  Classifier: Programming Language :: Python :: 3.8
57
57
  Classifier: Operating System :: OS Independent
58
- Requires-Python: >=3.6
58
+ Requires-Python: >=3.8.18
59
59
  Description-Content-Type: text/markdown
@@ -6,16 +6,16 @@ with open("README.md", "r", encoding="utf-8") as f:
6
6
 
7
7
  setup(
8
8
  name="smemhack",
9
- version="5.8",
9
+ version="5.8.2",
10
10
  packages=find_packages(),
11
11
  install_requires=[
12
- "tensorflow",
13
- "pyautogui",
14
- "pyperclip",
15
- "numpy",
16
- "keyboard",
17
- "fuzzywuzzy",
18
- "python-Levenshtein"
12
+ "tensorflow>=2.8.0", # Require TensorFlow version 2.8.0 or newer
13
+ "pyautogui>=0.9.53", # Require PyAutoGUI version 0.9.53 or newer
14
+ "pyperclip>=1.8.2", # Require Pyperclip version 1.8.2 or newer
15
+ "numpy>=1.20.0", # Require NumPy version 1.20.0 or newer
16
+ "keyboard>=0.13.5", # Require Keyboard package version 0.13.5 or newer
17
+ "fuzzywuzzy>=0.18.0", # Require FuzzyWuzzy version 0.18.0 or newer
18
+ "python-Levenshtein>=0.12.2" # Require Python-Levenshtein version 0.12.2 or newer
19
19
  ],
20
20
  description="A Python library to automate online homework tasks with AI and system control.",
21
21
  long_description=long_description, # Use README.md for the description
@@ -29,5 +29,5 @@ setup(
29
29
  "Programming Language :: Python :: 3.8",
30
30
  "Operating System :: OS Independent",
31
31
  ],
32
- python_requires=">=3.6", # Minimum required Python version
32
+ python_requires=">=3.8.18", # Require Python 3.8.18 or newer
33
33
  )
@@ -1,2 +1,2 @@
1
1
  from .main import *
2
- __version__="5.8"
2
+ __version__="5.8.2"
@@ -171,7 +171,7 @@ def hack(number):
171
171
  word,_=process.extractOne(w,xget)
172
172
  py.click(971*nx,106*ny)
173
173
  time.sleep(0.5)
174
- py.typewrite(word)
174
+ py.typewrite(data[xget.index(word)])
175
175
  py.press("enter")
176
176
  time.sleep(1)
177
177
  for _ in range(0,len(data)+number):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: smemhack
3
- Version: 5.8
3
+ Version: 5.8.2
4
4
  Summary: A Python library to automate online homework tasks with AI and system control.
5
5
  Home-page: UNKNOWN
6
6
  Author: Dickily
@@ -55,5 +55,5 @@ Classifier: License :: Other/Proprietary License
55
55
  Classifier: Programming Language :: Python :: 3
56
56
  Classifier: Programming Language :: Python :: 3.8
57
57
  Classifier: Operating System :: OS Independent
58
- Requires-Python: >=3.6
58
+ Requires-Python: >=3.8.18
59
59
  Description-Content-Type: text/markdown
@@ -0,0 +1,7 @@
1
+ tensorflow>=2.8.0
2
+ pyautogui>=0.9.53
3
+ pyperclip>=1.8.2
4
+ numpy>=1.20.0
5
+ keyboard>=0.13.5
6
+ fuzzywuzzy>=0.18.0
7
+ python-Levenshtein>=0.12.2
@@ -1,7 +0,0 @@
1
- tensorflow
2
- pyautogui
3
- pyperclip
4
- numpy
5
- keyboard
6
- fuzzywuzzy
7
- python-Levenshtein
File without changes
File without changes
File without changes