n8n-nodes-python-raw
Version:
🚨 WARNING: 100% AI-GENERATED EXPERIMENTAL CODE - HIGH RISK! Use at own risk, not for production. Python execution for n8n with file processing, multiple credentials, debug tools. Personal use only - Commons Clause license.
24 lines • 778 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PythonEnvVars = void 0;
class PythonEnvVars {
constructor() {
this.displayName = 'Python Environment Variables';
this.name = 'pythonEnvVars';
this.properties = [
{
displayName: '.env File Content',
name: 'envFileContent',
typeOptions: {
rows: 10,
},
type: 'string',
default: '',
placeholder: 'HELLO=World!\n',
description: 'The content of the .env file.',
},
];
}
}
exports.PythonEnvVars = PythonEnvVars;
//# sourceMappingURL=PythonEnvVars.credentials.js.map