PyWorkflowApp / visual-programming

A Python Visual Programming Workspace for Data Science
MIT License
33 stars 12 forks source link

Upload data files during node config #41

Closed reddigari closed 4 years ago

reddigari commented 4 years ago

(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:

These issues are causing me to cool on the "pass the options dict as kwargs" strategy overall. Thoughts?

reddigari commented 4 years ago

Execution works!! (at least on ReadCsvNode)