Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/simulator/bots.py
blob: 68bc4e16b7c4136a7d5ec20cea824e1f4d4dc289 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import os

import gtk

from sugar.bots import Bot

basedir = os.path.dirname(__file__)

bot = Bot("Chaitanya", os.path.join(basedir, "chaitanya.jpg"))
bot.start()

bot = Bot("Kiu", os.path.join(basedir, "kiu.jpg"))
bot.start()

bot = Bot("Penelope", os.path.join(basedir, "penelope.jpg"))
bot.start()

gtk.main()