19 lines
313 B
Python
19 lines
313 B
Python
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()
|