Just save this as karma.py and run it with Python 3.6 or higher.

import requests
import math

INSTANCE_URL = "https://feddit.de"
TARGET_USER = "ENTER_YOUR_USERNAME_HERE"

LIMIT_PER_PAGE = 50

res = requests.get(f"{INSTANCE_URL}/api/v3/user?username={TARGET_USER}&limit={LIMIT_PER_PAGE}").json()

totalPostScore = 0
totalCommentScore = 0
page = 1
while len(res["posts"])+len(res["comments"]) > 0:
	totalPostScore += sum([ x["counts"]["score"] for x in res["posts"] ])
	totalCommentScore += sum([ x["counts"]["score"] for x in res["comments"] ])
	
	page += 1
	res = requests.get(f"{INSTANCE_URL}/api/v3/user?username={TARGET_USER}&limit={LIMIT_PER_PAGE}&page={page}").json()

print("Post karma:    ", totalPostScore)
print("Comment karma: ", totalCommentScore)
print("Total karma:   ", totalPostScore+totalCommentScore)
  • nlm@beehaw.org
    link
    fedilink
    arrow-up
    26
    ·
    1 year ago

    Nice job and all… but I really wish this wasn’t a thing.

    Karma is something that should stay behind at Reddit imho, it just fosters karma whoring instead of actually contributing to a discussion.

    That’s one of the things I liked best when I joined Lemmy, that there wasn’t a visible karma counter on people’s profiles.

    Anyway… rant mode off.

    Still, neat job!

      • SenorBolsa@beehaw.org
        link
        fedilink
        arrow-up
        3
        ·
        1 year ago

        I’m probably going to do the same. I should just be confident in what I’m saying, at least to a reasonable degree, and not worry if others feel like they agree. (I’m pretty sure I’m mostly cool) but it is also nice to have a way of posting a simple positive reaction to a post without clogging up the thread with. “nice” “I agree” “cool beans” etc.

    • Square Singer@feddit.deOP
      link
      fedilink
      arrow-up
      1
      ·
      1 year ago

      I get the reasoning, I’ve read the discussions. Still I like the karma thing, not for showing it to other people, but to give me an overview over what I’ve been doing so far. It’s kinda an activity meter for me, and a bit of feedback on how my posts are doing.

      I am on Stackoverflow, and obviously I was on Reddit. While I was there, I never actually looked at other people’s karma, but my karma motivated me to be more engaged.

      • nlm@beehaw.org
        link
        fedilink
        arrow-up
        5
        ·
        1 year ago

        I can see the appeal… I just don’t like it myself. It’s so easy for it to become a measuring stick or something you actually try to boost.

        For me the number of posts and comments on the profile is good enough :)

      • Leafeytea@beehaw.org
        link
        fedilink
        arrow-up
        1
        ·
        edit-2
        1 year ago

        There are plenty of other ways to track how your posts are doing though, if by that you mean relevance, exposure, engagements, etc. On this, it was at least one aspect of positives that Twitter offered in terms of their Analytics feature. I guess we don’t have the tools for something like that here but it might be a nice middle ground.

        For me, the entire concept of Karma from a Reddit fashion is that it completely blows up any notion of genuine discussions. It too often lead to people fishing for approval vs saying what they actually believe. Too many like minded people also following and posting after each other, ganging up on opinions opposite their own, hive mind issues everywhere. I tried to comment something similar about this on Kbin and immediately got down-voted for it, so it was pretty clear to me there are people who don’t want to be told their karma was not a real measure of their value, nor of their contributions to the site.