smemhack 5.0__tar.gz → 5.2__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,9 @@
1
+ Copyright (c) 2025 Dickily
2
+
3
+ All rights reserved.
4
+
5
+ Permission is hereby granted to the end user ("Licensee") to use this software for personal and non-commercial purposes. Any commercial use, modification, distribution, reproduction, or reverse engineering of this software, in whole or in part, is strictly prohibited without prior written consent from Dickily.
6
+
7
+ The software is provided "as is," without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, and non-infringement. In no event shall the authors or copyright holders be liable for any claim, damages, or other liability, whether in an action of contract, tort, or otherwise, arising from, out of, or in connection with the software or the use or other dealings in the software.
8
+
9
+ For inquiries or permissions, please contact: dickilyyiu@gmail.com
smemhack-5.2/PKG-INFO ADDED
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.1
2
+ Name: smemhack
3
+ Version: 5.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
+
11
+ **smemhack** is a Python library designed to automate online homework tasks with AI and system control.
12
+ What is inside:
13
+
14
+ 1.auto train ai to finish solidmemory
15
+
16
+ 2.having a compare system to prevent accident error
17
+
18
+ How to Use it:
19
+ 1.Prepare a started solidmemory page(exercise page)
20
+ 2.Run the code
21
+ ## Usage
22
+ To use the library, simply call the `hack()` function:
23
+ ```python
24
+ from smemhack import hack
25
+
26
+ hack()
27
+
28
+ Platform: UNKNOWN
29
+ Classifier: License :: Other/Proprietary License
30
+ Classifier: Programming Language :: Python :: 3
31
+ Classifier: Programming Language :: Python :: 3.8
32
+ Classifier: Operating System :: OS Independent
33
+ Requires-Python: >=3.6
34
+ Description-Content-Type: text/markdown
@@ -1,7 +1,6 @@
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.0
5
4
  What is inside:
6
5
 
7
6
  1.auto train ai to finish solidmemory
smemhack-5.2/setup.py ADDED
@@ -0,0 +1,30 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ # Load README content for PyPI description
4
+ with open("README.md", "r", encoding="utf-8") as f:
5
+ long_description = f.read()
6
+
7
+ setup(
8
+ name="smemhack",
9
+ version="5.2",
10
+ packages=find_packages(),
11
+ install_requires=[
12
+ "tensorflow",
13
+ "pyautogui",
14
+ "pyperclip",
15
+ "numpy"
16
+ ],
17
+ description="A Python library to automate online homework tasks with AI and system control.",
18
+ long_description=long_description, # Use README.md for the description
19
+ long_description_content_type="text/markdown", # Specify Markdown format for PyPI
20
+ author="Dickily",
21
+ author_email="dickilyyiu@gmail.com", # Add your email for contact
22
+ license="Proprietary",
23
+ classifiers=[
24
+ "License :: Other/Proprietary License", # Proprietary license classifier
25
+ "Programming Language :: Python :: 3",
26
+ "Programming Language :: Python :: 3.8",
27
+ "Operating System :: OS Independent",
28
+ ],
29
+ python_requires=">=3.6", # Minimum required Python version
30
+ )
@@ -1,2 +1,2 @@
1
1
  from .main import *
2
- __version__="5.0"
2
+ __version__="5.2"
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.1
2
+ Name: smemhack
3
+ Version: 5.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
+
11
+ **smemhack** is a Python library designed to automate online homework tasks with AI and system control.
12
+ What is inside:
13
+
14
+ 1.auto train ai to finish solidmemory
15
+
16
+ 2.having a compare system to prevent accident error
17
+
18
+ How to Use it:
19
+ 1.Prepare a started solidmemory page(exercise page)
20
+ 2.Run the code
21
+ ## Usage
22
+ To use the library, simply call the `hack()` function:
23
+ ```python
24
+ from smemhack import hack
25
+
26
+ hack()
27
+
28
+ Platform: UNKNOWN
29
+ Classifier: License :: Other/Proprietary License
30
+ Classifier: Programming Language :: Python :: 3
31
+ Classifier: Programming Language :: Python :: 3.8
32
+ Classifier: Operating System :: OS Independent
33
+ Requires-Python: >=3.6
34
+ Description-Content-Type: text/markdown
smemhack-5.0/LICENSE.txt DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 [Dickily]
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
smemhack-5.0/PKG-INFO DELETED
@@ -1,13 +0,0 @@
1
- Metadata-Version: 1.2
2
- Name: smemhack
3
- Version: 5.0
4
- Summary: A Python library to automate online homework tasks with AI and system control.
5
- Home-page: UNKNOWN
6
- Author: Dickily
7
- License: MIT
8
- Description: UNKNOWN
9
- Platform: UNKNOWN
10
- Classifier: License :: OSI Approved :: MIT License
11
- Classifier: Programming Language :: Python :: 3
12
- Classifier: Programming Language :: Python :: 3.8
13
- Requires-Python: >=3.6
smemhack-5.0/setup.py DELETED
@@ -1,22 +0,0 @@
1
- from setuptools import setup, find_packages
2
-
3
- setup(
4
- name="smemhack",
5
- version="5.0",
6
- packages=find_packages(),
7
- install_requires=[
8
- "tensorflow",
9
- "pyautogui",
10
- "pyperclip",
11
- "numpy"
12
- ],
13
- description="A Python library to automate online homework tasks with AI and system control.",
14
- author="Dickily",
15
- license="MIT",
16
- classifiers=[
17
- "License :: OSI Approved :: MIT License",
18
- "Programming Language :: Python :: 3",
19
- "Programming Language :: Python :: 3.8",
20
- ],
21
- python_requires=">=3.6", # Minimum required Python version
22
- )
@@ -1,13 +0,0 @@
1
- Metadata-Version: 1.2
2
- Name: smemhack
3
- Version: 5.0
4
- Summary: A Python library to automate online homework tasks with AI and system control.
5
- Home-page: UNKNOWN
6
- Author: Dickily
7
- License: MIT
8
- Description: UNKNOWN
9
- Platform: UNKNOWN
10
- Classifier: License :: OSI Approved :: MIT License
11
- Classifier: Programming Language :: Python :: 3
12
- Classifier: Programming Language :: Python :: 3.8
13
- Requires-Python: >=3.6
File without changes
File without changes