Reputation: 4652
So I want to use this python project https://github.com/m-bain/whisperX and access it in my nodejs project.
I am thinking of using python-shell but I am not really sure what "py" file to target since this is a github project. I am not a python guy so I am just generally confused on how to include that in my project and access whisperx
"command" (using https://nodejs.org/api/child_process.html#child_processexecsynccommand-options).
ChatGPT told me to clone the github repo to my repo then access it, but if I do that, I still don't know which 'py' file to target. Do I have to "bundle" it as a single .py file somehow?
Upvotes: 0
Views: 99
Reputation: 931
Python projects generally have a main
file that can be used to run the code.
For the specific repo you linked, this file can be found at whisperx/__main__.py
. From what I can tell, that should provide you with a CLI, thus exposing the command you are looking for.
Upvotes: 0