This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pygame, sys, random, math | |
from pygame.locals import * | |
# set up game | |
pygame.init() | |
mainClock = pygame.time.Clock() | |
# create window | |
WINDOWWIDTH = 600 | |
WINDOWHEIGHT = 600 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pyeliza | |
class Eliza: | |
aliases = 'eliza' | |
description = 'Virtual therapist' | |
_therapist = pyeliza.eliza() | |
def execute(self, expression, context): | |
''' | |
>>> from mock import Mock |
NewerOlder