WolframWebEngineForPython
WolframWebEngineForPython copied to clipboard
Integrates the Wolfram Language seamlessly with Python AIOHTTP
The current `README.md` file states that > The commands above do not include activation/licensing configuration; see the official Wolfram Engine Docker image for information on activating the Wolfram Engine kernel....
Is it possible to influence client_max_size used by aiohttp? Currently relatively large files (more than 1MB encoded) can't be uploaded. ```wl FormFunction[{"file" -> "CachedFile"},ToString[#file]&] ```
Here is simple example of what I am doing: ``` APIFunction[ {}, If[HTTPRequestData["Method"] === "GET", "400 Bad Request", ExportForm[HTTPRequestData["Body"], "JSON"] ]& ] ``` I pass the following JSON object to...
On Wolfram Engine version 14.0, when trying to return an Image or its Base64 encoded version using ExportString/ExportForm, the kernel keeps evaluating the request forever. For example, this one keeps...