@@ -139,6 +139,25 @@ Available Classes
139139 :param int reply_to: The ID of the :py:class: `~botogram.Message ` this one is replying to
140140 :param object extra: An extra reply interface object to attach
141141
142+ .. py :method :: send_video(path, [duration=None , caption=None , reply_to=None , extra=None ])
143+
144+ Send the video found in the *path * to the user. You may optionally
145+ specify the *duration * and the *caption * of the video. If the audio track
146+ you're sending is in reply to another message, set *reply_to * to the ID
147+ of the other :py:class: `~botogram.Message `. *extra * is an optional
148+ object which specifies additional reply interface options on the
149+ recipient's end, and can be one of the following types:
150+
151+ * :py:class: `botogram.ReplyKeyboardMarkup `
152+ * :py:class: `botogram.ReplyKeyboardHide `
153+ * :py:class: `botogram.ForceReply `
154+
155+ :param str path: The path to the video
156+ :param int duration: The video duration, in seconds
157+ :param str caption: The caption of the video
158+ :param int reply_to: The ID of the :py:class: `~botogram.Message ` this one is replying to
159+ :param object extra: An extra reply interface object to attach
160+
142161 .. py :method :: send_file(path, [reply_to=None , extra=None ])
143162
144163 Send the generic file found in the *path * to the user. If the file you're
@@ -289,6 +308,25 @@ Available Classes
289308 :param int reply_to: The ID of the :py:class: `~botogram.Message ` this one is replying to
290309 :param object extra: An extra reply interface object to attach
291310
311+ .. py :method :: send_video(path, [duration=None , caption=None , reply_to=None , extra=None ])
312+
313+ Send the video found in the *path * to the chat. You may optionally
314+ specify the *duration * and the *caption * of the video. If the audio track
315+ you're sending is in reply to another message, set *reply_to * to the ID
316+ of the other :py:class: `~botogram.Message `. *extra * is an optional
317+ object which specifies additional reply interface options on the
318+ recipient's end, and can be one of the following types:
319+
320+ * :py:class: `botogram.ReplyKeyboardMarkup `
321+ * :py:class: `botogram.ReplyKeyboardHide `
322+ * :py:class: `botogram.ForceReply `
323+
324+ :param str path: The path to the video
325+ :param int duration: The video duration, in seconds
326+ :param str caption: The caption of the video
327+ :param int reply_to: The ID of the :py:class: `~botogram.Message ` this one is replying to
328+ :param object extra: An extra reply interface object to attach
329+
292330 .. py :method :: send_file(path, [reply_to=None , extra=None ])
293331
294332 Send the generic file found in the *path * to the chat. If the file you're
@@ -582,6 +620,22 @@ Available Classes
582620 :param int duration: The message duration, in seconds
583621 :param object extra: An extra reply interface object to attach
584622
623+ .. py :method :: send_video(path, [duration=None , caption=None , extra=None ])
624+
625+ Reply with the video found in the *path * to the chat. You may optionally
626+ specify the *duration * and the *caption * of the video. *extra * is an
627+ optional object which specifies additional reply interface options on the
628+ recipient's end, and can be one of the following types:
629+
630+ * :py:class: `botogram.ReplyKeyboardMarkup `
631+ * :py:class: `botogram.ReplyKeyboardHide `
632+ * :py:class: `botogram.ForceReply `
633+
634+ :param str path: The path to the video
635+ :param int duration: The video duration, in seconds
636+ :param str caption: The caption of the video
637+ :param object extra: An extra reply interface object to attach
638+
585639 .. py :method :: reply_with_file(path, [extra=None ])
586640
587641 Reply with the generic file found in the *path * to the chat. If the file
0 commit comments