Is there a way to save (with TinyDB) many values easier than create a block for each one?

Hello
IS THERE A WAY TO SAVE (with TinyDb) MANY VALUES EASIER THAN CREATE A BLOCK FOR EACH ONE?
For example below, for 5 tags I have to create 5 blocks. If I were 20 would I do the same again?

1 Like

Sure.

Sample projects:

Also please do not use caps in title and post. It seems to me that you are shouting

2 Likes

to store a lot of value you don't have to do that.
you just need to put everything in a list like this :

blocks

and then if you want to get the data from the list you just have to do this :

blocks (1)

blocks (2)

These blocks will store individual tags and values to a tinydb from a list of lists

image

You could also just read in the data from a file, and avoid having the data in blocks anywhere upstream.