Skip to main content

A library for defining objects in memory

Project description

memobj

A library for defining objects in memory

installing

python 3.11+ only! pip install memobj

usage

from memobj import WindowsProcess, MemoryObject
from memobj.property import *


# you can define custom property readers like this
class FloatVec3(MemoryProperty):
    def from_memory(self) -> tuple[float]:
        # read 3 floats
        return self.read_formatted_from_offset("fff")
    
    def to_memory(self, value: tuple[float]):
        self.write_formatted_to_offset("fff", value)


class MyObject(MemoryObject):
    # you can forward reference classes by putting them in a string
    my_other_object: "MyOtherObject" = ObjectPointer(0x20, "MyOtherObject")


class MyOtherObject(MemoryObject):
    my_float_vec: tuple[float] = FloatVec3(0x30)


process = WindowsProcess.from_name("my_process.exe")

my_object = MyObject(0xFFFFFFFF, process)
print(my_object.my_other_object.my_float_vec)

support

discord https://discord.gg/7hBStdXkyR

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

memobj-0.3.3.tar.gz (8.4 kB view hashes)

Uploaded Source

Built Distribution

memobj-0.3.3-py3-none-any.whl (9.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page