Rating Web creation in python dash

Hi,

I am new in python. I want to develop web app where there will be option for the user to rate number of movie and I can store the rating of each movie given by the user in a dictionary for that user. Can u help how to store input rating given in text box.

You can get the value of a textbox by using a dcc.Input object, and setting a callback having as input the value of your dcc.Input textbox. From there you can store it wherever you want.