Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 773 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 773 Bytes

rust_webrcon Package

Information can be found for libraries in rust_webrcon folder

Install

pip install https://github.com/thegreatstorm/rust_webrcon/archive/master.zip

Docs

Base Dictionary (server_info)

Gather Base Information for server connection

  • hostname: <str> - The IP/hostname of the Rust server accepting Web Rcon
  • rcon_port: <str> - The rcon port for the Rust Server
  • rcon_password: <str> - The rcon password used to connect over Web Rcon
  • enable_trace: <boolean> - If you want to debug the websocket
  • Example:
  • server_info = {}
    server_info["hostname"] = ""
    server_info["rcon_port"] = ""
    server_info["rcon_password"] = ""
    server_info["enable_trace"] = False
    

More Docs coming soon!