This issue is for making it possible to import functions directly from marimo notebooks: ```python from notebook import my_function ``` Only "pure" functions will be importable, ie functions that have no refs besides imported modules. Some care will need to be taken to handle modules. A cell that includes a single function def, and nothing more, will be saved in the notebook file as: ```python @app.function def my_function(): ... ``` Discussed on: - Discord Discussion: https://discord.com/channels/1059888774789730424/1059891311190229082/1253813629317288108 - GitHub Discussion: https://github.com/marimo-team/marimo/discussions/2288