Skip to content

Instantly share code, notes, and snippets.

View adelriosantiago's full-sized avatar
🏠
Working from home

Alejandro adelriosantiago

🏠
Working from home
View GitHub Profile
@adelriosantiago
adelriosantiago / gist:4d85182b06ba8a745a8c2c9faf83f9d1
Created June 30, 2024 00:15
Run and watch a python script from Node
const chokidar = require("chokidar")
const { PythonShell } = require("python-shell")
let pyshell
const scriptName = "script.py"
// Function to run Python scripts
const runPythonScript = () => {
pyshell = new PythonShell(scriptName, {
pythonPath: "./venv/Scripts/python", // Specify the path to your Python environment