Initial bots code... probably a crack idea but let's see if I can
get something useful out of it.
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
This work is licensed under the Creative Commons Attribution 2.5 License. To view a copy of this license, visit http://creativecommons.org/licenses/by/2.5/ or send a letter to Creative Commons, 543 Howard Street, 5th Floor, San Francisco, California, 94105, USA.
|
||||
|
||||
Attributions:
|
||||
|
||||
chaitanya.jpg http://www.flickr.com/photos/meanestindian/166408558/
|
||||
penelope.jpg http://www.flickr.com/photos/gagah/9257515/
|
||||
kiu.jpg http://flickr.com/photos/31072589@N00/139234295/
|
||||
@@ -0,0 +1,2 @@
|
||||
[Activity]
|
||||
python_class = bots
|
||||
@@ -0,0 +1,20 @@
|
||||
import os
|
||||
|
||||
import pygtk
|
||||
pygtk.require('2.0')
|
||||
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()
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.6 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.3 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.5 KiB |
Reference in New Issue
Block a user