smemhack 5.11.8__tar.gz → 5.11.10__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.
@@ -0,0 +1,71 @@
1
+ Metadata-Version: 2.1
2
+ Name: smemhack
3
+ Version: 5.11.10
4
+ Summary: A Python library to automate online homework tasks with AI and system control.
5
+ Home-page: UNKNOWN
6
+ Author: Dickily
7
+ Author-email: dickilyyiu@gmail.com
8
+ License: Proprietary
9
+ Description: # smemhack
10
+ **smemhack** is a Python library designed to automate online homework tasks with AI and system control.
11
+ What is inside:
12
+
13
+ 1.auto train ai to finish solidmemory
14
+
15
+ 2.having a compare system to prevent accident error
16
+
17
+ **What is New in version 5.5**
18
+
19
+ You now can control the new word number(max=5)
20
+
21
+ How to Use it:
22
+
23
+ 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
24
+
25
+ **What is new in version 5.6**
26
+
27
+ Now you can't enter number below 0 or larger than 5
28
+
29
+ **What is new in version 5.7**
30
+
31
+ 1.Now it has auto debug function,it will auto restart process if detected bug
32
+
33
+ 2.You now can exit the program by pressing esc
34
+
35
+ **What is new in version 5.8**
36
+
37
+ Upgraded the backup compare system
38
+
39
+ **What is new in version 5.9**
40
+
41
+ Now it will auto upgrade the program
42
+
43
+ **What is new in version 5.10**
44
+
45
+ Updated the code so that it will fit everybody's computer
46
+
47
+ # What is new in version 5.11
48
+
49
+ Now it will auto restart after the package is upgraded
50
+
51
+ **How to Use it:**
52
+
53
+ 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
54
+
55
+ 1.Prepare a not started solidmemory page(exercise page)
56
+
57
+ 2.Run the code
58
+ ## Usage
59
+ To use the library, simply call the `hack()` function:
60
+ ```python
61
+ from smemhack import hack
62
+
63
+ hack(new_word_number)
64
+
65
+ Platform: UNKNOWN
66
+ Classifier: License :: Other/Proprietary License
67
+ Classifier: Programming Language :: Python :: 3
68
+ Classifier: Programming Language :: Python :: 3.8
69
+ Classifier: Operating System :: OS Independent
70
+ Requires-Python: >=3.8.18
71
+ Description-Content-Type: text/markdown
@@ -6,8 +6,12 @@ with open("README.md", "r", encoding="utf-8") as f:
6
6
 
7
7
  setup(
8
8
  name="smemhack",
9
- version="5.11.8",
9
+ version="5.11.10",
10
10
  packages=find_packages(),
11
+ include_package_data=True, # Ensure package data is included
12
+ package_data={
13
+ "": ["images/*.png"], # Include all PNG files in the "images" directory
14
+ },
11
15
  install_requires=[
12
16
  "tensorflow>=2.8.0", # Require TensorFlow version 2.8.0 or newer
13
17
  "pyautogui>=0.9.53", # Require PyAutoGUI version 0.9.53 or newer
@@ -0,0 +1,2 @@
1
+ from .main import *
2
+ __version__="5.11.10"
@@ -29,14 +29,19 @@ def hack(number):
29
29
  py.press("tab") # Simulate pressing the Tab key to switch between applications/windows
30
30
  time.sleep(1) # Wait for 1 second to allow the switch to complete
31
31
  py.keyUp("alt") # Release the Alt key
32
+ time.sleep(1)
33
+ e=pkg_resources.resource_filename("smemhack","images/exercise.png")
34
+ q=pkg_resources.resource_filename("smemhack","images/question.png")
35
+ n=pkg_resources.resource_filename("smemhack","images/next.png")
36
+ ex=pkg_resources.resource_filename("smemhack","images/exit.png")
32
37
  try:
33
- exercise=py.locateCenterOnScreen("exercise.png",grayscale=False)
38
+ exercise=py.locateCenterOnScreen(e,grayscale=False)
34
39
  py.click(exercise)
35
40
  time.sleep(0.5)
36
- question=py.locateCenterOnScreen("question.png",grayscale=False)
41
+ question=py.locateCenterOnScreen(q,grayscale=False)
37
42
  question=question[0]+100
38
- qnext=py.locateCenterOnScreen("next.png",grayscale=False)
39
- qexit=py.locateCenterOnScreen("exit.png",grayscale=False)
43
+ qnext=py.locateCenterOnScreen(n,grayscale=False)
44
+ qexit=py.locateCenterOnScreen(ex,grayscale=False)
40
45
  except:
41
46
  print("can't locate")
42
47
  os._exit(0)
@@ -0,0 +1,71 @@
1
+ Metadata-Version: 2.1
2
+ Name: smemhack
3
+ Version: 5.11.10
4
+ Summary: A Python library to automate online homework tasks with AI and system control.
5
+ Home-page: UNKNOWN
6
+ Author: Dickily
7
+ Author-email: dickilyyiu@gmail.com
8
+ License: Proprietary
9
+ Description: # smemhack
10
+ **smemhack** is a Python library designed to automate online homework tasks with AI and system control.
11
+ What is inside:
12
+
13
+ 1.auto train ai to finish solidmemory
14
+
15
+ 2.having a compare system to prevent accident error
16
+
17
+ **What is New in version 5.5**
18
+
19
+ You now can control the new word number(max=5)
20
+
21
+ How to Use it:
22
+
23
+ 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
24
+
25
+ **What is new in version 5.6**
26
+
27
+ Now you can't enter number below 0 or larger than 5
28
+
29
+ **What is new in version 5.7**
30
+
31
+ 1.Now it has auto debug function,it will auto restart process if detected bug
32
+
33
+ 2.You now can exit the program by pressing esc
34
+
35
+ **What is new in version 5.8**
36
+
37
+ Upgraded the backup compare system
38
+
39
+ **What is new in version 5.9**
40
+
41
+ Now it will auto upgrade the program
42
+
43
+ **What is new in version 5.10**
44
+
45
+ Updated the code so that it will fit everybody's computer
46
+
47
+ # What is new in version 5.11
48
+
49
+ Now it will auto restart after the package is upgraded
50
+
51
+ **How to Use it:**
52
+
53
+ 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
54
+
55
+ 1.Prepare a not started solidmemory page(exercise page)
56
+
57
+ 2.Run the code
58
+ ## Usage
59
+ To use the library, simply call the `hack()` function:
60
+ ```python
61
+ from smemhack import hack
62
+
63
+ hack(new_word_number)
64
+
65
+ Platform: UNKNOWN
66
+ Classifier: License :: Other/Proprietary License
67
+ Classifier: Programming Language :: Python :: 3
68
+ Classifier: Programming Language :: Python :: 3.8
69
+ Classifier: Operating System :: OS Independent
70
+ Requires-Python: >=3.8.18
71
+ Description-Content-Type: text/markdown
smemhack-5.11.8/PKG-INFO DELETED
@@ -1,78 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: smemhack
3
- Version: 5.11.8
4
- Summary: A Python library to automate online homework tasks with AI and system control.
5
- Author: Dickily
6
- Author-email: dickilyyiu@gmail.com
7
- License: Proprietary
8
- Classifier: License :: Other/Proprietary License
9
- Classifier: Programming Language :: Python :: 3
10
- Classifier: Programming Language :: Python :: 3.8
11
- Classifier: Operating System :: OS Independent
12
- Requires-Python: >=3.8.18
13
- Description-Content-Type: text/markdown
14
- License-File: LICENSE.txt
15
- Requires-Dist: tensorflow>=2.8.0
16
- Requires-Dist: pyautogui>=0.9.53
17
- Requires-Dist: pyperclip>=1.8.2
18
- Requires-Dist: numpy>=1.20.0
19
- Requires-Dist: keyboard>=0.13.5
20
- Requires-Dist: fuzzywuzzy>=0.18.0
21
- Requires-Dist: python-Levenshtein>=0.12.2
22
- Requires-Dist: Pillow>=8.0.0
23
-
24
- # smemhack
25
- **smemhack** is a Python library designed to automate online homework tasks with AI and system control.
26
- What is inside:
27
-
28
- 1.auto train ai to finish solidmemory
29
-
30
- 2.having a compare system to prevent accident error
31
-
32
- **What is New in version 5.5**
33
-
34
- You now can control the new word number(max=5)
35
-
36
- How to Use it:
37
-
38
- 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
39
-
40
- **What is new in version 5.6**
41
-
42
- Now you can't enter number below 0 or larger than 5
43
-
44
- **What is new in version 5.7**
45
-
46
- 1.Now it has auto debug function,it will auto restart process if detected bug
47
-
48
- 2.You now can exit the program by pressing esc
49
-
50
- **What is new in version 5.8**
51
-
52
- Upgraded the backup compare system
53
-
54
- **What is new in version 5.9**
55
-
56
- Now it will auto upgrade the program
57
-
58
- **What is new in version 5.10**
59
-
60
- Updated the code so that it will fit everybody's computer
61
-
62
- # What is new in version 5.11
63
-
64
- Now it will auto restart after the package is upgraded
65
-
66
- **How to Use it:**
67
-
68
- 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
69
-
70
- 1.Prepare a not started solidmemory page(exercise page)
71
-
72
- 2.Run the code
73
- ## Usage
74
- To use the library, simply call the `hack()` function:
75
- ```python
76
- from smemhack import hack
77
-
78
- hack(new_word_number)
@@ -1,2 +0,0 @@
1
- from .main import *
2
- __version__="5.11.8"
@@ -1,78 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: smemhack
3
- Version: 5.11.8
4
- Summary: A Python library to automate online homework tasks with AI and system control.
5
- Author: Dickily
6
- Author-email: dickilyyiu@gmail.com
7
- License: Proprietary
8
- Classifier: License :: Other/Proprietary License
9
- Classifier: Programming Language :: Python :: 3
10
- Classifier: Programming Language :: Python :: 3.8
11
- Classifier: Operating System :: OS Independent
12
- Requires-Python: >=3.8.18
13
- Description-Content-Type: text/markdown
14
- License-File: LICENSE.txt
15
- Requires-Dist: tensorflow>=2.8.0
16
- Requires-Dist: pyautogui>=0.9.53
17
- Requires-Dist: pyperclip>=1.8.2
18
- Requires-Dist: numpy>=1.20.0
19
- Requires-Dist: keyboard>=0.13.5
20
- Requires-Dist: fuzzywuzzy>=0.18.0
21
- Requires-Dist: python-Levenshtein>=0.12.2
22
- Requires-Dist: Pillow>=8.0.0
23
-
24
- # smemhack
25
- **smemhack** is a Python library designed to automate online homework tasks with AI and system control.
26
- What is inside:
27
-
28
- 1.auto train ai to finish solidmemory
29
-
30
- 2.having a compare system to prevent accident error
31
-
32
- **What is New in version 5.5**
33
-
34
- You now can control the new word number(max=5)
35
-
36
- How to Use it:
37
-
38
- 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
39
-
40
- **What is new in version 5.6**
41
-
42
- Now you can't enter number below 0 or larger than 5
43
-
44
- **What is new in version 5.7**
45
-
46
- 1.Now it has auto debug function,it will auto restart process if detected bug
47
-
48
- 2.You now can exit the program by pressing esc
49
-
50
- **What is new in version 5.8**
51
-
52
- Upgraded the backup compare system
53
-
54
- **What is new in version 5.9**
55
-
56
- Now it will auto upgrade the program
57
-
58
- **What is new in version 5.10**
59
-
60
- Updated the code so that it will fit everybody's computer
61
-
62
- # What is new in version 5.11
63
-
64
- Now it will auto restart after the package is upgraded
65
-
66
- **How to Use it:**
67
-
68
- 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
69
-
70
- 1.Prepare a not started solidmemory page(exercise page)
71
-
72
- 2.Run the code
73
- ## Usage
74
- To use the library, simply call the `hack()` function:
75
- ```python
76
- from smemhack import hack
77
-
78
- hack(new_word_number)
File without changes
File without changes
File without changes