关于Albatross web framework

最近在研究Albatross这个框架,是由Matt Goodall开发的一个python web框架,因为工作上的关系,需要熟悉这个环境。



总体感觉这个框架还是不错的,能够满足日常网站的设计和创建。



举个简单的例子:


ctx.locals.strings = ['one', 'two', 'three', 'four', 'five']


模板部分代码:
<al-for iter="iter" expr="strings">
  <al-value expr="iter.value()" /><br />
</al-for>



这样就能在页面上显示

one

two

three

four

five



哈哈,比较简单。



以后关于这个框架的体验将陆续在本空间中贴出。


你可能感兴趣的:(html,工作,Web,框架,python)