• 大小: 103KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-12
  • 语言: Python
  • 标签: python  

资源简介

django+python+sqlite实现的简单登录注册功能的网页,运行环境为python+django

资源截图

代码片段和文件信息

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

if __name__ == “__main__“:
    os.environ.setdefault(“DJANGO_SETTINGS_MODULE“ “helloweb.settings“)
    try:
        from django.core.management import execute_from_command_line
    except ImportError:
        # The above import may fail for some other reason. Ensure that the
        # issue is really that Django is missing to avoid masking other
        # exceptions on Python 2.
        try:
            import django
        except ImportError:
            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?“
            )
        raise
    execute_from_command_line(sys.argv)

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-11-07 15:21  helloweb\
     目录           0  2017-11-07 15:21  helloweb\.idea\
     文件         398  2017-11-04 19:47  helloweb\.idea\helloweb.iml
     文件         215  2017-11-04 19:46  helloweb\.idea\misc.xml
     文件         268  2017-11-04 19:46  helloweb\.idea\modules.xml
     文件       34527  2017-11-07 15:06  helloweb\.idea\workspace.xml
     文件      135168  2017-11-06 15:15  helloweb\db.sqlite3
     目录           0  2017-11-07 15:21  helloweb\helloweb\
     文件        3720  2017-11-06 23:36  helloweb\helloweb\settings.py
     文件         907  2017-11-06 23:41  helloweb\helloweb\urls.py
     文件         410  2017-11-04 19:43  helloweb\helloweb\wsgi.py
     文件           0  2017-11-04 19:43  helloweb\helloweb\__init__.py
     目录           0  2017-11-07 15:21  helloweb\helloweb\__pycache__\
     文件        2391  2017-11-06 23:36  helloweb\helloweb\__pycache__\settings.cpython-36.pyc
     文件        1044  2017-11-06 23:41  helloweb\helloweb\__pycache__\urls.cpython-36.pyc
     文件         544  2017-11-04 19:56  helloweb\helloweb\__pycache__\wsgi.cpython-36.pyc
     文件         138  2017-11-04 19:56  helloweb\helloweb\__pycache__\__init__.cpython-36.pyc
     目录           0  2017-11-07 15:21  helloweb\login\
     文件          66  2017-11-04 19:59  helloweb\login\admin.py
     文件          90  2017-11-04 19:59  helloweb\login\apps.py
     目录           0  2017-11-07 15:21  helloweb\login\migrations\
     文件         639  2017-11-06 15:08  helloweb\login\migrations\0001_initial.py
     文件           0  2017-11-04 19:59  helloweb\login\migrations\__init__.py
     目录           0  2017-11-07 15:21  helloweb\login\migrations\__pycache__\
     文件         707  2017-11-06 15:08  helloweb\login\migrations\__pycache__\0001_initial.cpython-36.pyc
     文件         146  2017-11-04 20:28  helloweb\login\migrations\__pycache__\__init__.cpython-36.pyc
     文件         350  2017-11-06 15:16  helloweb\login\models.py
     文件          63  2017-11-04 19:59  helloweb\login\tests.py
     文件         173  2017-11-06 23:34  helloweb\login\urls.py
     文件        3122  2017-11-06 23:52  helloweb\login\views.py
     文件           0  2017-11-04 19:59  helloweb\login\__init__.py
............此处省略16个文件信息

评论

共有 条评论