smemhack 5.1__tar.gz → 5.5__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.1/smemhack.egg-info → smemhack-5.5}/PKG-INFO +8 -3
- {smemhack-5.1 → smemhack-5.5}/README.md +7 -2
- {smemhack-5.1 → smemhack-5.5}/setup.py +1 -1
- {smemhack-5.1 → smemhack-5.5}/smemhack/__init__.py +1 -1
- {smemhack-5.1 → smemhack-5.5/smemhack.egg-info}/PKG-INFO +8 -3
- {smemhack-5.1 → smemhack-5.5}/LICENSE.txt +0 -0
- {smemhack-5.1 → smemhack-5.5}/setup.cfg +0 -0
- {smemhack-5.1 → smemhack-5.5}/smemhack/main.py +0 -0
- {smemhack-5.1 → smemhack-5.5}/smemhack.egg-info/SOURCES.txt +0 -0
- {smemhack-5.1 → smemhack-5.5}/smemhack.egg-info/dependency_links.txt +0 -0
- {smemhack-5.1 → smemhack-5.5}/smemhack.egg-info/requires.txt +0 -0
- {smemhack-5.1 → smemhack-5.5}/smemhack.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: smemhack
|
3
|
-
Version: 5.
|
3
|
+
Version: 5.5
|
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
|
@@ -9,22 +9,27 @@ License: Proprietary
|
|
9
9
|
Description: # smemhack
|
10
10
|
|
11
11
|
**smemhack** is a Python library designed to automate online homework tasks with AI and system control.
|
12
|
-
version: 5.1
|
13
12
|
What is inside:
|
14
13
|
|
15
14
|
1.auto train ai to finish solidmemory
|
16
15
|
|
17
16
|
2.having a compare system to prevent accident error
|
18
17
|
|
18
|
+
**What is New in version 5.5**
|
19
|
+
You now can control the new word number(max=5)
|
19
20
|
How to Use it:
|
21
|
+
|
22
|
+
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
|
23
|
+
|
20
24
|
1.Prepare a started solidmemory page(exercise page)
|
25
|
+
|
21
26
|
2.Run the code
|
22
27
|
## Usage
|
23
28
|
To use the library, simply call the `hack()` function:
|
24
29
|
```python
|
25
30
|
from smemhack import hack
|
26
31
|
|
27
|
-
hack()
|
32
|
+
hack(new_word_number)
|
28
33
|
|
29
34
|
Platform: UNKNOWN
|
30
35
|
Classifier: License :: Other/Proprietary License
|
@@ -1,19 +1,24 @@
|
|
1
1
|
# smemhack
|
2
2
|
|
3
3
|
**smemhack** is a Python library designed to automate online homework tasks with AI and system control.
|
4
|
-
version: 5.1
|
5
4
|
What is inside:
|
6
5
|
|
7
6
|
1.auto train ai to finish solidmemory
|
8
7
|
|
9
8
|
2.having a compare system to prevent accident error
|
10
9
|
|
10
|
+
**What is New in version 5.5**
|
11
|
+
You now can control the new word number(max=5)
|
11
12
|
How to Use it:
|
13
|
+
|
14
|
+
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
|
15
|
+
|
12
16
|
1.Prepare a started solidmemory page(exercise page)
|
17
|
+
|
13
18
|
2.Run the code
|
14
19
|
## Usage
|
15
20
|
To use the library, simply call the `hack()` function:
|
16
21
|
```python
|
17
22
|
from smemhack import hack
|
18
23
|
|
19
|
-
hack()
|
24
|
+
hack(new_word_number)
|
@@ -1,2 +1,2 @@
|
|
1
1
|
from .main import *
|
2
|
-
__version__="5.
|
2
|
+
__version__="5.5"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: smemhack
|
3
|
-
Version: 5.
|
3
|
+
Version: 5.5
|
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
|
@@ -9,22 +9,27 @@ License: Proprietary
|
|
9
9
|
Description: # smemhack
|
10
10
|
|
11
11
|
**smemhack** is a Python library designed to automate online homework tasks with AI and system control.
|
12
|
-
version: 5.1
|
13
12
|
What is inside:
|
14
13
|
|
15
14
|
1.auto train ai to finish solidmemory
|
16
15
|
|
17
16
|
2.having a compare system to prevent accident error
|
18
17
|
|
18
|
+
**What is New in version 5.5**
|
19
|
+
You now can control the new word number(max=5)
|
19
20
|
How to Use it:
|
21
|
+
|
22
|
+
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
|
23
|
+
|
20
24
|
1.Prepare a started solidmemory page(exercise page)
|
25
|
+
|
21
26
|
2.Run the code
|
22
27
|
## Usage
|
23
28
|
To use the library, simply call the `hack()` function:
|
24
29
|
```python
|
25
30
|
from smemhack import hack
|
26
31
|
|
27
|
-
hack()
|
32
|
+
hack(new_word_number)
|
28
33
|
|
29
34
|
Platform: UNKNOWN
|
30
35
|
Classifier: License :: Other/Proprietary License
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|