4
submitted 1 year ago* (last edited 1 year ago) by squaresinger@feddit.de to c/technology@beehaw.org

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

l = Lemmy(INSTANCE_URL)

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)
you are viewing a single comment's thread
view the rest of the comments
[-] Sal@mander.xyz 1 points 1 year ago* (last edited 1 year ago)

I think you left this line behind by accident:

l = Lemmy(INSTANCE_URL)

[-] squaresinger@feddit.de 0 points 1 year ago

You are right, I removed it ~20min before you posted, though. So I guess, the change wasn't synced to your instance yet. Interesting, that the syncing can take that long.

[-] Sal@mander.xyz 1 points 1 year ago

Yeah, I still see the line now. I am not sure if this was a one-off, maybe the edit occurred when I rebooted the instance for a moment and the edit fell through the cracks... Or there might be an actual issue federating edits.

load more comments (1 replies)
load more comments (1 replies)
this post was submitted on 28 Jun 2023
4 points (100.0% liked)

Technology

37660 readers
307 users here now

A nice place to discuss rumors, happenings, innovations, and challenges in the technology sphere. We also welcome discussions on the intersections of technology and society. If it’s technological news or discussion of technology, it probably belongs here.

Remember the overriding ethos on Beehaw: Be(e) Nice. Each user you encounter here is a person, and should be treated with kindness (even if they’re wrong, or use a Linux distro you don’t like). Personal attacks will not be tolerated.

Subcommunities on Beehaw:


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

founded 2 years ago
MODERATORS