kensanata / mastodon-archive

Archive your statuses, favorites and media using the Mastodon API (i.e. login required)
https://alexschroeder.ch/software/Mastodon_Archive
GNU General Public License v3.0
358 stars 33 forks source link

More stuff to report #23

Closed kensanata closed 6 years ago

kensanata commented 6 years ago

@marionline@mastodon.art says: "How about a media counter how many media file were uploaded? Or if possible a hashtag counter, what hashtags one uses the most?"

kensanata commented 6 years ago

Adding this to report.py should be easy.

wion commented 6 years ago

The hashtag lister is a good idea. For auditors/curators/cherrypickers, it would make it easier to remember what to search for. Presumably anything with a hashtag is slightly more important than just any old toot. Though not always; sometimes we forget to hash. ;)

kensanata commented 6 years ago

Right now (d83da68) I'm simply printing the top ten hashtags used. I'm not sure this would actually help in your use case.

$ mastodon-archive report kensanata@dice.camp
Statuses:               209
Boosts:                  14
Media:                    5
Favourites:             223

#caster:                  5
#20questions:             5
#introduction:            2
#osr:                     2
#currentprojects:         2
#caller:                  1
#rpgmusic:                1
#razorcoast:              1
#rpghaiku:                1
#haiku:                   1

Perhaps a list of all the hashtags you used and their count would be more useful for you? This is what 832c85e prints:

$ mastodon-archive report kensanata@dice.camp
Statuses:               209
Boosts:                  14
Media:                    5
Favourites:             223

#caster(5) #20questions(5) #introduction(2) #osr(2)
#currentprojects(2) #caller(1) #rpgmusic(1) #razorcoast(1)
#rpghaiku(1) #haiku(1) #character(1) #amaroq(1) #tootdon(1) #howto(1)
#spells(1) #history(1) #rpg(1) #myfirstcharacter(1) #1strpgs(1)
#favouritepen(1) #pbta(1)
wion commented 6 years ago

Yes, that wrapping list of all hashtags would be good and fine.