import aiohttp
from pyrogram import enums, filters
from pyrogram.errors import MessageTooLong
from misskaty import app
from misskaty.helper.tools import rentry
from misskaty.vars import COMMAND_HANDLER
__MODULE__ = "CodeTester"
__HELP__ = """
This feature allows you to run multiple programming languages through this bot via the Glot.io api. The following is a list of supported languages, for temporary commands only support with a "!" like the example below.
List of Supported Programming Languages:
~> assembly
~> ats
~> bash
~> c
~> clojure
~> cobol
~> coffeescript
~> cpp
~> crystal
~> csharp
~> d
~> elixir
~> elm
~> erlang
~> fsharp
~> go
~> groovy
~> haskell
~> idris
~> java
~> javascript
~> julia
~> kotlin
~> lua
~> mercury
~> nim
~> nix
~> ocaml
~> perl
~> php
~> python
~> raku
~> ruby
~> rust
~> scala
~> swift
~> typescript
**Example:**
~> `!python print("Hai aku MissKatyRoBot")`
"""
async def listcode():
async with aiohttp.ClientSession() as session:
r = await session.get("https://glot.io/api/run")
return await r.json()
async def glot(lang, langcode, code):
async with aiohttp.ClientSession() as session:
data = {"files": [{"name": f"misskaty.{langcode}", "content": code}]}
headers = {
"content-type": "application/json",
"Authorization": "Token b8a2b75a-a078-4089-869c-e53d448b1ebb",
}
r = await session.post(
f"https://glot.io/api/run/{lang}/latest", headers=headers, json=data
)
return await r.json()
@app.on_message(filters.command(["codelist"], COMMAND_HANDLER))
async def list_lang(_, message):
daftarlang = await listcode()
list_ = "".join(f"~> {i['name']}\n" for i in daftarlang)
return await message.reply(
f"List of Supported Programming Languages:\n{list_}"
)
@app.on_message(filters.command(["assembly"], "!"))
@app.on_edited_message(filters.command(["assembly"], "!"))
async def assembly(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "asm", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["ats"], "!"))
@app.on_edited_message(filters.command(["ats"], "!"))
async def ats(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "dats", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["bash"], "!"))
@app.on_edited_message(filters.command(["bash"], "!"))
async def bash(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "sh", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["c"], "!"))
@app.on_edited_message(filters.command(["c"], "!"))
async def c(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "c", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["clojure"], "!"))
@app.on_edited_message(filters.command(["clojure"], "!"))
async def clojure(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "clj", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["cobol"], "!"))
@app.on_edited_message(filters.command(["cobol"], "!"))
async def cobol(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "cob", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["coffeescript"], "!"))
@app.on_edited_message(filters.command(["coffeescript"], "!"))
async def coffeescript(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "coffee", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["cpp"], "!"))
@app.on_edited_message(filters.command(["cpp"], "!"))
async def cpp(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "cpp", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["crystal"], "!"))
@app.on_edited_message(filters.command(["crystal"], "!"))
async def crystal(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "cr", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["csharp"], "!"))
@app.on_edited_message(filters.command(["csharp"], "!"))
async def csharp(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "cs", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["d"], "!"))
@app.on_edited_message(filters.command(["d"], "!"))
async def d(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "d", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["elixir"], "!"))
@app.on_edited_message(filters.command(["elixir"], "!"))
async def elixir(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "ex", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["elm"], "!"))
@app.on_edited_message(filters.command(["elm"], "!"))
async def elm(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "elm", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["erlang"], "!"))
@app.on_edited_message(filters.command(["erlang"], "!"))
async def erlang(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "erl", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["fsharp"], "!"))
@app.on_edited_message(filters.command(["fsharp"], "!"))
async def fsharp(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "fs", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["go"], "!"))
@app.on_edited_message(filters.command(["go"], "!"))
async def go(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "go", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["groovy"], "!"))
@app.on_edited_message(filters.command(["groovy"], "!"))
async def groovy(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "groovy", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["haskell"], "!"))
@app.on_edited_message(filters.command(["haskell"], "!"))
async def haskell(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "hs", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["idris"], "!"))
@app.on_edited_message(filters.command(["idris"], "!"))
async def idris(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "idr", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["java"], "!"))
@app.on_edited_message(filters.command(["java"], "!"))
async def java(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "java", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["javascript"], "!"))
@app.on_edited_message(filters.command(["javascript"], "!"))
async def javascript(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "js", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["julia"], "!"))
@app.on_edited_message(filters.command(["julia"], "!"))
async def julia(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "jl", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["kotlin"], "!"))
@app.on_edited_message(filters.command(["kotlin"], "!"))
async def kotlin(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "kt", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["lua"], "!"))
@app.on_edited_message(filters.command(["lua"], "!"))
async def lua(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "lua", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["mercury"], "!"))
@app.on_edited_message(filters.command(["mercury"], "!"))
async def mercury(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "m", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["nim"], "!"))
@app.on_edited_message(filters.command(["nim"], "!"))
async def nim(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "nim", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["nix"], "!"))
@app.on_edited_message(filters.command(["nix"], "!"))
async def nix(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "nix", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["ocaml"], "!"))
@app.on_edited_message(filters.command(["ocaml"], "!"))
async def ocaml(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "ml", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["perl"], "!"))
@app.on_edited_message(filters.command(["perl"], "!"))
async def perl(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "pl", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["php"], "!"))
@app.on_edited_message(filters.command(["php"], "!"))
async def php(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "php", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["python"], "!"))
@app.on_edited_message(filters.command(["python"], "!"))
async def python(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "py", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["raku"], "!"))
@app.on_edited_message(filters.command(["raku"], "!"))
async def raku(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "raku", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["ruby"], "!"))
@app.on_edited_message(filters.command(["ruby"], "!"))
async def ruby(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "rb", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["rust"], "!"))
@app.on_edited_message(filters.command(["rust"], "!"))
async def rust(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "rs", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["scala"], "!"))
@app.on_edited_message(filters.command(["scala"], "!"))
async def scala(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "scala", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["swift"], "!"))
@app.on_edited_message(filters.command(["swift"], "!"))
async def swift(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "swift", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)
@app.on_message(filters.command(["typescript"], "!"))
@app.on_edited_message(filters.command(["typescript"], "!"))
async def typescript(_, message):
if len(message.command) < 2:
return await message.reply("Please enter the code you want to run.")
res = await glot(message.command[0], "ts", message.text.split(None, 1)[1])
hasil = res["stdout"] or res["stderr"]
hasil = f"Result :\n{hasil}"
try:
return await message.reply(hasil, parse_mode=enums.ParseMode.DISABLED)
except MessageTooLong:
post = await rentry(hasil)
return await message.reply(f"View Result in Rentry:\n{post}")
except Exception as e:
return await message.reply(e, parse_mode=enums.ParseMode.DISABLED)