Can data loaders reference other cells? #81
-
Is it possible for data loader cells to reference other cells? For example, if I have a Python cell of: from datetime import date
print(date.today(), end = "") and name the output |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Not currently. Data loaders are self-contained programs and cannot reference the output of other cells; outputs can only be consumed in non-data loader cells. You can read and write to the file system, or a database, however. It’s possible (even likely) we’ll figure out some way of doing this in the future, but it hasn’t been designed yet. Input welcome! |
Beta Was this translation helpful? Give feedback.
Not currently. Data loaders are self-contained programs and cannot reference the output of other cells; outputs can only be consumed in non-data loader cells. You can read and write to the file system, or a database, however.
It’s possible (even likely) we’ll figure out some way of doing this in the future, but it hasn’t been designed yet. Input welcome!