refac: include packages

This commit is contained in:
Timothy J. Baek 2024-05-18 14:28:16 -07:00
parent 7f90d813bd
commit 8766d2699a

View File

@ -183,7 +183,10 @@
code.includes('bs4') ? 'beautifulsoup4' : null, code.includes('bs4') ? 'beautifulsoup4' : null,
code.includes('numpy') ? 'numpy' : null, code.includes('numpy') ? 'numpy' : null,
code.includes('pandas') ? 'pandas' : null, code.includes('pandas') ? 'pandas' : null,
code.includes('matplotlib') ? 'matplotlib' : null code.includes('matplotlib') ? 'matplotlib' : null,
code.includes('scikit-learn') ? 'sklearn' : null,
code.includes('scipy') ? 'scipy' : null,
code.includes('re') ? 'regex' : null
].filter(Boolean); ].filter(Boolean);
console.log(packages); console.log(packages);
@ -230,7 +233,9 @@ __builtins__.input = input`);
code.includes('bs4') ? 'beautifulsoup4' : null, code.includes('bs4') ? 'beautifulsoup4' : null,
code.includes('numpy') ? 'numpy' : null, code.includes('numpy') ? 'numpy' : null,
code.includes('pandas') ? 'pandas' : null, code.includes('pandas') ? 'pandas' : null,
code.includes('matplotlib') ? 'matplotlib' : null code.includes('scikit-learn') ? 'sklearn' : null,
code.includes('scipy') ? 'scipy' : null,
code.includes('re') ? 'regex' : null
].filter(Boolean); ].filter(Boolean);
const pyodideWorker = new PyodideWorker(); const pyodideWorker = new PyodideWorker();