Hello, I am new to plotly.
I want to ask is there any way to edit the file uploaded using dcc.Upload component?
Thanks!
Hello, I am new to plotly.
I want to ask is there any way to edit the file uploaded using dcc.Upload component?
Thanks!
@Yuechean if you read the upload documentation. In a dash callback, you have full access to the contents
property, i.e. you can modify the content, save it locally or even send it to a database, there is no real limitation on how you manipulate the data.
Thank you very much!