from .base import TrendingClipAsset from .constants import TimePeriod class TrendingMonthlyClips(TrendingClipAsset): def __init__(self): super().__init__( name="trending_monthly_clips", description="Trending clips for the current month", time_period=TimePeriod.Monthly, table_name="TRENDING_MONTHLY", query_file="queries/trending_clips_template.sql", schedule="0 0 * * *", ) feature = TrendingMonthlyClips() # Export the asset, job, and schedule trending_clip_asset = feature.asset trending_clip_job = feature.job trending_clip_schedule = feature.schedule_def