资源简介
一个实现新闻网站前端和后台功能的程序,完成了登录注册,后台管理,新闻详情等功能,第三方利用了云通讯进行注册验证,七牛云进行图片的存储
代码片段和文件信息
import datetime
import random
from info import db
from info.models import User
from manager import app
def add_test_users():
users = []
now = datetime.datetime.now()
for num in range(0 10000):
try:
user = User()
user.nick_name = “%011d“ % num
user.mobile = “%011d“ % num
user.password_hash = “pbkdf2:sha256:50000$SgZPAbEj$a253b9220b7a916e03bf27119d401c48ff4a1c81d7e00644e0aaf6f3a8c55829“
user.last_login = now - datetime.timedelta(seconds=random.randint(0 2678400))
users.append(user)
print(user.mobile)
except Exception as e:
print(e)
with app.app_context():
db.session.add_all(users)
db.session.commit()
print (‘OK‘)
if __name__ == ‘__main__‘:
add_test_users()
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-06-29 14:40 information11\
目录 0 2018-06-29 17:53 information11\.git\
文件 1322 2018-06-27 15:33 information11\.gitignore
文件 49 2018-06-29 17:41 information11\.git\COMMIT_EDITMSG
文件 314 2018-06-14 16:58 information11\.git\config
文件 73 2018-06-14 16:58 information11\.git\desc
文件 23 2018-06-22 14:50 information11\.git\HEAD
目录 0 2018-06-14 16:58 information11\.git\hooks\
文件 478 2018-06-14 16:58 information11\.git\hooks\applypatch-msg.sample
文件 896 2018-06-14 16:58 information11\.git\hooks\commit-msg.sample
文件 189 2018-06-14 16:58 information11\.git\hooks\post-update.sample
文件 424 2018-06-14 16:58 information11\.git\hooks\pre-applypatch.sample
文件 1642 2018-06-14 16:58 information11\.git\hooks\pre-commit.sample
文件 1348 2018-06-14 16:58 information11\.git\hooks\pre-push.sample
文件 4898 2018-06-14 16:58 information11\.git\hooks\pre-reba
文件 544 2018-06-14 16:58 information11\.git\hooks\pre-receive.sample
文件 1239 2018-06-14 16:58 information11\.git\hooks\prepare-commit-msg.sample
文件 3610 2018-06-14 16:58 information11\.git\hooks\update.sample
文件 41560 2018-06-29 17:41 information11\.git\index
目录 0 2018-06-14 16:58 information11\.git\info\
文件 240 2018-06-14 16:58 information11\.git\info\exclude
目录 0 2018-06-14 16:58 information11\.git\logs\
文件 21193 2018-06-29 17:41 information11\.git\logs\HEAD
目录 0 2018-06-14 16:58 information11\.git\logs\refs\
目录 0 2018-06-14 16:58 information11\.git\logs\refs\heads\
文件 20556 2018-06-29 17:41 information11\.git\logs\refs\heads\master
目录 0 2018-06-14 16:58 information11\.git\logs\refs\remotes\
目录 0 2018-06-14 17:04 information11\.git\logs\refs\remotes\origin\
文件 185 2018-06-14 16:58 information11\.git\logs\refs\remotes\origin\HEAD
文件 1573 2018-06-29 17:41 information11\.git\logs\refs\remotes\origin\master
目录 0 2018-06-29 15:47 information11\.git\ob
............此处省略2027个文件信息
相关资源
- python爬取王者荣耀信息.zip
- Python基础教程第3版)_袁国忠译
- Selenium自动化框架,python实现
- Python编程无师自通——专业程序员的
- python 库函数手册
- wxpython 教程
- 《Python机器学习实践指南》原书代码
- 生物信息学编程使用Python
- Mastering.Python.2016.4.pdf
- python数据分析博客源代码
- 利用 Python 进行数据分析 中文第二版
- python爬取拉勾网存excel+数据可视化w
- python程序设计基于网络爬虫的电影评
- opencv for Python官方文档中文版
- 基于Python的股票数据爬虫系统GUI
- python Programming.An.Introduction.to.Computer
- python儿童编程
- Python-在TensorFlow中实现实现图像卷积网
- Python-在线网络小说搜索阅读网站
- image_classify_using_sift
- selenium2python自动化测试.pdf
- OpenCV官方教程中文版for Pythonpdf+自己编
- 时间序列预测讲义ARIMA&LSTM;及python代码
- python3完整版
- python + opencv 人脸识别代码(可以跨平
- 《python cookbook(第3版)》中文 高清完
- 《深度学习入门:基于Python的理论与
- Python Flask写的绿色植物商城购物网站
- 网络爬虫-Python和数据分析
- 深入理解Python (Dive into Python) 中文
评论
共有 条评论