For caching purposes I need to generate a cache key from GET arguments which are present in a dict.
Currently I’m using sha1(repr(sorted(my_dict.items())))
(sha1()
is a convenience method that uses hashlib internally) but I’m curious if there’s a better way.