码迷,mamicode.com
首页 > 其他好文 > 详细

包的引入(base版本)

时间:2017-06-20 18:01:30      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:conf   路径   dir   http   技术   app   sys   .com   版本   

技术分享
1
#author F 2 3 import os 4 import sys 5 print(__file__) #相对路径 6 print(os.path.abspath(__file__)) #绝对路径 7 print(os.path.dirname(os.path.abspath(__file__))) 8 print(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) 9 BASE_PATH = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) 10 11 sys.path.append(BASE_PATH) 12 from conf import settings 13 from core import main 14 main.sayHello()

 

包的引入(base版本)

标签:conf   路径   dir   http   技术   app   sys   .com   版本   

原文地址:http://www.cnblogs.com/fuyuhao/p/7054985.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!