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 +69 -0
- {smemhack-5.8.2 → smemhack-5.9}/README.md +5 -1
- {smemhack-5.8.2 → smemhack-5.9}/setup.py +1 -1
- {smemhack-5.8.2 → smemhack-5.9}/smemhack/__init__.py +1 -1
- {smemhack-5.8.2 → smemhack-5.9}/smemhack/main.py +2 -0
- smemhack-5.9/smemhack.egg-info/PKG-INFO +69 -0
- smemhack-5.8.2/PKG-INFO +0 -59
- smemhack-5.8.2/smemhack.egg-info/PKG-INFO +0 -59
- {smemhack-5.8.2 → smemhack-5.9}/LICENSE.txt +0 -0
- {smemhack-5.8.2 → smemhack-5.9}/setup.cfg +0 -0
- {smemhack-5.8.2 → smemhack-5.9}/smemhack.egg-info/SOURCES.txt +0 -0
- {smemhack-5.8.2 → smemhack-5.9}/smemhack.egg-info/dependency_links.txt +0 -0
- {smemhack-5.8.2 → smemhack-5.9}/smemhack.egg-info/requires.txt +0 -0
- {smemhack-5.8.2 → smemhack-5.9}/smemhack.egg-info/top_level.txt +0 -0
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
|
-
|
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
|
@@ -1,2 +1,2 @@
|
|
1
1
|
from .main import *
|
2
|
-
__version__="5.
|
2
|
+
__version__="5.9"
|
@@ -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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|