import zingu_apis
api = zingu_apis.api("steampowered")
result = api.fetch("ISteamNews/GetNewsForApp/v2/", appid=440, maxlength=0, count=20, format="json")
for item in result:
print(item)
const resp = await fetch("https://api.steampowered.com/ISteamNews/GetNewsForApp/v2/?appid=440&maxlength=0&count=20&format=json");
const data = await resp.json();