59 lines
1.9 KiB
Python
59 lines
1.9 KiB
Python
import base64
|
|
from typing import Any, Optional, Tuple, Union
|
|
|
|
from ...api.file.create_file_conversion import asyncio as fc_asyncio, sync as fc_sync
|
|
from ...client import Client
|
|
from ...models import Error, FileConversion, FileExportFormat, FileImportFormat
|
|
|
|
|
|
def sync(
|
|
src_format: FileImportFormat,
|
|
output_format: FileExportFormat,
|
|
body: bytes,
|
|
*,
|
|
client: Client,
|
|
) -> Optional[Union[Any, Tuple[FileConversion, bytes], Error]]:
|
|
"""Convert a CAD file from one format to another. If the file being converted is larger than a certain size it will be performed asynchronously. This function automatically base64 encodes the request body and base64 decodes the request output."""
|
|
|
|
encoded = base64.b64encode(body)
|
|
|
|
fc = fc_sync(
|
|
src_format=src_format,
|
|
output_format=output_format,
|
|
body=encoded,
|
|
client=client,
|
|
)
|
|
|
|
if isinstance(fc, FileConversion) and fc.output != "":
|
|
if isinstance(fc.output, str):
|
|
b = base64.urlsafe_b64decode(fc.output.strip("=") + "===")
|
|
return (fc, b)
|
|
|
|
return fc
|
|
|
|
|
|
async def asyncio(
|
|
src_format: FileImportFormat,
|
|
output_format: FileExportFormat,
|
|
body: bytes,
|
|
*,
|
|
client: Client,
|
|
) -> Optional[Union[Any, Tuple[FileConversion, bytes], Error]]:
|
|
"""Convert a CAD file from one format to another. If the file being converted is larger than a certain size it will be performed asynchronously. This function automatically base64 encodes the request body and base64 decodes the request output."""
|
|
|
|
encoded = base64.b64encode(body)
|
|
|
|
fc = await fc_asyncio(
|
|
src_format=src_format,
|
|
output_format=output_format,
|
|
body=encoded,
|
|
client=client,
|
|
)
|
|
|
|
if isinstance(fc, FileConversion) and fc.output != "":
|
|
if isinstance(fc.output, str):
|
|
b = base64.urlsafe_b64decode(fc.output.strip("=") + "===")
|
|
return (fc, b)
|
|
|
|
return fc
|