Simon Brunning
Simon Brunning
Mmarimo
Created by Simon Brunning on 1/17/2024 in #archived-help-and-support
I'm having some trouble with `mo.ui.
5 replies
Mmarimo
Created by Simon Brunning on 1/17/2024 in #archived-help-and-support
I'm having some trouble with `mo.ui.
Ah - looks like the issue is with large files. Small files work fine, but large ones look like they've uploaded, but things seem to freeze..
5 replies
Mmarimo
Created by Simon Brunning on 1/17/2024 in #archived-help-and-support
I'm having some trouble with `mo.ui.
I am sure I'm doing somethign wrong here.
5 replies
Mmarimo
Created by Simon Brunning on 1/17/2024 in #archived-help-and-support
I'm having some trouble with `mo.ui.
No description
5 replies
Mmarimo
Created by Simon Brunning on 1/17/2024 in #archived-help-and-support
I'm having some trouble with `mo.ui.
I have this simple example:
import marimo

__generated_with = "0.1.78"
app = marimo.App()


@app.cell
def __(mo):
upfile = mo.ui.file(kind="area")
upfile
return upfile,


@app.cell
def __(mo, upfile):
mo.md(f"{upfile=!r} {upfile.name()=!r}")
return


@app.cell
def __():
import marimo as mo
return mo,


if __name__ == "__main__":
app.run()
import marimo

__generated_with = "0.1.78"
app = marimo.App()


@app.cell
def __(mo):
upfile = mo.ui.file(kind="area")
upfile
return upfile,


@app.cell
def __(mo, upfile):
mo.md(f"{upfile=!r} {upfile.name()=!r}")
return


@app.cell
def __():
import marimo as mo
return mo,


if __name__ == "__main__":
app.run()
5 replies