Python

Flask 를 이용하여 웹앱 만들기

Kyle79 2019. 5. 14. 20:17

Flask 는 Django 에 비하여, 자유도가 높아서 API 어플리케이션이나 마이크로서비스를 만들기에 적합합니다.

더군다나, Django 만큼 충분히 레퍼런스도 보유하고 있습니다.


* 공식 튜토리얼 따라하기

https://blog.outsider.ne.kr/1329

 

Flask 공식 튜토리얼 따라하기 #1 :: Outsider's Dev Story

[Flask 개발환경을 구성](https://blog.outsider.ne.kr/1325)했으므로 이제 Flask 애플리케이션을 개발할 차례가 되었다. 문서를 보면서 대충 눈치껏 만들어 보려고 했지만, 막상 만들려고 하니까 모르는 부분이...

blog.outsider.ne.kr

 

*  Authentication and Authorization With Flask-Login

https://scotch.io/tutorials/authentication-and-authorization-with-flask-login

 

Authentication and Authorization With Flask-Login

Allowing users to login to your app is one of the most common features you'll add to a web app you build. This article will cover how to add simple authentication to your Flask app. The main package we will use to accomplish this is Flask Lo

scotch.io

 

Flask sqlalchemy 다 대다 삽입 데이터

https://codeday.me/ko/qa/20190320/108067.html

 

python – Flask sqlalchemy 다 대다 삽입 데이터 - 코드 로그

인사말, Flask-SQLAlchemy에서 many to many 관계를 만들려고 노력하고 있습니다 만, “many to many identifier database”를 채우는 방법을 모르겠습니다. 내가 뭘 잘못하고 어떻게보아야하는지 이해하도록 도와 주시겠습니까? class User(db.Model): __tablename__ = 'users' user_id = db.Column(db.Integer, primary_key=True) user_fistNam

codeday.me

 

 

https://blog.iolate.kr/m/259

 

Ubuntu 18.04 + Nginx + uWSGI + Python-Flask 설정

개인적으로 nginx 자체는 매력적이라고 생각했지만, php-fpm 이라던가 uwsgi 같이 웹서버에서 직접 붙지 않고 socket 으로 연결되는 방식이 마음에 들지 않아 잘 사용하지 않았다. 설정 및 관리가 좀 더 번거롭기..

blog.iolate.kr