pyrogram/compiler/api/template/mtproto.txt

31 lines
538 B
Plaintext
Raw Normal View History

2017-12-05 11:16:39 +00:00
{notice}
from io import BytesIO
from pyrogram.api.core import *
class {class_name}(Object):
2018-03-26 11:51:56 +00:00
"""{docstring_args}
2018-01-03 16:40:38 +00:00
"""
2017-12-05 11:16:39 +00:00
2019-03-16 14:30:55 +00:00
__slots__ = [{slots}]
ID = {object_id}
2019-03-16 14:30:55 +00:00
QUALNAME = "{qualname}"
def __init__(self{arguments}):
2017-12-05 11:16:39 +00:00
{fields}
@staticmethod
def read(b: BytesIO, *args) -> "{class_name}":
2017-12-05 11:16:39 +00:00
{read_types}
return {class_name}({return_arguments})
def write(self) -> bytes:
b = BytesIO()
b.write(Int(self.ID, False))
{write_types}
return b.getvalue()