PyMemoryEditor 1.5.20__tar.gz → 1.5.22__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.5.22/.flake8 +11 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PKG-INFO +2 -2
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/__init__.py +1 -1
- pymemoryeditor-1.5.22/PyMemoryEditor/__main__.py +4 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/sample/open_process_window.py +1 -2
- pymemoryeditor-1.5.22/tests/conftest.py +7 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/tests/test_editor.py +2 -2
- pymemoryeditor-1.5.20/.flake8 +0 -10
- pymemoryeditor-1.5.20/tests/package.py +0 -10
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/.github/workflows/python-package.yml +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/.gitignore +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/LICENSE +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/enums.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/linux/functions.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/linux/process.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/linux/ptrace/__init__.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/linux/ptrace/enums.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/linux/ptrace/ptrace.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/linux/types.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/process/__init__.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/process/abstract.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/process/errors.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/process/info.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/process/util.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/sample/application.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/sample/main_application_window.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/util/__init__.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/util/convert.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/util/scan.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/util/search/abstract.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/util/search/bmh.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/util/search/kmp.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/win32/enums/__init__.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/win32/enums/memory_allocation_states.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/win32/enums/memory_protections.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/win32/enums/memory_types.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/win32/enums/process_operations.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/win32/enums/standard_access_rights.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/win32/functions.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/win32/process.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/win32/types.py +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/README.md +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/pyproject.toml +0 -0
- {pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/requirements.txt +0 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
[flake8]
|
|
2
|
+
|
|
3
|
+
max-line-length = 130
|
|
4
|
+
ignore = E701, E722
|
|
5
|
+
|
|
6
|
+
per-file-ignores =
|
|
7
|
+
# __init__.py files are allowed to have unused imports and lines-too-long
|
|
8
|
+
*/__init__.py:F401
|
|
9
|
+
|
|
10
|
+
# Unused imports are allowed in the tests/package.py module and they must come after setting the current working directory.
|
|
11
|
+
tests/package.py:F401, E402
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: PyMemoryEditor
|
|
3
|
-
Version: 1.5.
|
|
3
|
+
Version: 1.5.22
|
|
4
4
|
Summary: Multi-platform library developed with ctypes for reading, writing and searching at process memory, in a simple and friendly way with Python 3.
|
|
5
5
|
Project-URL: Homepage, https://github.com/JeanExtreme002/PyMemoryEditor
|
|
6
6
|
Author-email: Jean Loui Bernard Silva de Jesus <jeanextreme002@gmail.com>
|
|
@@ -8,7 +8,7 @@ The package supports Windows and Linux (32-bit and 64-bit).
|
|
|
8
8
|
"""
|
|
9
9
|
|
|
10
10
|
__author__ = "Jean Loui Bernard Silva de Jesus"
|
|
11
|
-
__version__ = "1.5.
|
|
11
|
+
__version__ = "1.5.22"
|
|
12
12
|
|
|
13
13
|
from .enums import ScanTypesEnum
|
|
14
14
|
from .process.errors import ClosedProcess, ProcessIDNotExistsError, ProcessNotFoundError
|
{pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/sample/open_process_window.py
RENAMED
|
@@ -4,8 +4,7 @@ from tkinter import Frame, Label, Listbox, Scrollbar, Tk
|
|
|
4
4
|
from tkinter.ttk import Button, Entry, Style
|
|
5
5
|
from typing import Optional
|
|
6
6
|
|
|
7
|
-
from PyMemoryEditor import OpenProcess
|
|
8
|
-
from PyMemoryEditor.errors import ProcessIDNotExistsError, ProcessNotFoundError
|
|
7
|
+
from PyMemoryEditor import OpenProcess, ProcessIDNotExistsError, ProcessNotFoundError
|
|
9
8
|
from PyMemoryEditor.process import AbstractProcess
|
|
10
9
|
|
|
11
10
|
import psutil
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
from
|
|
1
|
+
from PyMemoryEditor import OpenProcess, ScanTypesEnum, __version__
|
|
2
2
|
from os import getpid
|
|
3
3
|
from typing import Optional
|
|
4
4
|
import ctypes
|
|
5
5
|
import platform
|
|
6
6
|
import random
|
|
7
7
|
|
|
8
|
-
print("Testing PyMemoryEditor version %s." %
|
|
8
|
+
print("Testing PyMemoryEditor version %s." % __version__)
|
|
9
9
|
|
|
10
10
|
print("\nOS Information: {} - {} {}".format(platform.platform(), *platform.architecture()[::-1]))
|
|
11
11
|
print("Processor Information: {} | {}\n".format(platform.machine(), platform.processor()))
|
pymemoryeditor-1.5.20/.flake8
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
[flake8]
|
|
2
|
-
|
|
3
|
-
ignore = E501, E701, E722
|
|
4
|
-
|
|
5
|
-
per-file-ignores =
|
|
6
|
-
# __init__.py files are allowed to have unused imports and lines-too-long
|
|
7
|
-
*/__init__.py:F401
|
|
8
|
-
|
|
9
|
-
# Unused imports are allowed on tests/package.py module and they must come after setting the current working directory.
|
|
10
|
-
tests/package.py:F401, E402
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/sample/main_application_window.py
RENAMED
|
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
|
{pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/win32/enums/memory_protections.py
RENAMED
|
File without changes
|
|
File without changes
|
{pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/win32/enums/process_operations.py
RENAMED
|
File without changes
|
{pymemoryeditor-1.5.20 → pymemoryeditor-1.5.22}/PyMemoryEditor/win32/enums/standard_access_rights.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|