ntmemoryapi 2.5.0__tar.gz → 2.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,7 +1,8 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: ntmemoryapi
3
- Version: 2.5.0
4
- Summary: Add your description here
3
+ Version: 2.5.1
4
+ Summary: Simple library for Windows to manipulate process virtual memory with stelthy syscall wraps
5
+ Author: Xenely
5
6
  Requires-Dist: psutil>=7.2.2
6
7
  Requires-Python: >=3.13
7
8
  Description-Content-Type: text/markdown
@@ -1,9 +1,12 @@
1
1
  [project]
2
2
  name = "ntmemoryapi"
3
- version = "2.5.0"
4
- description = "Add your description here"
3
+ version = "2.5.1"
4
+ description = "Simple library for Windows to manipulate process virtual memory with stelthy syscall wraps"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.13"
7
+ authors = [
8
+ {name = "Xenely"}
9
+ ]
7
10
  dependencies = [
8
11
  "psutil>=7.2.2",
9
12
  ]
@@ -417,6 +417,9 @@ class _AutoStructureMeta(type(ctypes.Structure)):
417
417
  class AutoStructure(ctypes.Structure, metaclass=_AutoStructureMeta):
418
418
  """Sturcture to automatic dereference pointers located at virtual process memory."""
419
419
 
420
+ # ==--------------------------------== #
421
+ # Public methods #
422
+ # ==--------------------------------== #
420
423
  def __init__(self, *args: typing.Any, **kwargs: typing.Any) -> None:
421
424
  """Init instance passing `*args` and `**kwargs` into parent initializer."""
422
425
 
@@ -5,7 +5,6 @@
5
5
  # | Discord: xenely |
6
6
  # +-------------------------------------+
7
7
 
8
-
9
8
  import typing
10
9
  import ctypes
11
10
 
File without changes