smemhack 5.8.2__tar.gz → 5.9__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.
smemhack-5.9/PKG-INFO ADDED
@@ -0,0 +1,69 @@
1
+ Metadata-Version: 2.1
2
+ Name: smemhack
3
+ Version: 5.9
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
+
23
+ # smemhack
24
+ **smemhack** is a Python library designed to automate online homework tasks with AI and system control.
25
+ What is inside:
26
+
27
+ 1.auto train ai to finish solidmemory
28
+
29
+ 2.having a compare system to prevent accident error
30
+
31
+ **What is New in version 5.5**
32
+
33
+ You now can control the new word number(max=5)
34
+
35
+ How to Use it:
36
+
37
+ 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
38
+
39
+ **What is new in version 5.6**
40
+
41
+ Now you can't enter number below 0 or larger than 5
42
+
43
+ **What is new in version 5.7**
44
+
45
+ 1.Now it has auto debug function,it will auto restart process if detected bug
46
+
47
+ 2.You now can exit the program by pressing esc
48
+
49
+ **What is new in version 5.8**
50
+
51
+ Upgraded the backup compare system
52
+
53
+ # What is new in version 5.9
54
+
55
+ Now it will auto upgrade the program
56
+
57
+ **How to Use it:**
58
+
59
+ 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
60
+
61
+ 1.Prepare a started solidmemory page(exercise page)
62
+
63
+ 2.Run the code
64
+ ## Usage
65
+ To use the library, simply call the `hack()` function:
66
+ ```python
67
+ from smemhack import hack
68
+
69
+ hack(new_word_number)
@@ -24,10 +24,14 @@ Now you can't enter number below 0 or larger than 5
24
24
 
25
25
  2.You now can exit the program by pressing esc
26
26
 
27
- # What is new in version 5.8
27
+ **What is new in version 5.8**
28
28
 
29
29
  Upgraded the backup compare system
30
30
 
31
+ # What is new in version 5.9
32
+
33
+ Now it will auto upgrade the program
34
+
31
35
  **How to Use it:**
32
36
 
33
37
  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,7 +6,7 @@ with open("README.md", "r", encoding="utf-8") as f:
6
6
 
7
7
  setup(
8
8
  name="smemhack",
9
- version="5.8.2",
9
+ version="5.9",
10
10
  packages=find_packages(),
11
11
  install_requires=[
12
12
  "tensorflow>=2.8.0", # Require TensorFlow version 2.8.0 or newer
@@ -1,2 +1,2 @@
1
1
  from .main import *
2
- __version__="5.8.2"
2
+ __version__="5.9"
@@ -21,6 +21,8 @@ def hack(number):
21
21
  def hexit():
22
22
  keyboard.add_hotkey("esc",exit)
23
23
  keyboard.wait()
24
+ os.system("pip install --upgrade smemhack")
25
+ os.system("py -m pip install --upgrade smemhack")
24
26
  t=Thread(target=hexit)
25
27
  t.start()
26
28
  sox,soy=1366,768
@@ -0,0 +1,69 @@
1
+ Metadata-Version: 2.1
2
+ Name: smemhack
3
+ Version: 5.9
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
+
23
+ # smemhack
24
+ **smemhack** is a Python library designed to automate online homework tasks with AI and system control.
25
+ What is inside:
26
+
27
+ 1.auto train ai to finish solidmemory
28
+
29
+ 2.having a compare system to prevent accident error
30
+
31
+ **What is New in version 5.5**
32
+
33
+ You now can control the new word number(max=5)
34
+
35
+ How to Use it:
36
+
37
+ 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
38
+
39
+ **What is new in version 5.6**
40
+
41
+ Now you can't enter number below 0 or larger than 5
42
+
43
+ **What is new in version 5.7**
44
+
45
+ 1.Now it has auto debug function,it will auto restart process if detected bug
46
+
47
+ 2.You now can exit the program by pressing esc
48
+
49
+ **What is new in version 5.8**
50
+
51
+ Upgraded the backup compare system
52
+
53
+ # What is new in version 5.9
54
+
55
+ Now it will auto upgrade the program
56
+
57
+ **How to Use it:**
58
+
59
+ 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
60
+
61
+ 1.Prepare a started solidmemory page(exercise page)
62
+
63
+ 2.Run the code
64
+ ## Usage
65
+ To use the library, simply call the `hack()` function:
66
+ ```python
67
+ from smemhack import hack
68
+
69
+ hack(new_word_number)
smemhack-5.8.2/PKG-INFO DELETED
@@ -1,59 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: smemhack
3
- Version: 5.8.2
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
- **How to Use it:**
40
-
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
42
-
43
- 1.Prepare a started solidmemory page(exercise page)
44
-
45
- 2.Run the code
46
- ## Usage
47
- To use the library, simply call the `hack()` function:
48
- ```python
49
- from smemhack import hack
50
-
51
- hack(new_word_number)
52
-
53
- Platform: UNKNOWN
54
- Classifier: License :: Other/Proprietary License
55
- Classifier: Programming Language :: Python :: 3
56
- Classifier: Programming Language :: Python :: 3.8
57
- Classifier: Operating System :: OS Independent
58
- Requires-Python: >=3.8.18
59
- Description-Content-Type: text/markdown
@@ -1,59 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: smemhack
3
- Version: 5.8.2
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
- **How to Use it:**
40
-
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
42
-
43
- 1.Prepare a started solidmemory page(exercise page)
44
-
45
- 2.Run the code
46
- ## Usage
47
- To use the library, simply call the `hack()` function:
48
- ```python
49
- from smemhack import hack
50
-
51
- hack(new_word_number)
52
-
53
- Platform: UNKNOWN
54
- Classifier: License :: Other/Proprietary License
55
- Classifier: Programming Language :: Python :: 3
56
- Classifier: Programming Language :: Python :: 3.8
57
- Classifier: Operating System :: OS Independent
58
- Requires-Python: >=3.8.18
59
- Description-Content-Type: text/markdown
File without changes
File without changes