forked from jan/mem_edit
		
	Spelling fixes
This commit is contained in:
		
							parent
							
								
									a6b5f94bf5
								
							
						
					
					
						commit
						ea83dc5670
					
				@ -1,6 +1,6 @@
 | 
			
		||||
# mem_edit 
 | 
			
		||||
 | 
			
		||||
**mem_edit** is a multiplatform memory editing library written in Python.
 | 
			
		||||
**mem_edit** is a multi-platform memory editing library written in Python.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
**Capabilities:**
 | 
			
		||||
@ -22,7 +22,7 @@
 | 
			
		||||
* typing (for type annotations) 
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
Install with pip, from pypi (preferred):
 | 
			
		||||
Install with pip, from PyPI (preferred):
 | 
			
		||||
```bash
 | 
			
		||||
pip install mem_edit
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
@ -1,7 +1,7 @@
 | 
			
		||||
"""
 | 
			
		||||
mem_edit
 | 
			
		||||
 | 
			
		||||
mem_edit is a multiplatform (Windows and Linux) python package for
 | 
			
		||||
mem_edit is a multi-platform (Windows and Linux) python package for
 | 
			
		||||
  reading, writing, and searching in the working memory of running
 | 
			
		||||
  programs.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -265,7 +265,7 @@ class Process(metaclass=ABCMeta):
 | 
			
		||||
 | 
			
		||||
        :param needle_buffer: The value to search for. This should be a ctypes object of the same
 | 
			
		||||
                sorts as used by .read_memory(...), which will be compared to the contents of
 | 
			
		||||
                memory at each acessible address.
 | 
			
		||||
                memory at each accessible address.
 | 
			
		||||
        :param writeable_only: If True, only search regions where the process has write access.
 | 
			
		||||
        :return: List of addresses where the needle_buffer was found.
 | 
			
		||||
        """
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										2
									
								
								setup.py
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								setup.py
									
									
									
									
									
								
							@ -4,7 +4,7 @@ from setuptools import setup, find_packages
 | 
			
		||||
 | 
			
		||||
setup(name='mem_edit',
 | 
			
		||||
      version='0.1',
 | 
			
		||||
      description='Multiplatform library for memory editing',
 | 
			
		||||
      description='Multi-platform library for memory editing',
 | 
			
		||||
      author='Jan Petykiewicz',
 | 
			
		||||
      author_email='anewusername@gmail.com',
 | 
			
		||||
      url='https://mpxd.net/gogs/jan/mem_edit',
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user