0. 文件目录结构

时间:2022-02-26 12:52:18
(
终端安装:brew install tree
终端运行:tree -I “node_modules”
)

.文件数据结构树
├── README.MD
├── app01
│   ├── __init__.py
│   ├── admin.py
│   ├── apps.py
│   ├── migrations
│   │ 
│   ├── models.py
│   ├── myfile # 自己定义的文件
│   │   ├── custom_data.py # 定制数据
│   │   └── 火车站信息表.xlsx # 火车站信息表
│   ├── tests.py
│   └── views.py
├── cp12306
│   ├── __init__.py
│   ├── settings.py
│   ├── urls.py
│   └── wsgi.py
├── manage.py
├── static
└── templates