---------------------- Currently, Wasp is not designed to directly support Python libraries like moviepy. It primarily works with JavaScript-based technologies such as React, Node.js, and Prisma. However, there are a couple of workarounds you could consider:
You could extract your Python code to an executable and then invoke it from Wasp. This is a bit more complicated to set up and might involve running your Python program as a child process from your Wasp server/node code. You can check out this tutorial(https://www.digitalocean.com/community/tutorials/how-to-launch-child-processes-in-node-js) for more information on how to launch child processes in Node.js.
Another option is to deploy your Python program as a separate server. You could wrap your project in Flask or another API library, and then expose the methods you want to access from there. Then, you can use Wasp as a proxy to send HTTP requests to your Python server.
Please note that these are more advanced use cases and might require a good understanding of both Python and JavaScript. Also, keep in mind that there are plans for Wasp to become more language agnostic in the future, which might make it easier to integrate Python libraries directly.
Discord support thread: ChatGPT says ... > Answers(🙋questionsChatGPT says ...) ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ----------------------