Skip to content

Instantly share code, notes, and snippets.

@javierwilson
Created September 27, 2016 14:47
Show Gist options
  • Save javierwilson/0b76b351ef15c69db46c97421517b08a to your computer and use it in GitHub Desktop.
Save javierwilson/0b76b351ef15c69db46c97421517b08a to your computer and use it in GitHub Desktop.
from askbot.models import User
users = User.objects.filter(askbot_profile__reputation=1)
for u in users:
print u
profile = u.askbot_profile
profile.reputation = 100
profile.save()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment