當前位置: 首頁>>代碼示例>>Python>>正文


Python Tools.getAbsPath方法代碼示例

本文整理匯總了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","" ,),
開發者ID:sthysel,項目名稱:witkoppen,代碼行數:33,代碼來源:ArtRegistry.py


注:本文中的Tools.Tools.getAbsPath方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。