SkillAgentSearch skills...

Pymemuc

A Python API for MEmu Android Emulator

Install / Use

/learn @pyclashbot/Pymemuc
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

pymemuc

GitHub Documentation Status PyPI PyPI - Downloads PyPI - Python Version CodeFactor

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.

View on GitHub
GitHub Stars43
CategoryDevelopment
Updated17d ago
Forks12

Languages

Python

Security Score

95/100

Audited on Mar 14, 2026

No findings