Metadata-Version: 2.1
Name: hazedumper
Version: 1.0.1
Summary: pkg for auto update offsets
Home-page: https://github.com/cxldxice/hazedumper
Author: cxldxice
Author-email: cxldxfxtxre@gmail.com
License: MIT
Keywords: hazedumper,offsets,csgo
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Python pkg for HazeDumper
## Install
```pip install hazedumper```

---
## Example
```python
import pymem
import pymem.process
from hazedumper import \
    dwLocalPlayer, m_iHealth


def main():
    pm = pymem.Pymem("csgo.exe")
    client = pymem.process.module_from_name(pm.process_handle, "client.dll").lpBaseOfDll

    player = pm.read_int(client + dwLocalPlayer) #get local player
    health = pm.read_int(player + m_iHealth) #get health

    print(health) #output: 100


if __name__ == '__main__':
    main()
```

---
`by @cxldxice with вќ¤`

