mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2023-08-10 21:12:57 +03:00
Fixes #1944: uploading file from memory
This commit is contained in:
parent
af3a98057f
commit
916569cdc5
@ -7250,7 +7250,7 @@ class InputFile:
|
|||||||
_file = open(file, 'rb')
|
_file = open(file, 'rb')
|
||||||
return _file, os.path.basename(_file.name)
|
return _file, os.path.basename(_file.name)
|
||||||
elif isinstance(file, IOBase):
|
elif isinstance(file, IOBase):
|
||||||
return file, os.path.basename(file.name)
|
return file, service_utils.generate_random_token()
|
||||||
elif isinstance(file, Path):
|
elif isinstance(file, Path):
|
||||||
_file = open(file, 'rb')
|
_file = open(file, 'rb')
|
||||||
return _file, os.path.basename(_file.name)
|
return _file, os.path.basename(_file.name)
|
||||||
@ -7742,4 +7742,4 @@ class InlineQueryResultsButton(JsonSerializable, Dictionaryable):
|
|||||||
return json_dict
|
return json_dict
|
||||||
|
|
||||||
def to_json(self) -> str:
|
def to_json(self) -> str:
|
||||||
return json.dumps(self.to_dict())
|
return json.dumps(self.to_dict())
|
||||||
|
Loading…
Reference in New Issue
Block a user