Creating notify methods
parent
1d83938850
commit
cf06f62a8e
|
@ -586,19 +586,43 @@ class Wingui:
|
|||
# Funções Notify
|
||||
def notify_alert(self, t: str, m: str):
|
||||
|
||||
"""Cria um alerta do windows. t é o título, m é o corpo da notificação"""
|
||||
"""
|
||||
## Notify Alert
|
||||
Cria um alerta do windows.
|
||||
|
||||
---
|
||||
Params:
|
||||
- t: Título da notificação.
|
||||
- m: Mensagem exibida pela notificação.
|
||||
---
|
||||
Retorna:
|
||||
|
||||
---
|
||||
"""
|
||||
|
||||
t = urllib.parse.quote(t, "")
|
||||
m = urllib.parse.quote(m, "")
|
||||
return self.__request__("notify/alert?msg={}&title={}".format(m, t))
|
||||
return self.__request__(f"/ipc/wingui/notify/alert?msg={m}&title={t}")
|
||||
|
||||
def notify_notify(self, t: str, m: str):
|
||||
def notify_beep(self, t: str, m: str):
|
||||
|
||||
"""Cria um alerta do windows. t é o título, m é o corpo da notificação"""
|
||||
"""
|
||||
## Notify Alert
|
||||
Cria um alerta do windows.
|
||||
|
||||
---
|
||||
Params:
|
||||
- t: Título da notificação.
|
||||
- m: Mensagem exibida pela notificação.
|
||||
---
|
||||
Retorna:
|
||||
|
||||
---
|
||||
"""
|
||||
|
||||
t = urllib.parse.quote(t, "")
|
||||
m = urllib.parse.quote(m, "")
|
||||
return self.__request__("notify/notify?msg={}&title={}".format(m, t))
|
||||
return self.__request__(f"/ipc/wingui/notify/notify?msg={m}&title={t}")
|
||||
|
||||
# Funções proc
|
||||
def proc_exec(self, cmd: str):
|
||||
|
|
Loading…
Reference in New Issue