MS SQL files are recorded in MySQL BLOB fields. How can I transfer this data to the user without intermediate storage? That is, probably using io.BytesIO.
# пусть переменная bin_data содержит двоичные данные из ячейки (BLOB) таблицы buffer = io.Bytes() buffer.write(bin_data) Then the user must send a link or a request to save the file in Excel format containing this data to the browser.