We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff3cbaf commit cb0256bCopy full SHA for cb0256b
telebot/__init__.py
@@ -351,6 +351,9 @@ def get_me(self):
351
def get_file(self, file_id):
352
return types.File.de_json(apihelper.get_file(self.token, file_id))
353
354
+ def get_file_url(self, file_id):
355
+ return apihelper.get_file_url(self.token, file_id)
356
+
357
def download_file(self, file_path):
358
return apihelper.download_file(self.token, file_path)
359
0 commit comments