Skip to content

Module nonebot_plugin_marshoai.tools.marshoai_megakits


async func twisuki()

Source code or View on GitHub
python
async def twisuki():
    return str(await mk_info.twisuki())

async func megakits()

Source code or View on GitHub
python
async def megakits():
    return str(await mk_info.megakits())

async func random_turntable(upper: int, lower: int = 0)

Source code or View on GitHub
python
async def random_turntable(upper: int, lower: int=0):
    return str(await mk_common.random_turntable(upper, lower))

async func number_calc(a: str, b: str, op: str)

Source code or View on GitHub
python
async def number_calc(a: str, b: str, op: str):
    return str(await mk_common.number_calc(a, b, op))

async func morse_encrypt(msg: str)

Source code or View on GitHub
python
async def morse_encrypt(msg: str):
    return str(await mk_morse_code.morse_encrypt(msg))

async func morse_decrypt(msg: str)

Source code or View on GitHub
python
async def morse_decrypt(msg: str):
    return str(await mk_morse_code.morse_decrypt(msg))

async func nya_encode(msg: str)

Source code or View on GitHub
python
async def nya_encode(msg: str):
    return str(await mk_nya_code.nya_encode(msg))

async func nya_decode(msg: str)

Source code or View on GitHub
python
async def nya_decode(msg: str):
    return str(await mk_nya_code.nya_decode(msg))

The document is being improved. Suggestions are welcome.