Can we import a custom package created in one Code Engine to another Code Engine?

I want to know if it is possible to create a local Python package in one Code Engine of Domo, then import and reuse it in another Code Engine.

For example:

  • Create functions or a custom package in a first Code Engine.
  • Share this code with another Code Engine to avoid duplication.

Is there a native way or alternative approaches to reuse code between multiple Code Engines in Domo? If so, what would be the best practice to achieve this?

Tagged:

Best Answers

  • MattTheGuru
    MattTheGuru Contributor
    Answer ✓

    @Makam there is no direct, “native” Domo feature to share code between Code Engines. Instead, the best practice is to maintain a single external repository or private package index for your shared code. Then, each Code Engine environment can fetch and install that code as part of its setup, ensuring code consistency and maintainability across all of your Domo projects.

    I have used CDNs like https://www.jsdelivr.com/ for importing NPM packages.

    ** Was this post helpful? Click 💡/💖/👍/😊 below. **
    ** If it solved your problem. Accept it as a solution! ✔️ **

    Or do you need more help? https://calendly.com/matthew-kastner/15-minute-chat
    Did I help you out? Feedback is priceless and will help me more than you know.Write a review!

  • Makam
    Makam Member
    Answer ✓

    Ok thank you very much for your reply

Answers

  • MattTheGuru
    MattTheGuru Contributor
    Answer ✓

    @Makam there is no direct, “native” Domo feature to share code between Code Engines. Instead, the best practice is to maintain a single external repository or private package index for your shared code. Then, each Code Engine environment can fetch and install that code as part of its setup, ensuring code consistency and maintainability across all of your Domo projects.

    I have used CDNs like https://www.jsdelivr.com/ for importing NPM packages.

    ** Was this post helpful? Click 💡/💖/👍/😊 below. **
    ** If it solved your problem. Accept it as a solution! ✔️ **

    Or do you need more help? https://calendly.com/matthew-kastner/15-minute-chat
    Did I help you out? Feedback is priceless and will help me more than you know.Write a review!

  • Makam
    Makam Member
    Answer ✓

    Ok thank you very much for your reply