Home > Back-end >  Can we use Python modules with Apache Cordova?
Can we use Python modules with Apache Cordova?

Time:10-21

I've been building an application using Apache Cordova - it's actually based on machine learning, but all my machine learning prototyping has been done in Python.

Is there a way I could incorporate my Python libraries (like scikit-learn) into my Apache Cordova app, or is there something else I should include?

Thank you, any help would be appreciated!

CodePudding user response:

No, you can't embed a programming language as a plugin for Cordova. You can however do a remote call to a server running python.

  • Related