comando django para buscar todas as colunas de uma tabela
table = Country.objects.values_list('name_of_the_country', 'country_code')
Dangerous Dove
table = Country.objects.values_list('name_of_the_country', 'country_code')