I have to create a unique order_reference field.
I read that I should use UUID for that. Can you recommend that? And is that here the right approach to it? (I found this snippet in another project)
uuid.UUID(bytes=base64.urlsafe_b64decode('%s==‘ % base64_uuid))
I don't understand what urlsafe_b64decode is doing.