smemhack 5.7.4__tar.gz → 5.8__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.7.4
3
+ Version: 5.8
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
@@ -26,12 +26,16 @@ Description: # smemhack
26
26
 
27
27
  Now you can't enter number below 0 or larger than 5
28
28
 
29
- # What is new in version 5.7
29
+ **What is new in version 5.7**
30
30
 
31
31
  1.Now it has auto debug function,it will auto restart process if detected bug
32
32
 
33
33
  2.You now can exit the program by pressing esc
34
34
 
35
+ # What is new in version 5.8
36
+
37
+ Upgraded the backup compare system
38
+
35
39
  **How to Use it:**
36
40
 
37
41
  copy the code i give in the last of this discription and change the new_word_number to the number of new word you have entered
@@ -18,12 +18,16 @@ copy the code i give in the last of this discription and change the new_word_num
18
18
 
19
19
  Now you can't enter number below 0 or larger than 5
20
20
 
21
- # What is new in version 5.7
21
+ **What is new in version 5.7**
22
22
 
23
23
  1.Now it has auto debug function,it will auto restart process if detected bug
24
24
 
25
25
  2.You now can exit the program by pressing esc
26
26
 
27
+ # What is new in version 5.8
28
+
29
+ Upgraded the backup compare system
30
+
27
31
  **How to Use it:**
28
32
 
29
33
  copy the code i give in the last of this discription and change the new_word_number to the number of new word you have entered
@@ -6,14 +6,16 @@ with open("README.md", "r", encoding="utf-8") as f:
6
6
 
7
7
  setup(
8
8
  name="smemhack",
9
- version="5.7.4",
9
+ version="5.8",
10
10
  packages=find_packages(),
11
11
  install_requires=[
12
12
  "tensorflow",
13
13
  "pyautogui",
14
14
  "pyperclip",
15
15
  "numpy",
16
- "keyboard"
16
+ "keyboard",
17
+ "fuzzywuzzy",
18
+ "python-Levenshtein"
17
19
  ],
18
20
  description="A Python library to automate online homework tasks with AI and system control.",
19
21
  long_description=long_description, # Use README.md for the description
@@ -1,2 +1,2 @@
1
1
  from .main import *
2
- __version__="5.7.4"
2
+ __version__="5.8"
@@ -5,6 +5,7 @@ import pyperclip as pycopy # Import the pyperclip module (aliased as pycopy) to
5
5
  from pyperclip import * # Import all functions from pyperclip (again, may be redundant)
6
6
  import keyboard
7
7
  import os
8
+ from fuzzywuzzy import process
8
9
  from threading import Thread
9
10
  import tensorflow as tf
10
11
  from tensorflow.keras.models import Sequential
@@ -167,13 +168,12 @@ def hack(number):
167
168
  w=w.split("\n")
168
169
  w=w[2:]
169
170
  w="\n".join(w)
170
- for x in xget:
171
- if w==x:
172
- py.click(971*nx,106*ny)
173
- time.sleep(0.5)
174
- py.typewrite(data[xget.index(x)])
175
- py.press("enter")
176
- time.sleep(1)
171
+ word,_=process.extractOne(w,xget)
172
+ py.click(971*nx,106*ny)
173
+ time.sleep(0.5)
174
+ py.typewrite(word)
175
+ py.press("enter")
176
+ time.sleep(1)
177
177
  for _ in range(0,len(data)+number):
178
178
  py.click(115*nx,604*ny)
179
179
  py.keyDown("ctrl")
@@ -207,6 +207,7 @@ def hack(number):
207
207
  time.sleep(1) # Wait for 1 second to allow the switch to complete
208
208
  py.keyUp("alt")
209
209
  input("Proccess completed...time used:%.2f"%(time.time()-tttnnn))
210
+ os._exit(0)
210
211
  t.join()
211
212
  if __name__=="__main__":
212
213
  hack(5)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: smemhack
3
- Version: 5.7.4
3
+ Version: 5.8
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
@@ -26,12 +26,16 @@ Description: # smemhack
26
26
 
27
27
  Now you can't enter number below 0 or larger than 5
28
28
 
29
- # What is new in version 5.7
29
+ **What is new in version 5.7**
30
30
 
31
31
  1.Now it has auto debug function,it will auto restart process if detected bug
32
32
 
33
33
  2.You now can exit the program by pressing esc
34
34
 
35
+ # What is new in version 5.8
36
+
37
+ Upgraded the backup compare system
38
+
35
39
  **How to Use it:**
36
40
 
37
41
  copy the code i give in the last of this discription and change the new_word_number to the number of new word you have entered
@@ -3,3 +3,5 @@ pyautogui
3
3
  pyperclip
4
4
  numpy
5
5
  keyboard
6
+ fuzzywuzzy
7
+ python-Levenshtein
File without changes
File without changes