this post was submitted on 28 Jun 2023
33 points (100.0% liked)

Technology

38120 readers
47 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 3 years ago
MODERATORS
 

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)
you are viewing a single comment's thread
view the rest of the comments
[–] petrescatraian@libranet.de 2 points 2 years ago* (last edited 2 years ago) (1 children)

@squaresinger that's what I was looking for, haha. Thanks for running this for me!

Edit: my oldest/main Reddit profile is from 2015 and I have ~19.000 total karma. I am on fedi for one year and I already have more than 10% of that amount. I'm quite impressed.

[–] squaresinger@feddit.de 2 points 2 years ago (1 children)

No problem!

You might want to checkout this post: https://feddit.de/post/1185964

I made a Tampermonkey version of this. Just download the Tampermonkey extension for your browser, paste the script from the link to it, put in your user name and instance URL and it will show your karma next to your user name in the top right of the page.

[–] petrescatraian@libranet.de 2 points 2 years ago (1 children)

@squaresinger never tried tampermonkey before. But it's wonderful 😁

[–] squaresinger@feddit.de 1 points 2 years ago

Hardly used it before, but it's a really good extension.