コード例 #1
0
ファイル: hello.py プロジェクト: silverozzo/minend
	def get(self):
		global field
		global bonus
		
		field = Field(10, 10, 9 + bonus)
		print('---------new')
		
		result = {
			'state' : field.get_state(),
			'rest'  : field.rest
		}
		
		self.set_header('Content-Type', 'application/json')
		self.write(json.dumps(result))