Closed reddigari closed 4 years ago
create_node
view helper to replace options representing files with the fully-specified FileStorage path so execute()
can find the fileReadCsvNode.execute()
to not pass the description as a keyword arg.Execution works!! (at least on ReadCsvNode)
(This includes the commits from #40, so it will look much cleaner after that one is merged.)
When file is selected from configuration menu, it is uploaded to the server and saved with the filename:
<node ID>-<original name>.<original_extension>
. The configuration form submit button is disabled until the server responds. The parameter to which the file corresponds (e.g.filepath_or_buffer
is given the value of the filename on the server.This brought to my attention a couple of execution bugs:
/tmp
prefix, so pandas cannot find it. We will need to add a step in the node update view that replaces the value with the fully qualified FileStorage name~.description
is not a valid keyword arg.~These issues are causing me to cool on the "pass the options dict as kwargs" strategy overall. Thoughts?