资源简介

作为一个Python初学者,Django是我学习的第一个网站框架,个人博客是我的第一个Python Web项目,不成熟的地方还请谅解。

资源截图

代码片段和文件信息

#!/usr/bin/env python
import os
import sys

if __name__ == ‘__main__‘:
    os.environ.setdefault(‘DJANGO_SETTINGS_MODULE‘ ‘untitled1.settings‘)
    try:
        from django.core.management import execute_from_command_line
    except ImportError as exc:
        raise ImportError(
            “Couldn‘t import Django. Are you sure it‘s installed and “
            “available on your PYTHONPATH environment variable? Did you “
            “forget to activate a virtual environment?“
        ) from exc
    execute_from_command_line(sys.argv)

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-01-17 14:12  untitled1\
     目录           0  2019-01-17 14:12  untitled1\.idea\
     目录           0  2019-01-17 14:12  untitled1\.idea\dataSources\
     文件        1334  2018-12-19 12:20  untitled1\.idea\dataSources.local.xml
     文件        1760  2018-12-19 12:13  untitled1\.idea\dataSources.xml
     文件       58513  2018-12-17 08:06  untitled1\.idea\dataSources\4643bcbc-d776-409f-a299-8b4fa1e60bde.xml
     目录           0  2019-01-17 14:12  untitled1\.idea\dataSources\f96b6084-f941-40c9-a170-89b1756220f7\
     文件       16575  2018-12-19 12:13  untitled1\.idea\dataSources\f96b6084-f941-40c9-a170-89b1756220f7.xml
     目录           0  2019-01-17 14:12  untitled1\.idea\dataSources\f96b6084-f941-40c9-a170-89b1756220f7\storage_v2\
     目录           0  2019-01-17 14:12  untitled1\.idea\dataSources\f96b6084-f941-40c9-a170-89b1756220f7\storage_v2\_src_\
     目录           0  2019-01-17 14:12  untitled1\.idea\dataSources\f96b6084-f941-40c9-a170-89b1756220f7\storage_v2\_src_\schema\
     文件          59  2018-12-19 12:13  untitled1\.idea\dataSources\f96b6084-f941-40c9-a170-89b1756220f7\storage_v2\_src_\schema\main.uQUzAA.meta
     文件         237  2019-01-04 16:15  untitled1\.idea\encodings.xml
     文件        2355  2019-01-07 10:15  untitled1\.idea\misc.xml
     文件         277  2018-12-15 16:06  untitled1\.idea\modules.xml
     文件        1290  2018-12-29 08:28  untitled1\.idea\untitled1.iml
     文件         391  2018-12-29 08:28  untitled1\.idea\webResources.xml
     文件       61645  2019-01-17 14:12  untitled1\.idea\workspace.xml
     文件      131072  2018-12-15 16:09  untitled1\db.sqlite3
     目录           0  2018-12-15 16:06  untitled1\Include\
     目录           0  2019-01-17 14:12  untitled1\Lib\
     目录           0  2018-12-21 14:31  untitled1\Lib\site-packages\
     目录           0  2019-01-17 14:12  untitled1\Lib\tcl8.6\
     文件       24289  2018-12-15 16:06  untitled1\Lib\tcl8.6\init.tcl
     文件         556  2018-12-19 11:28  untitled1\manage.py
     目录           0  2019-01-17 14:12  untitled1\MyBlog\
     文件        1526  2019-01-16 10:12  untitled1\MyBlog\admin.py
     文件          92  2018-12-15 16:07  untitled1\MyBlog\apps.py
     文件         983  2019-01-14 09:43  untitled1\MyBlog\forms.py
     目录           0  2019-01-17 14:12  untitled1\MyBlog\migrations\
     文件        2411  2018-12-19 09:35  untitled1\MyBlog\migrations\0001_initial.py
............此处省略533个文件信息

评论

共有 条评论