README
This is an unofficial integration with the AWS Inifinidash SDK.
Most of the API has been implemented, but please use at your own risk.
Usage
@abbot inifnidash
@abbot inifinidash
Code
from random import choice, randint
VERSION = “Infinidash 0.3.1”
def status():
statuses = [“Blockchain client starting…”,
“Gathering consensus {}/{}…”.format(randint(0,55), randint(50,99)),
“Applying webscale…”,
“Decombobulating the frozzulator…”,
“Bribing officials…”,
“Connecting with WOPR…”,
“Playing Falken’s Maze…”,
“Adding layer to pyramid…”,
“Approaching 88mph…”,
“Inverting Timecube…”,
“Checking with Roko…”,
“Connected!”]
return “`[{}] {}`”.format(VERSION, choice(statuses))
bot.reply(“Initializing Infinidash client…”)
bot.reply_later(status(), 3)
bot.reply_later(status(), 15)
bot.reply_later(status(), randint(20,50))