mirror of
https://github.com/opensim/opensim.git
synced 2026-05-16 03:36:04 +08:00
13 lines
299 B
Python
Executable File
13 lines
299 B
Python
Executable File
#!/usr/bin/python
|
|
# -*- encoding: utf-8 -*-
|
|
import xmlrpclib
|
|
|
|
# XML-RPC URL (http_listener_port)
|
|
gridServerURL = 'http://127.0.0.1:9000'
|
|
|
|
# instantiate server object
|
|
gridServer = xmlrpclib.Server(gridServerURL)
|
|
|
|
# invoke admin_alert: requires password and message
|
|
print gridServer.get_grid_info({})
|