I\'ve been trying to find a more pythonic way of generating random string in python that can scale as well. Typically, I see something similar to
\'\'.join(r
It seems the fromhex() method expects an even number of hex digits. Your string is 75 characters long. Be aware that something[:-1] excludes the last element! Just use something[:].
fromhex()
something[:-1]
something[:]