-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.py
42 lines (32 loc) · 1.04 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
"""
Philosopher Bot
---------------
Created by Caio Madeira
Co-worker: Rodrigo Carmo
instagram: @sudomadeira
Twitter: @bot_philospher
Avaliable on Discord too!
"""
from Lists.sub_list import *
class Config:
def __init__(self):
self.positions = {
'tweet_default_PosX': 43,
'tweet_default_PosY': 110,
'tweet_with_quotes_PosX': 50,
'tweet_with_quotes_PosY': 120,
'textwraped_value': 25,
'author_quote_posX': 43,
'author_quote_posY': 512
}
self.PHILOBOT__HASHTAG = '#Philobot'
self.TESTEPHILO__HASHTAG = '#Testephilo'
self.PHILOMAKER__HASHTAG = '#Philomaker'
self.TESTEMAKER__HASHTAG = '#Testemaker'
self.OFFICIAL_TIME_POST = 2
self.EXTENSION_TIME_POST = 2
self.TEST_TIME_POST = 2
self.PHILOBOT__SUBLIST = sub_list_philobot
self.TESTEPHILO__SUBLIST = sub_list_testephilo
self.PHILOMAKER__SUBLIST = sub_list_philomaker
self.TESTMAKER__SUBLIST = sub_list_test_philomaker