You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
514 B
21 lines
514 B
|
1 year ago
|
import asyncio
|
||
|
|
from dap import AsyncServer
|
||
|
|
|
||
|
|
async def main():
|
||
|
|
print("Eugenio")
|
||
|
|
server = AsyncServer("debugpy", port=64321)
|
||
|
|
# server = AsyncServer("debugpy", port=53430)
|
||
|
|
# server = AsyncServer("debugpy", port=12345)
|
||
|
|
print("Parodi")
|
||
|
|
try:
|
||
|
|
await server.start()
|
||
|
|
print(f"a - {server}")
|
||
|
|
except asyncio.CancelledError:
|
||
|
|
print(f"b - {server}")
|
||
|
|
await server.stop()
|
||
|
|
print(f"c - {server}")
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
asyncio.run(main())
|
||
|
|
print('END')
|