Kyler Eastridge d20417da28 Track circuitCode
2025-06-18 08:09:11 -04:00
2025-06-18 08:09:11 -04:00
2025-06-18 00:54:18 -04:00
2025-06-18 00:54:18 -04:00
2025-06-18 01:28:35 -04:00

Second Life viewer in python

import asyncio
import json
from pymetaverse import login
from pymetaverse.agent import Agent

async def main():
    # Set argument isBot = False if human
    loginHandle = await login.Login(username=("firstname", "lastname"), password="A secret to everyone")
    
    agent = await Agent.fromLogin(loginHandle)
    @agent.on("message")
    def handleMessage(simulator, message):
        print(simulator, message)
    
    await agent.run()

asyncio.run(main())
Description
Python Library for Second Life
Readme 171 KiB
Languages
Python 100%