本文整理匯總了Python中Tools.Tools.getAbsPath方法的典型用法代碼示例。如果您正苦於以下問題:Python Tools.getAbsPath方法的具體用法?Python Tools.getAbsPath怎麽用?Python Tools.getAbsPath使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Tools.Tools
的用法示例。
在下文中一共展示了Tools.getAbsPath方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1:
# 需要導入模塊: from Tools import Tools [as 別名]
# 或者: from Tools.Tools import getAbsPath [as 別名]
# bplate
""" This module facilitates art """
import wx
import os
import sys
from Tools import Tools
abspath = Tools.getAbsPath()
artpath = abspath + '/graphics/'
print artpath
app = wx.PySimpleApp()
DEFAULTPIC = "greensphere"
# a path and mask color key tuple is associated with each
# artname, if a mask color key is set, apply it
artDict = {
"question":("question.png", "w"),
"underconstruction":("underconstruction.png","" ,),
"roadwarning":("roadwarning.png","" ,),
"yellowsphere":("yellowsphere.png", "w",),
"brownsphere":("brownsphere.png", "w",),
"logbrownsphere":("brownsphere.png", "w",),
"redsphere":("redsphere.png", "w",),
"greensphere":("greensphere.png", "w",),
"32x32editor":("32x32editor.png","" ,),
"32x32error":("32x32error.png","" ,),
"32x32warning":("32x32warning.png","" ,),