File size: 258 Bytes
561cd5b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | from ubot import *
__MODULE__ = "Read"
__HELP__ = """Help For Ocr
• Command : <code>{0}ocr</code> [media reply]
• Explanation : To read text from media.
"""
@PY.UBOT("ocr", sudo=True)
async def _(client, message):
await read_cmd(client, message)
|