diff --git a/personal_data/fetchers/ffxiv_lodestone.py b/personal_data/fetchers/ffxiv_lodestone.py index d518bd9..26635d7 100644 --- a/personal_data/fetchers/ffxiv_lodestone.py +++ b/personal_data/fetchers/ffxiv_lodestone.py @@ -23,7 +23,7 @@ FFXIV_ARR_RELEASE_DATE = datetime.date(2013,8,27) @dataclasses.dataclass(frozen=True) -class LodestoneAchievementScraper(Scraper): +class LodestoneAchievement(Scraper): dataset_name = 'games_played' deduplicate_mode = DeduplicateMode.BY_ALL_COLUMNS diff --git a/personal_data/fetchers/jellyfin_watch_history.py b/personal_data/fetchers/jellyfin_watch_history.py index 086fcee..c0bbfa3 100644 --- a/personal_data/fetchers/jellyfin_watch_history.py +++ b/personal_data/fetchers/jellyfin_watch_history.py @@ -43,7 +43,7 @@ def iterate_watched_episodes_of_series(client, series_id: str): @dataclasses.dataclass(frozen=True) -class JellyfinWatchHistoryScraper(Scraper): +class JellyfinWatchHistory(Scraper): dataset_name = 'show_episodes_watched' deduplicate_mode = DeduplicateMode.BY_ALL_COLUMNS diff --git a/personal_data/fetchers/psnprofiles.py b/personal_data/fetchers/psnprofiles.py index 5fc16a9..378ed5f 100644 --- a/personal_data/fetchers/psnprofiles.py +++ b/personal_data/fetchers/psnprofiles.py @@ -31,7 +31,7 @@ MAX_NUMBER_GAMES_TO_PARSE = 10000 @dataclasses.dataclass(frozen=True) -class PsnProfilesScraper(Scraper): +class PsnProfiles(Scraper): """Downloads all trophies for the given user.""" dataset_name = 'games_played' diff --git a/personal_data/fetchers/steam_community.py b/personal_data/fetchers/steam_community.py index cc7b24c..d5af26b 100644 --- a/personal_data/fetchers/steam_community.py +++ b/personal_data/fetchers/steam_community.py @@ -21,7 +21,7 @@ FORMAT_DATE_HEADER = '%d/%m/%YYYY' @dataclasses.dataclass(frozen=True) -class SteamAchievementScraper(Scraper): +class SteamAchievement(Scraper): """Downloads all trophies for the given user.""" dataset_name = 'games_played' diff --git a/personal_data/fetchers/withings.py b/personal_data/fetchers/withings.py index 3a3ba03..01f5250 100644 --- a/personal_data/fetchers/withings.py +++ b/personal_data/fetchers/withings.py @@ -41,7 +41,7 @@ def load_credentials() -> CredentialsType: @dataclasses.dataclass(frozen=True) -class WithingsActivityScraper(Scraper): +class WithingsActivity(Scraper): dataset_name = 'withings_activity' deduplicate_mode = DeduplicateMode.BY_ALL_COLUMNS