[Solved] ValueError: too many values to unpack (Python 2.7)
[ad_1] Check the output of print len(values) It has more than 5 values (which is the number of variables you are trying to “unpack” it to) which is causing your “too many values to unpack” error: username, passwordHash, startRoom, originUrl, bs64encode = values If you want to ignore the tail end elements of your list, … Read more