标签:定位 方法 规范 rom app 使用说明 port from 使用
Foo/
|-- bin/ #可执行文件目录
| |-- foo
|
|-- foo/ #程序主目录
| |-- tests/
| | |-- __init__.py
| | |-- test_main.py
| |
| |-- __init__.py
| |-- main.py #程序的入口
|
|-- docs/ #文档
| |-- conf.py
| |-- abc.rst
|
|-- setup.py #安装部署脚本
|-- requirements.txt #依赖关系
|-- README
# Author:Li Dongfei
import os,sys
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
sys.path.append(BASE_DIR)
from conf import settings
from core import main
main.login()
标签:定位 方法 规范 rom app 使用说明 port from 使用
原文地址:https://www.cnblogs.com/L-dongf/p/9886332.html