Skip to content

Instantly share code, notes, and snippets.

@TheSudoFox
Created August 27, 2023 03:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TheSudoFox/73498517f7b5f0b807eebaf40c0800f4 to your computer and use it in GitHub Desktop.
Save TheSudoFox/73498517f7b5f0b807eebaf40c0800f4 to your computer and use it in GitHub Desktop.
evidence.zip
>>> for bet in MatchupBet.objects.filter(user = User.objects.get(email = "ethan@beav.tech")):
... print('----------------')
... print('matchup: ', bet.matchup)
... print('matchup start time: ', bet.matchup.start_time)
... print('bet creation time: ', bet.created_at)
... print('----------------')
...
----------------
matchup: FUT Esports vs. Paper Rex
matchup start time: 2023-08-16 21:30:52+00:00
bet creation time: 2023-08-15 05:06:10.256758+00:00
----------------
----------------
matchup: Fnatic vs. LOUD
matchup start time: 2023-08-16 19:00:00+00:00
bet creation time: 2023-08-15 05:05:32.491609+00:00
----------------
----------------
matchup: Bilibili Gaming vs. DRX
matchup start time: 2023-08-17 19:00:00+00:00
bet creation time: 2023-08-15 05:04:43.807070+00:00
----------------
----------------
matchup: Evil Geniuses vs. Edward Gaming
matchup start time: 2023-08-17 21:27:18+00:00
bet creation time: 2023-08-15 05:06:01.146533+00:00
----------------
----------------
matchup: FNATIC vs. FUT Esports
matchup start time: 2023-08-18 19:00:00+00:00
bet creation time: 2023-08-18 01:06:20.101471+00:00
----------------
----------------
matchup: Bilibili Gaming vs EDward Gaming
matchup start time: 2023-08-18 21:17:25+00:00
bet creation time: 2023-08-18 01:06:56.871112+00:00
----------------
----------------
matchup: LOUD vs. Paper Rex
matchup start time: 2023-08-19 19:10:42+00:00
bet creation time: 2023-08-19 00:22:12.909702+00:00
----------------
----------------
matchup: DRX vs. Evil Geniuses
matchup start time: 2023-08-19 22:25:00+00:00
bet creation time: 2023-08-19 22:05:01.127131+00:00
----------------
----------------
matchup: LOUD vs. EDward Gaming
matchup start time: 2023-08-20 19:00:00+00:00
bet creation time: 2023-08-20 17:49:54.614957+00:00
----------------
----------------
matchup: DRX vs. FNATIC
matchup start time: 2023-08-20 22:00:00+00:00
bet creation time: 2023-08-20 17:57:22.376276+00:00
----------------
----------------
matchup: Evil Geniuses vs. Paper Rex
matchup start time: 2023-08-24 19:00:00+00:00
bet creation time: 2023-08-21 01:46:25.252953+00:00
----------------
----------------
matchup: FNATIC vs. LOUD
matchup start time: 2023-08-24 22:50:00+00:00
bet creation time: 2023-08-24 22:28:36.822670+00:00
----------------
----------------
matchup: Evil Geniuses vs. LOUD
matchup start time: 2023-08-25 19:00:00+00:00
bet creation time: 2023-08-25 18:58:09.757707+00:00
----------------
----------------
matchup: Evil Geniuses vs. Paper Rex
matchup start time: 2023-08-26 19:15:00+00:00
bet creation time: 2023-08-26 16:29:34.042834+00:00
----------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment