Python Flask-RESTPlus로 API 서버 구축
사용기술
- Flask-Bcrypt : 패스워드 등 데이터 암호화 모듈
- Flask-Migrate : 데이터베이스 마이그레이션 모듈
- Flask-SQLAlchemy : 데이터베이스 ORM(Object-relational mapping) 모듈
- PyJWT : JWT(Json Web Token) 웹 인증 모듈
- Flask-Script : 외부 모듈 커멘드 실행 관리 모듈
- Namespaces(Blueprints)
- Flask-restplus
- UnitTest
원문
How to structure a Flask-RESTPlus web service for production builds
by Greg Obinna How to structure a Flask-RESTPlus web service for production builds Image credit - frsjobs.co.ukIn this guide I’ll show you a step by step approach for structuring a Flask RESTPlus web application for testing, development and production envi
www.freecodecamp.org
변역
Flask로 API 서버 만들기 (1) - 개발 환경 준비
API 테스트에 사용할 대상 서버를 Flask로 만들어 보기로 했습니다. API 테스트 교육할때 마다 API 서버를 찾아 다녔는데 이번에 만들어 놓으면 좋을 것 같습니다. 찾아보니 좋은 글이 있어서 이걸 참고하기로 합..
dejavuqa.tistory.com
Flask로 API 서버 만들기 (2) - config 와 실행 확인
Developing API Sample Server by Flask Original Post: How to structure a Flask-RESTPlus web service for production builds Github: https://github.com/cosmic-byte/flask-restplus-boilerplate Flask로 API..
dejavuqa.tistory.com
Flask로 API 서버 만들기 (3) - User 테이블 만들기
Developing API Sample Server by Flask Original Post: How to structure a Flask-RESTPlus web service for production builds Github: https://github.com/cosmic-byte/flask-restplus-boilerplate Flask로 API..
dejavuqa.tistory.com
Flask로 API 서버 만들기 (4) - Testing
Developing API Sample Server by Flask Original Post: How to structure a Flask-RESTPlus web service for production builds Github: https://github.com/cosmic-byte/flask-restplus-boilerplate Flask로 API..
dejavuqa.tistory.com
Flask로 API 서버 만들기 (5) - User Operations
Developing API Sample Server by Flask Original Post: How to structure a Flask-RESTPlus web service for production builds Github: https://github.com/cosmic-byte/flask-restplus-boilerplate Flask로 API..
dejavuqa.tistory.com
Flask로 API 서버 만들기 (6) - Security and Authentication
Developing API Sample Server by Flask Original Post: How to structure a Flask-RESTPlus web service for production builds Github: https://github.com/cosmic-byte/flask-restplus-boilerplate Flask로 API..
dejavuqa.tistory.com
Flask로 API 서버 만들기 (7) - Route protection and Authorization
Developing API Sample Server by Flask Original Post: How to structure a Flask-RESTPlus web service for production builds Github: https://github.com/cosmic-byte/flask-restplus-boilerplate Flask로 API..
dejavuqa.tistory.com
Flask로 API 서버 만들기 (8) - Extra tips (Makefiles)
Developing API Sample Server by Flask Original Post: How to structure a Flask-RESTPlus web service for production builds Github: https://github.com/cosmic-byte/flask-restplus-boilerplate Flask로 API..
dejavuqa.tistory.com