Spaces:
Runtime error
Runtime error
| # | |
| # 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') |