Spaces:
Runtime error
Runtime error
File size: 232 Bytes
9f9394b | 1 2 3 4 5 6 7 8 9 10 | #
# SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
# SPDX-License-Identifier: Apache-2.0
#
import base64
async def convert_to_base64(binary_data):
encoded = base64.b64encode(binary_data)
return encoded.decode('utf-8') |