A JDWP implementation in async python.
Note: Very much a work in progress.
import asyncio
from thirdparty.jdwp import Jdwp
async def main():
jdwp = await Jdwp('localhost', 8700).start()
print(await jdwp.VirtualMachine.Version())
print(await jdwp.VirtualMachine.ClassPaths())
asyncio.run(main())
-
JDWP Protocol Details #JDWP_VirtualMachine_AllClasses