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

from sugar.simulator import Bot

for i in range(0, 8):
	bot = Bot()

	bot.wait(random.randint(10, 20))
	bot.join_activity('giraffes')
	bot.change_activity('giraffes')

	bot.start()

for i in range(0, 6):
	bot = Bot()

	bot.wait(random.randint(10, 20))
	bot.join_activity('nekkhamma')
	bot.change_activity('nekkhamma')

	bot.start()