Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 699811
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T03:25:39+00:00 2026-05-14T03:25:39+00:00

I want users to receive ‘points’ for completing various tasks in my application –

  • 0

I want users to receive ‘points’ for completing various tasks in my application – ranging from tasks such as tagging objects to making friends. I havn’t yet found a Django application that simplifies this.

At the moment I’m thinking that the best way to accumulate points is that each user action creates the equivalent of a “stream item”, and the points are calculated through counting the value of each action published to their stream.

Obviously social game mechanics is a huge area with a lot of research going on at the moment. But from a development perspective what’s the easiest way to get started? Am I on the wrong track or are there better / simpler ways?

Edit: for anyone that wants a very simple implementation of this:

For anyone that would be interested in a very simple implementation of this idea try creating a “logging” application and putting this in your models.py:

log_models = [Tag, Post, Vote]

class Point(models.Model):
    # model fields

def increase_score(sender, instance, signal, *args, **kwargs):
    # score logic

for model in log_models:
    post_save.connect(increase_score, sender=model)
    post_delete.connect(decrease_score, sender=model)

Refer to this doc if you find that post_save is emitting twice: http://code.djangoproject.com/wiki/Signals#Helppost_saveseemstobeemittedtwiceforeachsave

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T03:25:40+00:00Added an answer on May 14, 2026 at 3:25 am

    “Stream item”? Never heard that before.

    “Log” makes sense. It sounds like you’re going to log events in a table. Sum or count the logged events. That’s the simplest and most extensible.

    You can summarize periodically (hourly for big social crowds, daily for small crowds).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

There's this Excel file I want users to be able to download from my
I want to detect users' screen size and pass this into a charting application
I want to model messages between users, here is the requirement: User has received
I have a page with a number of ListViews that I want users to
I have several WPF apps, and I want users to be able to log
I want my users to be able to do a rubberband selection in a
I want to allow users to upload avatar-type images in a variety of formats
I want to let users specify a date that may or may not include
I want to allow users to paste <embed> and <object> HTML fragments (video players)
I want to warn users of Internet Explorer 6 using my site, that IE6

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.