
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
.. contents::
Change history
Detailed Documentation
The realmstatus-API reads the realmstatus-xml from wow-europe.com to get the status of a specified realm ("Realm Up/Realm Down") and the type of the realm (PvE,PvP etc.).
To use the API, just do an import like this
::
>>> from realmstatus_api import Realmstatus
Mock Realmstatus.get_realm_status and Realmstatus.get_realm_type
Returns output similar to what we would get from the API, so that this test can be used while offline
::
>>> from test_realmstatus import mocked_get_realm_status, mocked_get_realm_type
Mocking the functions
::
>>> Realmstatus.get_realm_status = mocked_get_realm_status
>>> Realmstatus.get_realm_type = mocked_get_realm_type
First create an instance of the Realmstatus object
::
>>> realmstatus = Realmstatus()
To get the status of a realm, use get_realm_status(* names). If you want, you can get the status of multiple realms (in a dictionary)
::
>>> status = realmstatus.get_realm_status("Azshara")["Azshara"]
>>> status == "Realm Up"
True
To get the type of a realm, use get_realm_type(* names). If you want, you can get the type of multiple realms (in a dictionary)
::
>>> type = realmstatus.get_realm_type("Azshara")["Azshara"]
>>> type == "PvP"
True
Contributors
Marc Goetz, Author
Download
FAQs
Python World of Warcraft Realmstatus API
We found that wow.realmstatusapi demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.