1
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

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
[-] maegul@lemmy.ml 1 points 1 year ago* (last edited 1 year ago)

Yea, as said by @nlm@beehaw.org it's best that reddit is just left behind ... we don't need to recreate everything it did, and there's plenty of scope to try and create new things here on the fediverse not seen before or, at least to make lemmy better in lots of ways that make sense.

Alternative web-based PWA front ends, community discovery, contributing to the source code of the platform itself, moderation tooling (a big one), making donations easier for users, devs and admins (big one too), documentation and tutorials for new users or those looking to use the API (bet you're well placed for that one) ... etc.

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

Yeah, this was just a little exercise while getting into the API. I'm looking into making a simple mod bot, if I actually get around to it.

Regarding Karma: I don't care at all for other peoples' karma. Never have, also on Reddit and Stackexchange.

But I do like to kinda see my progress. With Karma I can see how well I am doing in the community in general. And it motivates me to put out more decent content.

I don't really get Karma farming though. Karma is inherently meaningless, so there is no reason to farm it.

[-] maegul@lemmy.ml 0 points 1 year ago

I'm with you (and I hope my post didn't come of as too harsh ... you're making tools for users which is awesome!).

And you're right to point out that this is just for personal use. And karma is useful for letting you know how your communities feel about you. For me, I scroll through my posts in my profile page and just scan the scores to get a feel for whether I've pissed anyone off gotten some traction for some reason.

If someone is posting more often than me, I can see how your tool would be useful.

Still, I feel there are questions to be asked about whether it's healthy, but that's me ... you do you!!

Also ... kbin actually has a karma feature like on reddit. You might find it useful.

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

I am spending too much time on Lemmy as is :)

What I really found interesting, also compared to Reddit, is how few of my posts/comments actually have downvotes.

[-] maegul@lemmy.ml 1 points 1 year ago

Yea ... it's interesting isn't it ... what happens when the "engagement rage" is taken out of the room.

Politeness and consideration ... helluva drug!

For instance, I disliked the push to bring a reddit feature to here, mostly out of a feeling that there might be a bit too much "lets keep this is much like reddit as possible" developing, just enough to think about downvoting this post for a second, but realised it would have way too mean and that a post expressing my disagreement was plenty while you were doing genuinely interesting and useful work.

On reddit, sadly, I probably would have downvoted, moved on and not thought twice.

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

Technology

37603 readers
489 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