I'm trying to sort a list of posts where votes have priority over the date.
I have my own app called UserPost and I'm using the django-voting app to do votes.
class UserPost(models.Model):
user = models.ForeignKey(User)
datetime = models.DateTimeField(auto_now_add=True)
text = models.CharField(max_length=255, blank=True)
is_deleted = models.BooleanField(default=False)
vote = models.ForeignKey(Vote)
Right now, I'm sorting without votes taking precedence yet:
posts_list = sorted(posts_list, key=attrgetter('datetime'))
What's the best way to go about this?
Thanks!
posts_list.sort(key=attrgetter('datetime'))instead of using thesortedbuilt-in function. Thesortedfunction will create a copy of the list, while thesortmethod of a list sorts the list in-place and is slightly faster (and uses approximately half as much memory). – mlefavor Jan 4 at 3:42