PyMemoryEditor 1.2.2__tar.gz → 1.3.0__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.
- {PyMemoryEditor-1.2.2 → PyMemoryEditor-1.3.0}/PKG-INFO +2 -2
- PyMemoryEditor-1.3.0/PyMemoryEditor/__init__.py +16 -0
- PyMemoryEditor-1.2.2/PyMemoryEditor/__init__.py → PyMemoryEditor-1.3.0/PyMemoryEditor/open_process.py +1 -13
- {PyMemoryEditor-1.2.2 → PyMemoryEditor-1.3.0}/PyMemoryEditor.egg-info/PKG-INFO +2 -2
- {PyMemoryEditor-1.2.2 → PyMemoryEditor-1.3.0}/PyMemoryEditor.egg-info/SOURCES.txt +1 -0
- {PyMemoryEditor-1.2.2 → PyMemoryEditor-1.3.0}/setup.py +1 -1
- {PyMemoryEditor-1.2.2 → PyMemoryEditor-1.3.0}/LICENSE +0 -0
- {PyMemoryEditor-1.2.2 → PyMemoryEditor-1.3.0}/PyMemoryEditor/process/__init__.py +0 -0
- {PyMemoryEditor-1.2.2 → PyMemoryEditor-1.3.0}/PyMemoryEditor/process/errors.py +0 -0
- {PyMemoryEditor-1.2.2 → PyMemoryEditor-1.3.0}/PyMemoryEditor/process/util.py +0 -0
- {PyMemoryEditor-1.2.2 → PyMemoryEditor-1.3.0}/PyMemoryEditor/win32/constants.py +0 -0
- {PyMemoryEditor-1.2.2 → PyMemoryEditor-1.3.0}/PyMemoryEditor/win32/enum.py +0 -0
- {PyMemoryEditor-1.2.2 → PyMemoryEditor-1.3.0}/PyMemoryEditor/win32/functions.py +0 -0
- {PyMemoryEditor-1.2.2 → PyMemoryEditor-1.3.0}/PyMemoryEditor/win32/util.py +0 -0
- {PyMemoryEditor-1.2.2 → PyMemoryEditor-1.3.0}/PyMemoryEditor.egg-info/dependency_links.txt +0 -0
- {PyMemoryEditor-1.2.2 → PyMemoryEditor-1.3.0}/PyMemoryEditor.egg-info/requires.txt +0 -0
- {PyMemoryEditor-1.2.2 → PyMemoryEditor-1.3.0}/PyMemoryEditor.egg-info/top_level.txt +0 -0
- {PyMemoryEditor-1.2.2 → PyMemoryEditor-1.3.0}/README.md +0 -0
- {PyMemoryEditor-1.2.2 → PyMemoryEditor-1.3.0}/setup.cfg +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PyMemoryEditor
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.3.0
|
|
4
4
|
Summary: Process memory reader and writer.
|
|
5
5
|
Home-page: https://github.com/JeanExtreme002/PyMemoryEditor
|
|
6
6
|
Author: Jean Loui Bernard Silva de Jesus
|
|
7
7
|
License: MIT
|
|
8
|
-
Keywords: memory writer reader
|
|
8
|
+
Keywords: memory writer write reader read override address pointer peditor process win32 api cheat
|
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Intended Audience :: Developers
|
|
11
11
|
Classifier: Environment :: Win32 (MS Windows)
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
A Python library developed with ctypes to manipulate Windows processes (32 bits and 64 bits),
|
|
5
|
+
reading and writing values in the process memory.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
__author__ = "Jean Loui Bernard Silva de Jesus"
|
|
9
|
+
__version__ = "1.3.0"
|
|
10
|
+
|
|
11
|
+
import sys
|
|
12
|
+
|
|
13
|
+
if "win" not in sys.platform:
|
|
14
|
+
raise OSError("Only Windows OS is currently supported.")
|
|
15
|
+
|
|
16
|
+
from .open_process import OpenProcess, ProcessOperations
|
|
@@ -1,23 +1,11 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
|
|
3
|
-
"""
|
|
4
|
-
A Python library developed with ctypes to manipulate Windows processes (32 bits and 64 bits),
|
|
5
|
-
reading and writing values in the process memory.
|
|
6
|
-
"""
|
|
7
|
-
|
|
8
|
-
__author__ = "Jean Loui Bernard Silva de Jesus"
|
|
9
|
-
__version__ = "1.2.2"
|
|
10
|
-
|
|
11
3
|
from .process import Process
|
|
12
4
|
from .win32.enum import ProcessOperations
|
|
13
5
|
from .win32.functions import CloseProcessHandle, GetProcessHandle, ReadProcessMemory, WriteProcessMemory
|
|
14
6
|
|
|
15
7
|
from typing import Optional, Type, TypeVar, Union
|
|
16
8
|
|
|
17
|
-
__all__ = (
|
|
18
|
-
"OpenProcess",
|
|
19
|
-
"ProcessOperations"
|
|
20
|
-
)
|
|
21
9
|
|
|
22
10
|
T = TypeVar("T")
|
|
23
11
|
|
|
@@ -94,7 +82,7 @@ class OpenProcess(object):
|
|
|
94
82
|
if self.__permission.value not in valid_permissions:
|
|
95
83
|
raise PermissionError("The handle does not have permission to read the process memory.")
|
|
96
84
|
|
|
97
|
-
return
|
|
85
|
+
return ReadProcessMemory(self.__process_handle, address, pytype, bufflength)
|
|
98
86
|
|
|
99
87
|
def write_process_memory(
|
|
100
88
|
self,
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PyMemoryEditor
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.3.0
|
|
4
4
|
Summary: Process memory reader and writer.
|
|
5
5
|
Home-page: https://github.com/JeanExtreme002/PyMemoryEditor
|
|
6
6
|
Author: Jean Loui Bernard Silva de Jesus
|
|
7
7
|
License: MIT
|
|
8
|
-
Keywords: memory writer reader
|
|
8
|
+
Keywords: memory writer write reader read override address pointer peditor process win32 api cheat
|
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Intended Audience :: Developers
|
|
11
11
|
Classifier: Environment :: Win32 (MS Windows)
|
|
@@ -15,7 +15,7 @@ setup(
|
|
|
15
15
|
author = "Jean Loui Bernard Silva de Jesus",
|
|
16
16
|
url = "https://github.com/JeanExtreme002/PyMemoryEditor",
|
|
17
17
|
license = "MIT",
|
|
18
|
-
keywords = "memory writer reader",
|
|
18
|
+
keywords = "memory writer write reader read override address pointer peditor process win32 api cheat",
|
|
19
19
|
packages = ["PyMemoryEditor", "PyMemoryEditor.process", "PyMemoryEditor.win32"],
|
|
20
20
|
install_requires = ["pywin32", "psutil"],
|
|
21
21
|
classifiers = [
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|