python template mako 學習筆記

2021-06-16 03:07:28 字數 1727 閱讀 7201

mako.template

import

template

mytemplate

=template

("hello world!"

)print

mytemplate

.render

()mytemplate

=template

("hello, $!"

)print

mytemplate

.render

(name

="jack"

)**可以參考官方doc部分

mytemplate

=template

(filename

='/docs/mytmpl.txt'

)print

mytemplate

.render

()還可以從設定模板為檔案,設定filename

屬性mytemplate

=template

(filename

='/docs/mytmpl.txt'

,module_directory

='/tmp/mako_modules'

)print

mytemplate

.render

()檔案還可以快取到某個目錄下,下面的/docs/mytmpl.txt會產生乙個py:

/tmp/mako_modules

/docs/mytmpl.txt.py

from

mako.lookup

import

templatelookup

mylookup

=templatelookup

(directories=[

'/docs'

])mytemplate

=template

("""<

%include file="header.txt"/> hello world!"""

,lookup

=mylookup

)查詢模板,方便統一模板路徑使用。

mylookup

=templatelookup

(directories=[

'/docs'

],module_directory

='/tmp/mako_modules'

)def

serve_template

(templatename,**

kwargs

):mytemplate

=mylookup

.get_template

(templatename

)print

mytemplate

.render(**

kwargs

)改良了上面的查詢方式

mylookup

=templatelookup

(directories=[

'/docs'

],output_encoding

='utf-8'

,encoding_errors

='replace'

)mytemplate

=mylookup

.get_template

("foo.txt"

)print

mytemplate

.render

()設定輸出編碼,以及編碼錯誤時候處理方式

C Primer Chapter One學習筆記

筆記 1.流 從io裝置上讀入或寫出的字串行,用來說明字元隨時間順序生成或消耗。2.輸入輸出符可連用原因 operator 或operator 返回stream物件。3.要測試程式那個語句出錯,使用cout 4.新建乙個內建型別,如int i 0 最好先初始化,不然用到的時候沒初始化會產生奇怪的錯誤...

BroadcastReceiver學習筆記

需要注意 的是,不要在 onreceive 方法中新增過多的邏輯或者進行任何的耗時操作,因為在廣播接收 器中是不允許開啟執行緒的,當 onreceive 方法執行了較長時間而沒有結束時,程式就會報錯。有序broadcast,sendorderedbroadcast intent,null abort...

CDISC SDTM SE domain 學習筆記

整理翻譯自 sdtm ig 3.2 www.cdisc.org sdtm se subject elements 鞏固每個subject的epochs和elements的起止時間點.se對於有多個 時期的試驗有著重要的用處 如crossover試驗 se包含乙個subject從乙個element進入...