Good way of Editing Tags?

I use Excel in combo with a python script to create bulk tags like this, where I can create udts and write to their parameters.
I use excel only to create the table, then copy the table and let python read the clipboard and create or write to the tags. Writing to tags is far easier than creating them, and since you've already got yours created, you can just write to them. To set udt paramaters, you can write to 'path/to/udtinstance/Parameters/Message00'

Eg
system.tag.writeBlocking('path/to/udtinstance/Parameters/Message00', 'hello')

The function I use to read the clipboard I posted here