37 lines
700 B
Python
Executable File
37 lines
700 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
The bot's config file.
|
|
"""
|
|
|
|
""" Core """
|
|
nickname = 'DiceBot9002'
|
|
realname = 'DiceBot9002'
|
|
username = 'DiceBot9002'
|
|
prefix = '.'
|
|
server = 'irc.steelbea.me'
|
|
port = 6667
|
|
use_ssl = False
|
|
channels = ['#test', '#SomaIsGay']
|
|
db_filename = 'DiceBot9002.db'
|
|
owner = 'iou1name!~iou1name@operational.operator'
|
|
admins = []
|
|
default_time_format = '[%Y-%m-%d %H:%M:%S]'
|
|
disabled_modules = ['countdown']
|
|
oper_password = 'password'
|
|
|
|
""" Wolfram """
|
|
wolfram_app_id = 'password'
|
|
wolfram_units = 'nonmetric'
|
|
|
|
""" Movie """
|
|
tmdb_api_key = 'password'
|
|
|
|
""" Currency """
|
|
exchangerate_api_key = 'password'
|
|
|
|
""" Crypto """
|
|
coinlib_api_key = 'password'
|
|
|
|
""" Weather """
|
|
weather_api_key = 'password'
|