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
| #!/usr/bin/env python -O | |
| import argparse | |
| import sys | |
| import numpy | |
| import h5py | |
| import csv | |
| class ColType: | |
| UNKNOWN = 1 |
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