From 1e6fc0a974ac07f49045c78117a91ca038dda0f2 Mon Sep 17 00:00:00 2001 From: JeanExtreme002 Date: Fri, 28 Aug 2026 17:58:32 -0300 Subject: [PATCH] docs: drop the duplicated feature list from the README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The "What's inside" section listed the library's capabilities and the GUI app's, both of which the Documentation table right below it already points at β€” searching, pattern scan, pointers, pointer scan, the app, the API reference. Two lists of the same thing drift apart, and the one that goes stale is the one nobody edits when a feature lands. The README keeps what only it can do: what the project is, how to install it, and a three-line example. --- README.md | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/README.md b/README.md index a0f9299..051d8ee 100644 --- a/README.md +++ b/README.md @@ -80,32 +80,6 @@ That's it β€” read, write or scan another process in three lines, the same way o --- -## What's inside - -### 🐍 The Python library - -Full control over another process's memory β€” in a few lines of Python: - -- βœ… **Read & write** values (`int`, `float`, `bool`, `str`, `bytes`) -- πŸ” **Value scan** with eight comparison modes -- 🎯 **Pattern scan** (IDA-style AOB & regex) -- πŸ”— **Pointer chains** + a live `RemotePointer` handle -- 🧭 **Pointer scan** β€” find static pointers that survive ASLR -- πŸ—ΊοΈ **Memory map**, **modules**, **threads** -- 🧱 **Allocate & free** remote memory (Windows / macOS) - -### πŸ–₯️ The bundled GUI app - -All the library's power β€” no code required: -- ⚑ **Zero setup** β€” attach to a process and start scanning in seconds -- 🧲 **Refine workflow** β€” First Scan β†’ Next Scan with live visual feedback -- πŸ“‹ **Cheat table** β€” freeze / write values on the fly, JSON import/export -- πŸ”¬ **Hex viewer** β€” browse raw memory and write back inline -- 🧩 **Pointer scan UI** β€” scan, export & rescan across sessions with a few clicks -- 🎨 **One-click access** β€” every feature at your fingertips, no code needed - ---- - ## πŸ“– Documentation Full documentation lives at **[pymemoryeditor.readthedocs.io](https://pymemoryeditor.readthedocs.io)** β€” installation, the Cheat Engine workflow, every method and parameter, the GUI app guide, platform notes and troubleshooting.