A Python API for MEmu Android Emulator.
Project description
pymemuc
A Python API for MEmu Android Emulator. The API exposes MEmu Command (MEMUC) functionality in Python.
Allows for easy interaction with MEmu VMs, including VM image management, VM control, running VM commands and ADB interaction.
Installation
pip install pymemuc
Example usage
# import the PyMemuc class
from pymemuc import PyMemuc
# create a PyMemuc instance, doing so will automatically link to the MEMUC executable
memuc = PyMemuc()
# create a new vm, saving the index
index = memuc.create_vm()
# list out all vms
print(memuc.list_vm_info())
# start the vm
memuc.start_vm(index)
# stop the vm
memuc.stop_vm(index)
See the demo notebook for more examples.
Documentation
See the API documentation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pymemuc-0.6.0.tar.gz
(12.3 kB
view hashes)
Built Distribution
pymemuc-0.6.0-py3-none-any.whl
(15.3 kB
view hashes)