Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JeanExtreme002 authored Nov 18, 2023
1 parent 57910f6 commit 6c15b85
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ for address, info process.search_by_value(..., progress_information = True):
print(template.format(address, progress))
```

# Getting memory regions:
## Getting memory regions:
Use the method `get_memory_regions()` to get the base address, size and more information of all memory regions used by the process.

```py
Expand All @@ -87,3 +87,6 @@ for memory_region in process.get_memory_regions():
size = memory_region["size"]
information = memory_region["struct"]
```

# Tkinter application sample:
You can run a simple tkinter application to scan the memory of a process by typing `pymemoryeditor` at the CLI.

0 comments on commit 6c15b85

Please sign in to comment.