help to deal with registration on the site (Django) through VKontakte. As I understand it, you first need to get information about the user through api vk (first name, last name, id, email, etc.). What to do next with this data? Use them to create a user in the django database?
user = User.objects.create_user ('foo', password = 'bar')
But where to get the password and what to use as a name?