34 lines
654 B
Python
34 lines
654 B
Python
|
#!/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'
|