GitHub - third-party-dev/jdwp: JDWP Implementation in Async Python

Skip to content

Navigation Menu

Sign in

Appearance settings

thirdparty.jdwp

A JDWP implementation in async python.

Note: Very much a work in progress.

Example

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())

References