Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Commit

Permalink
Vg71 (#120)
Browse files Browse the repository at this point in the history
* vg71 config

* test tweet

---------

Co-authored-by: Ousikai <[email protected]>
  • Loading branch information
oscoDOTblog and Ousikai authored May 31, 2023
1 parent 1d9f244 commit 765882a
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 16 deletions.
32 changes: 16 additions & 16 deletions bots/convoy/config.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
# UTC is 8 Hours Ahead PST
vg_assets_root_path="assets"
vg_hashtag='#NC'
vg_hashtag='#FD'
vg_test=False # True <- set to 'True' when testing
vg_url='https://support.fire-emblem-heroes.com/voting_gauntlet/tournaments/70'
round_1_start_raw = 'Apr 01 2023 7:00AM'
round_1_end_raw = 'Apr 03 2023 4:00AM'
round_2_start_raw = 'Apr 03 2023 7:00AM'
round_2_end_raw = 'Apr 05 2023 4:00AM'
round_3_start_raw = 'Apr 05 2023 7:00AM'
round_3_end_raw = 'Apr 07 2023 4:00AM'
vg_unit_1 = "Caineghis"
vg_unit_2 = "Yarne"
vg_unit_3 = "Ash"
vg_unit_4 = "Askr"
vg_unit_5 = "Celine"
vg_unit_6 = "Alear"
vg_unit_7 = "Garon"
vg_unit_8 = "Nemesis"
vg_url='https://support.fire-emblem-heroes.com/voting_gauntlet/tournaments/71'
round_1_start_raw = 'May 03 2023 8:00AM'
round_1_end_raw = 'May 05 2023 5:00AM'
round_2_start_raw = 'May 05 2023 8:00AM'
round_2_end_raw = 'May 07 2023 5:00AM'
round_3_start_raw = 'May 07 2023 8:00AM'
round_3_end_raw = 'May 09 2023 5:00AM'
vg_unit_1 = "Mark"
vg_unit_2 = "Rebecca"
vg_unit_3 = "Eliwood"
vg_unit_4 = "Hector"
vg_unit_5 = "Ike"
vg_unit_6 = "Soren"
vg_unit_7 = "Mia"
vg_unit_8 = "Boyd"
discord_channel_ids = {
vg_unit_1 : 783177258713874443,
vg_unit_2 : 783177296646897665,
Expand Down
11 changes: 11 additions & 0 deletions bots/genny/test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import tweepy

C_KEY_PROD = "TBD"
C_SECRET_PROD = "TBD"
A_TOKEN_PROD = "TBD"
A_TOKEN_SECRET_PROD = "TBD"
auth = tweepy.OAuthHandler(C_KEY_PROD, C_SECRET_PROD)
auth.set_access_token(A_TOKEN_PROD, A_TOKEN_SECRET_PROD)
api = tweepy.API(auth)
message = "just checking if mr elon is still gonna let me post to this account :^)\n\nnice"
api.update_status(message)

0 comments on commit 765882a

Please sign in to comment.