mirror of
https://github.com/Nick80835/microbot
synced 2025-08-31 06:26:04 +00:00
corona
This commit is contained in:
@@ -4,12 +4,20 @@ import inspect
|
|||||||
import io
|
import io
|
||||||
|
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
|
from requests import get
|
||||||
|
|
||||||
from ubot.micro_bot import micro_bot
|
from ubot.micro_bot import micro_bot
|
||||||
|
|
||||||
ldr = micro_bot.loader
|
ldr = micro_bot.loader
|
||||||
|
|
||||||
|
|
||||||
|
@ldr.add(pattern="corona")
|
||||||
|
async def corona(event):
|
||||||
|
corona_data = get("https://corona.lmao.ninja/all").json()
|
||||||
|
response_text = f"`Cases: `**{corona_data['cases']}**\n`Deaths: `**{corona_data['deaths']}**\n`Recoveries: `**{corona_data['recovered']}**"
|
||||||
|
await event.reply(response_text)
|
||||||
|
|
||||||
|
|
||||||
@ldr.add(pattern="chatid")
|
@ldr.add(pattern="chatid")
|
||||||
async def chatidgetter(event):
|
async def chatidgetter(event):
|
||||||
if event.is_reply:
|
if event.is_reply:
|
||||||
|
Reference in New Issue
Block a user