-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhello.py
125 lines (103 loc) · 3.97 KB
/
hello.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#coding=utf-8
from flask import Flask,render_template,session,redirect,url_for,flash
from flask_script import Manager
from flask_bootstrap import Bootstrap
from flask_moment import Moment
from datetime import datetime
from flask_wtf import Form
from wtforms import StringField,SubmitField
from wtforms.validators import Required
from flask_sqlalchemy import SQLAlchemy
import os
from flask_mail import Mail,Message
from threading import Thread
basedir=os.path.abspath(os.path.dirname(__file__))
app=Flask(__name__)
manager=Manager(app)
bootstrap=Bootstrap(app)
moment=Moment(app)
app.config['MAIL_SERVER']='smtp.exmail.qq.com'
app.config['MAIL_PORT']=465
#app.config['MAIL_USE_TLS']=True
app.config['MAIL_USE_SSL']=True
app.config['MAIL_USERNAME']=os.environ.get('MAIL_USERNAME')
app.config['MAIL_PASSWORD']=os.environ.get('MAIL_PASSWORD')
#app.config['FLASKY_MAIL_SUBJECT_PREFIX']='[Flasky]'
#app.config['FLASKY_MAIL_SENDER']='[email protected]'
#app.config['FLASKY_ADMIN']=os.environ.get('FLASKY_ADMIN')
mail=Mail(app)
app.config['SECRET_KEY']="haha"
app.config['SQLALCHEMY_DATABASE_URI']='mysql://flasky:flasky@[email protected]:3306/flasky'
app.config['SQLALCHEMY_COMMIT_ON_TEARDOWN']=True
app.config['SQLALCHEMY_TRACK_MODIFICANTS']=True
db=SQLAlchemy(app)
#def sender_mail(to,subject,template,**kwargs):
# msg=Message(app.config['FLASKY_MAIL_SUBJECT_PREFIX']+subject,sender=app.config['FLASKY_MAIL_SENDER'],recipients=[to])
# msg.body=render_template(template+'.txt',**kwargs)
# msg.body=render_template(template +'.html',**kwargs)
# msg.html=render_template(template +'.html',**kwargs)
# mail.send(msg)
def send_async_email(app,msg):
with app.app_context():
mail.send(msg)
@app.route('/mail')
def mail():
msg=Message('subject',sender=os.environ.get('MAIL_USERNAME'),recipients=['[email protected]','[email protected]'])
msg.body="text body"
msg.html='<b>HTML</b> body'
thread=Thread(target=send_async_email,args=[app,msg])
thread.start()
mail.send(msg)
return '<h1>异步发送邮件成功!</h1>'
#@app.route('/',methods=['GET','POST'])
#def index():
# form=NameForm()
# if form.validate_on_submit():
# #old_name=session.get('name')
# user=User.query.filter_by(username=form.name.data).first()
# if user is None:
# user=User(username=form.name.data)
# db.session.add(user)
# session['known']=False
# if app.config['FLASKY_ADMIN']:
# send_mail(app.config['FLASKY_ADMIN'],'New User','mail/new_user',user=user)
# else:
# session['known']=True
# session['name']=form.name.data
# return redirect(url_for('index'))
# #if old_name is not None and old_name !=form.name.data:
# # flash('Looks like you have changed your name!')
# #session['name']=form.name.data
# #return redirect(url_for('index'))
# return render_template('index.html',form=form,name=session.get('name'),known=session.get('known',False))
@app.route('/user/<name>')
def user(name):
# return '<h1>Hello,%s!</h1>' % name
return render_template('user.html',name=name)
@app.errorhandler(404)
def page_not_found(e):
return render_template("404.html"),404
@app.errorhandler(500)
def internal_server_error(e):
return render_template("500.html"),500
#flask_wtf
class NameForm(Form):
name=StringField('what is your name?',validators=[Required()])
submit=SubmitField('Submit')
#databases
class Role(db.Model):
__tablename__='roles'
id=db.Column(db.Integer,primary_key=True)
name=db.Column(db.String(64),unique=True)
users=db.relationship('User',backref='role')
def __repr__(self):
return '<Role %r>' % self.name
class User(db.Model):
__tablename__='users'
id=db.Column(db.Integer,primary_key=True)
username=db.Column(db.String(64),unique=True,index=True)
role_id=db.Column(db.Integer,db.ForeignKey('roles.id'))
def __repr__(self):
return '<User %r>' % self.username
if __name__=='__main__':
manager.run()