SlideShare a Scribd company logo
❤
jangjunha<jangjunha113@gmail.com>
Flask 소수전공 강의자료 - 3차시
Flask 소수전공 강의자료 - 3차시
Flask 소수전공 강의자료 - 3차시
Flask 소수전공 강의자료 - 3차시
Flask 소수전공 강의자료 - 3차시
Flask 소수전공 강의자료 - 3차시
> pip install Flask-SQLAlchemy
from flask_sqlalchemy import SQLAlchemy
app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///yourdb.db'
db = SQLAlchemy(app)
class Message(db.Model):
id = db.Column(db.Integer, primary_key=True)
title = db.Column(db.Text, nullable=False)
content = db.Column(db.Text, nullable=False)
def __init__(self, title, content):
self.title = title
self.content = content
> python
>>> from application import db
>>> db.create_all()
message = Message(writer=request.form['writer'],
content=request.form['content'])
db.session.add(message)
db.session.commit()
comments = Message.query.order_by('-id').all()
Flask 소수전공 강의자료 - 3차시
Flask 소수전공 강의자료 - 3차시
‣ werkzeug.security.generate_password_hash
‣ werkzeug.security.check_password_hash
from werkzeug.security import generate_password_hash, 
check_password_hash
hashed_password = generate_password_hash(password)
check_password_hash(hashed_password, password)
Flask 소수전공 강의자료 - 3차시
Flask 소수전공 강의자료 - 3차시
username = request.form['username']
sql = "SELECT * FROM user WHERE username='%s'" % username
db.execute(sql)
username = request.form['username']
sql = "SELECT * FROM user WHERE username='?'"
db.execute(sql, (username))
Flask 소수전공 강의자료 - 3차시
Flask 소수전공 강의자료 - 3차시

More Related Content

PDF
Flask 소수전공 강의자료 - 4차시
KEY
Data::FormValidator Simplified
PPT
Mysocial databasequeries
PPT
Mysocial databasequeries
PPTX
Building complex User Interfaces with Sitecore and React
PPTX
Sins Against Drupal 2
PDF
Odoo Experience 2018 - Inherit from These 10 Mixins to Empower Your App
PDF
jQuery secrets
Flask 소수전공 강의자료 - 4차시
Data::FormValidator Simplified
Mysocial databasequeries
Mysocial databasequeries
Building complex User Interfaces with Sitecore and React
Sins Against Drupal 2
Odoo Experience 2018 - Inherit from These 10 Mixins to Empower Your App
jQuery secrets

What's hot (20)

PPTX
Amp Up Your Admin
PPTX
Jquery plugin development
PDF
Get AngularJS Started!
PDF
Meet Magento Sweden - Magento 2 Layout and Code Compilation for Performance
PPTX
Javascript Php Crud
PPTX
Optimizing Magento by Preloading Data
KEY
PHPConf-TW 2012 # Twig
PDF
jQuery UI Widgets, Drag and Drop, Drupal 7 Javascript
PPT
DBIC 2 - Resultsets
PPT
DBIC 3 - Primer
PPTX
Building secured wordpress themes and plugins
PPTX
Magento Dependency Injection
PPTX
Goodbye hook_menu() - Routing and Menus in Drupal 8
PPTX
11. CodeIgniter vederea unei singure inregistrari
PPTX
Mule esb – connecting to ms sql db
PPTX
Routing in Drupal 8
PDF
Virtual Madness @ Etsy
PPTX
Django - sql alchemy - jquery
PPTX
Routing in Drupal 8
PPTX
Amp Up Your Admin
Jquery plugin development
Get AngularJS Started!
Meet Magento Sweden - Magento 2 Layout and Code Compilation for Performance
Javascript Php Crud
Optimizing Magento by Preloading Data
PHPConf-TW 2012 # Twig
jQuery UI Widgets, Drag and Drop, Drupal 7 Javascript
DBIC 2 - Resultsets
DBIC 3 - Primer
Building secured wordpress themes and plugins
Magento Dependency Injection
Goodbye hook_menu() - Routing and Menus in Drupal 8
11. CodeIgniter vederea unei singure inregistrari
Mule esb – connecting to ms sql db
Routing in Drupal 8
Virtual Madness @ Etsy
Django - sql alchemy - jquery
Routing in Drupal 8
Ad

Similar to Flask 소수전공 강의자료 - 3차시 (20)

PPTX
Flask – Python
PPT
Form demoinplaywithmysql
PDF
Practical Google App Engine Applications In Py
PPTX
Web осень 2012 лекция 6
PPTX
Web весна 2013 лекция 6
KEY
LvivPy - Flask in details
PDF
Тестирование и Django
ODP
Pruebas unitarias con django
PDF
Flask patterns
PDF
Separation of concerns - DPC12
KEY
Jython: Python para la plataforma Java (JRSL 09)
PDF
JSLab. Алексей Волков. "React на практике"
KEY
Jython: Python para la plataforma Java (EL2009)
PDF
Gae Meets Django
PDF
TurboGears2 Pluggable Applications
PDF
Power shell examples_v4
PDF
Filling the flask
PPTX
Childthemes ottawa-word camp-1919
DOC
Creating a Simple PHP and MySQL-Based Login System
PDF
Refresh Austin - Intro to Dexy
Flask – Python
Form demoinplaywithmysql
Practical Google App Engine Applications In Py
Web осень 2012 лекция 6
Web весна 2013 лекция 6
LvivPy - Flask in details
Тестирование и Django
Pruebas unitarias con django
Flask patterns
Separation of concerns - DPC12
Jython: Python para la plataforma Java (JRSL 09)
JSLab. Алексей Волков. "React на практике"
Jython: Python para la plataforma Java (EL2009)
Gae Meets Django
TurboGears2 Pluggable Applications
Power shell examples_v4
Filling the flask
Childthemes ottawa-word camp-1919
Creating a Simple PHP and MySQL-Based Login System
Refresh Austin - Intro to Dexy
Ad

More from Junha Jang (8)

PDF
Flask 소수전공 강의자료 - 1차시
PDF
Flask 소수전공 강의자료 - 2차시
PDF
Java 스터디 강의자료 - 1차시
PDF
C언어 스터디 강의자료 - 5차시
PDF
C언어 스터디 강의자료 - 4차시
PDF
C언어 스터디 강의자료 - 3차시
PDF
C언어 스터디 강의자료 - 2차시
PDF
C언어 스터디 강의자료 - 1차시
Flask 소수전공 강의자료 - 1차시
Flask 소수전공 강의자료 - 2차시
Java 스터디 강의자료 - 1차시
C언어 스터디 강의자료 - 5차시
C언어 스터디 강의자료 - 4차시
C언어 스터디 강의자료 - 3차시
C언어 스터디 강의자료 - 2차시
C언어 스터디 강의자료 - 1차시

Recently uploaded (20)

PPTX
bas. eng. economics group 4 presentation 1.pptx
PDF
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
PPTX
additive manufacturing of ss316l using mig welding
PDF
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
PPT
Project quality management in manufacturing
PDF
Structs to JSON How Go Powers REST APIs.pdf
PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PDF
PPT on Performance Review to get promotions
PPTX
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
PPTX
web development for engineering and engineering
PDF
Model Code of Practice - Construction Work - 21102022 .pdf
PPTX
Strings in CPP - Strings in C++ are sequences of characters used to store and...
PPTX
OOP with Java - Java Introduction (Basics)
PDF
composite construction of structures.pdf
PDF
Well-logging-methods_new................
DOCX
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
PPTX
CH1 Production IntroductoryConcepts.pptx
PPTX
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
PPTX
Welding lecture in detail for understanding
PPTX
Foundation to blockchain - A guide to Blockchain Tech
bas. eng. economics group 4 presentation 1.pptx
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
additive manufacturing of ss316l using mig welding
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
Project quality management in manufacturing
Structs to JSON How Go Powers REST APIs.pdf
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PPT on Performance Review to get promotions
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
web development for engineering and engineering
Model Code of Practice - Construction Work - 21102022 .pdf
Strings in CPP - Strings in C++ are sequences of characters used to store and...
OOP with Java - Java Introduction (Basics)
composite construction of structures.pdf
Well-logging-methods_new................
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
CH1 Production IntroductoryConcepts.pptx
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
Welding lecture in detail for understanding
Foundation to blockchain - A guide to Blockchain Tech

Flask 소수전공 강의자료 - 3차시