Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

import Python modules in py_scripts directory #10

Open
vpanchal-code opened this issue May 8, 2023 · 1 comment
Open

import Python modules in py_scripts directory #10

vpanchal-code opened this issue May 8, 2023 · 1 comment

Comments

@vpanchal-code
Copy link

I have the following a test.py script in my py_scripts directory, How can I import the test.py script using the python function node.

@vpanchal-code
Copy link
Author

I tried to change the working dir and then import the test.py:

import os
os.chdir('/data/py_scripts')
import test

But still getting the following error:

NodeOperationError: exitCode: 1 Traceback (most recent call last):
  File "/tmp/f18afa421bb8b17da6d18ee9b7643867.py", line 29, in <module>
    fire.Fire(main)
  File "/usr/local/lib/python3.10/site-packages/fire/core.py", line 141, in Fire
    component_trace = _Fire(component, args, parsed_flag_args, context, name)
  File "/usr/local/lib/python3.10/site-packages/fire/core.py", line 475, in _Fire
    component, remaining_args = _CallAndUpdateTrace(
  File "/usr/local/lib/python3.10/site-packages/fire/core.py", line 691, in _CallAndUpdateTrace
    component = fn(*varargs, **kwargs)
  File "/tmp/f18afa421bb8b17da6d18ee9b7643867.py", line 20, in main
    new_items = snippet_runner(items, env_vars)
  File "/tmp/f18afa421bb8b17da6d18ee9b7643867.py", line 13, in snippet_runner
    import test
ModuleNotFoundError: No module named 'test'

    at Object.execute (/usr/lib/node_modules/n8n/node_modules/n8n-nodes-python/nodes/PythonFunction/PythonFunction.node.ts:107:11)
    at processTicksAndRejections (node:internal/process/task_queues:95:5)
    at Workflow.runNode (/usr/lib/node_modules/n8n/node_modules/n8n-workflow/src/Workflow.ts:1263:19)
    at /usr/lib/node_modules/n8n/node_modules/n8n-core/src/WorkflowExecute.ts:951:29

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant