smemhack 5.2__tar.gz → 5.5.1__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.2
3
+ Version: 5.5.1
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
@@ -15,15 +15,21 @@ Description: # smemhack
15
15
 
16
16
  2.having a compare system to prevent accident error
17
17
 
18
+ **What is New in version 5.5**
19
+ You now can control the new word number(max=5)
18
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
+
19
24
  1.Prepare a started solidmemory page(exercise page)
25
+
20
26
  2.Run the code
21
27
  ## Usage
22
28
  To use the library, simply call the `hack()` function:
23
29
  ```python
24
30
  from smemhack import hack
25
31
 
26
- hack()
32
+ hack(new_word_number)
27
33
 
28
34
  Platform: UNKNOWN
29
35
  Classifier: License :: Other/Proprietary License
@@ -7,12 +7,18 @@ What is inside:
7
7
 
8
8
  2.having a compare system to prevent accident error
9
9
 
10
+ **What is New in version 5.5**
11
+ You now can control the new word number(max=5)
10
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
+
11
16
  1.Prepare a started solidmemory page(exercise page)
17
+
12
18
  2.Run the code
13
19
  ## Usage
14
20
  To use the library, simply call the `hack()` function:
15
21
  ```python
16
22
  from smemhack import hack
17
23
 
18
- hack()
24
+ hack(new_word_number)
@@ -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.2",
9
+ version="5.5.1",
10
10
  packages=find_packages(),
11
11
  install_requires=[
12
12
  "tensorflow",
@@ -1,2 +1,2 @@
1
1
  from .main import *
2
- __version__="5.2"
2
+ __version__="5.5.1"
@@ -12,7 +12,7 @@ from tensorflow.keras.regularizers import l2
12
12
  from tensorflow.keras.preprocessing.text import Tokenizer
13
13
  from tensorflow.keras.preprocessing.sequence import pad_sequences
14
14
  import numpy as np
15
- def hack():
15
+ def hack(number):
16
16
  sox,soy=1366,768
17
17
  x,y=py.size()
18
18
  nx,ny=x/sox,y/soy
@@ -132,7 +132,7 @@ def hack():
132
132
  get=get.split("\n")
133
133
  get=get[2:]
134
134
  get="\n".join(get)
135
- for _ in range(0,len(data)+5):
135
+ for _ in range(0,len(data)+number):
136
136
  py.click(115*nx,604*ny)
137
137
  py.keyDown("ctrl")
138
138
  py.press("a")
@@ -151,7 +151,7 @@ def hack():
151
151
  py.typewrite(data[get.index(x)])
152
152
  py.press("enter")
153
153
  time.sleep(1)
154
- for _ in range(0,len(data)+5):
154
+ for _ in range(0,len(data)+number):
155
155
  py.click(115*nx,604*ny)
156
156
  py.keyDown("ctrl")
157
157
  py.press("a")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: smemhack
3
- Version: 5.2
3
+ Version: 5.5.1
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
@@ -15,15 +15,21 @@ Description: # smemhack
15
15
 
16
16
  2.having a compare system to prevent accident error
17
17
 
18
+ **What is New in version 5.5**
19
+ You now can control the new word number(max=5)
18
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
+
19
24
  1.Prepare a started solidmemory page(exercise page)
25
+
20
26
  2.Run the code
21
27
  ## Usage
22
28
  To use the library, simply call the `hack()` function:
23
29
  ```python
24
30
  from smemhack import hack
25
31
 
26
- hack()
32
+ hack(new_word_number)
27
33
 
28
34
  Platform: UNKNOWN
29
35
  Classifier: License :: Other/Proprietary License
File without changes
File without changes