PyMemoryEditor 1.4.9__tar.gz → 1.4.11__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.
Files changed (25) hide show
  1. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/PKG-INFO +1 -1
  2. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/PyMemoryEditor/__init__.py +1 -1
  3. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/PyMemoryEditor/process/util.py +2 -2
  4. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/PyMemoryEditor/win32/enums/scan_types.py +1 -1
  5. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/PyMemoryEditor/win32/functions.py +1 -1
  6. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/PyMemoryEditor.egg-info/PKG-INFO +1 -1
  7. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/LICENSE +0 -0
  8. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/PyMemoryEditor/open_process.py +0 -0
  9. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/PyMemoryEditor/process/__init__.py +0 -0
  10. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/PyMemoryEditor/process/errors.py +0 -0
  11. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/PyMemoryEditor/win32/enums/__init__.py +0 -0
  12. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/PyMemoryEditor/win32/enums/memory_allocation_states.py +0 -0
  13. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/PyMemoryEditor/win32/enums/memory_protections.py +0 -0
  14. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/PyMemoryEditor/win32/enums/memory_types.py +0 -0
  15. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/PyMemoryEditor/win32/enums/process_operations.py +0 -0
  16. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/PyMemoryEditor/win32/enums/standard_access_rights.py +0 -0
  17. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/PyMemoryEditor/win32/types.py +0 -0
  18. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/PyMemoryEditor/win32/util.py +0 -0
  19. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/PyMemoryEditor.egg-info/SOURCES.txt +0 -0
  20. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/PyMemoryEditor.egg-info/dependency_links.txt +0 -0
  21. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/PyMemoryEditor.egg-info/requires.txt +0 -0
  22. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/PyMemoryEditor.egg-info/top_level.txt +0 -0
  23. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/README.md +0 -0
  24. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/setup.cfg +0 -0
  25. {PyMemoryEditor-1.4.9 → PyMemoryEditor-1.4.11}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: PyMemoryEditor
3
- Version: 1.4.9
3
+ Version: 1.4.11
4
4
  Summary: A Python library to edit and track memory of Windows processes (32 bits and 64 bits).
5
5
  Home-page: https://github.com/JeanExtreme002/PyMemoryEditor
6
6
  Author: Jean Loui Bernard Silva de Jesus
@@ -6,7 +6,7 @@ reading and writing values in the process memory.
6
6
  """
7
7
 
8
8
  __author__ = "Jean Loui Bernard Silva de Jesus"
9
- __version__ = "1.4.9"
9
+ __version__ = "1.4.11"
10
10
 
11
11
  import sys
12
12
 
@@ -1,7 +1,7 @@
1
1
  # -*- coding: utf-8 -*-
2
2
 
3
- from win32gui import FindWindow
4
- from win32process import GetWindowThreadProcessId
3
+ from win32.win32gui import FindWindow
4
+ from win32.win32process import GetWindowThreadProcessId
5
5
  import psutil
6
6
 
7
7
 
@@ -7,7 +7,7 @@ class ScanTypesEnum(Enum):
7
7
  Enum with scan types. Used by SearchAllMemory function.
8
8
  """
9
9
  EXACT_VALUE = 0
10
- DIFFERENT_THAN = 1
10
+ NOT_EXACT_VALUE = 1
11
11
  BIGGER_THAN = 2
12
12
  SMALLER_THAN = 3
13
13
  BIGGER_THAN_OR_EXACT_VALUE = 4
@@ -181,7 +181,7 @@ def SearchAllMemory(
181
181
 
182
182
  # Compare the values.
183
183
  if scan_type is ScanTypesEnum.EXACT_VALUE and data != target_value_bytes: continue
184
- elif scan_type is ScanTypesEnum.DIFFERENT_THAN and data == target_value_bytes: continue
184
+ elif scan_type is ScanTypesEnum.NOT_EXACT_VALUE and data == target_value_bytes: continue
185
185
  elif scan_type is ScanTypesEnum.BIGGER_THAN and data <= target_value_bytes: continue
186
186
  elif scan_type is ScanTypesEnum.SMALLER_THAN and data >= target_value_bytes: continue
187
187
  elif scan_type is ScanTypesEnum.BIGGER_THAN_OR_EXACT_VALUE and data < target_value_bytes: continue
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: PyMemoryEditor
3
- Version: 1.4.9
3
+ Version: 1.4.11
4
4
  Summary: A Python library to edit and track memory of Windows processes (32 bits and 64 bits).
5
5
  Home-page: https://github.com/JeanExtreme002/PyMemoryEditor
6
6
  Author: Jean Loui Bernard Silva de Jesus
File without changes
File without changes