-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from ton-society/hotfix/onchain_mau
Refactoring unique users export pipeline
- Loading branch information
Showing
4 changed files
with
24 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +0,0 @@ | ||
import time | ||
|
||
from models.season_config import SeasonConfig | ||
from seasons.s3_5 import S3_5_apps | ||
import time | ||
|
||
from seasons.app_models import AppLeaderboardModelV2 | ||
|
||
start_time = int(time.time()) - 3 * 3600 # 3 hours to mitigate possible indexer lag | ||
LAST_30DAYS_MAU_SEASON = SeasonConfig( | ||
leaderboard=SeasonConfig.APPS, | ||
name="last", | ||
start_time=start_time - 30 * 86400, | ||
end_time=start_time, | ||
projects=S3_5_apps.projects, | ||
score_model=AppLeaderboardModelV2() | ||
) | ||