资源简介
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.xm
文件 268 2017-11-04 19:46 helloweb\.idea\modules.xm
文件 34527 2017-11-07 15:06 helloweb\.idea\workspace.xm
文件 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个文件信息
相关资源
- python+ selenium教程
- PycURL(Windows7/Win32)Python2.7安装包 P
- 英文原版-Scientific Computing with Python
- 7.图像风格迁移 基于深度学习 pyt
- 基于Python的学生管理系统
- A Byte of Python(简明Python教程)(第
- Python实例174946
- Python 人脸识别
- Python 人事管理系统
- 基于python-flask的个人博客系统
- 计算机视觉应用开发流程
- python 调用sftp断点续传文件
- python socket游戏
- 基于Python爬虫爬取天气预报信息
- python函数编程和讲解
- Python开发的个人博客
- 基于python的三层神经网络模型搭建
- python实现自动操作windows应用
- python人脸识别(opencv)
- python 绘图(方形、线条、圆形)
- python疫情卡UN管控
- python 连连看小游戏源码
- 基于PyQt5的视频播放器设计
- 一个简单的python爬虫
- csv文件行列转换python实现代码
- Python操作Mysql教程手册
- Python Machine Learning Case Studies
- python获取硬件信息
- 量化交易(附python常见函数的使用方
- python 名字用字排行
川公网安备 51152502000135号
评论
共有 条评论