Compare commits

..

No commits in common. "d52b4ac5e5f3e2af84bbbeffce465ffb0d5b0fe9" and "f2b288fa30cf64009f787b8022a7da414648dd32" have entirely different histories.

2 changed files with 4 additions and 7 deletions

View File

@ -32,9 +32,6 @@ def command(msg, rcpt):
content = sf.getDmzTasks("https://todo.dmz.rs/")
return content
elif msg.startswith("!vreme") or msg.startswith("!prognoza") or msg.startswith("!weather"):
commandsplit = msg.split(" ", 1)
if len(commandsplit) == 1:
return sf.get_weather("Beograd")
else:
query = commandsplit[1]
return sf.get_weather(query)
_, query = msg.split(" ", 1)
return sf.get_weather(query)

View File

@ -51,7 +51,7 @@ def getDmzTasks(url):
def get_weather(city:str) -> str:
url = f"https://wttr.in/{city}?format=3"
if not city.replace(" ","").isalpha():
if not city.isalpha():
return "no such city"
resp = requests.get(url)
return resp.content.decode("utf-8").strip()