Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Mastodon] Add support for favo(u)rites #5529

Closed
daniels1989 opened this issue Apr 29, 2024 · 0 comments
Closed

[Mastodon] Add support for favo(u)rites #5529

daniels1989 opened this issue Apr 29, 2024 · 0 comments

Comments

@daniels1989
Copy link

There's already support for bookmarked posts, but apparently there's also favo(u)rites. Api endpoint returns the same data as the bookmarks endpoint, so I guess it's just a matter of adding

def account_favourites(self):
    endpoint = "/v1/favourites"
    return self._pagination(endpoint, None)

on line 210, and

class MastodonFavouritesExtractor(MastodonExtractor):
    """Extractor for mastodon favourites"""
    subcategory = "favourites"
    pattern = BASE_PATTERN + r"/favourites"
    example = "https://mastodon.social/favourites"

    def statuses(self):
        return MastodonAPI(self).account_favourites()

on line 137?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants