Flask-RESTX로 Rest API 서버 구성 & Swagger 문서 작성 - 2

개발/Flask 2021. 10. 22. 08:20

지난 포스트에서 데이터베이스와 Flask를 연동한 것에 이어서 API 설계와 구현을 하려고 한다. Flask-RESTX로 Rest API 서버 구성 & Swagger 문서 작성 - 1 깃헙 레포: https://github.com/Comparelt/comparelt-api GitHub - Comparelt/comparelt-api: The backend server with Flask & PostgreSQL The backend server with Flask & PostgreSQL. Contribute to Comparelt.. eight20.tistory.com 필요한 API의 기능적인 구분은 다음과 같다 로그인/회원가입 API 크롤링 API 제품 검색 API 로그인/ 회원 가입 API는 flask-..

Article Thumbnail
macOS HomeBrew 멈춤 현상 발생시 해결법

카테고리 없음 2021. 10. 21. 08:20

가끔 가다 brew install ~ 혹은 brew update를 입력하였는데 HomeBrew가 무한루프에 빠진 것처럼 멈춰있는 경우가 있다. 원인이 뭔지는 모르겠으나 아마 homebrew 환경변수가 어디선가 꼬인 것 같다. 해결 방법은 다음과 같다. ctrl + c를 통해 멈춤 현상을 중단시킨다. brew doctor brew cleanup brew doctor sudo xcode-select --install brew update 링크 ) https://stackoverflow.com/questions/41030429/brew-upgrade-hangs-on-el-capitan `brew upgrade` hangs on El Capitan I can't run brew upgrade without it..

Flask-RESTX로 Rest API 서버 구성 & Swagger 문서 작성 - 1

개발/Flask 2021. 10. 20. 08:20

깃헙 레포: https://github.com/Comparelt/comparelt-api GitHub - Comparelt/comparelt-api: The backend server with Flask & PostgreSQL The backend server with Flask & PostgreSQL. Contribute to Comparelt/comparelt-api development by creating an account on GitHub. github.com 대학교 팀 프로젝트에서 크롤링 웹서비스를 구성하게되었다. 주어진 기간이 길지않아서 백엔드를 구성하는데 많은 시간을 들일 수 없어서 Flask와 PostgreSQL로 빠르게 API 서버를 구축하였다. 대략적으로 API 서버 기능을 명세하면..

Article Thumbnail
psycopg2 macOS 설치 불가 문제

개발/PostgreSQL 2021. 10. 19. 08:20

psycopg2(postgreSQL 파이썬 어댑터)를 pip으로 설치하면 위와 같이 오류가 발생한다. psycopg2 관련 모듈이 업데이트 되면서 postgresql 바이너리를 찾지 못해서 발생하는 오류이다. homebrew install postgresql 위와 같이 postgresql을 다시 설치하고 나서 정상적으로 psycopg2가 설치되었다. 참고) https://stackoverflow.com/questions/11618898/pg-config-executable-not-found pg_config executable not found I am having trouble installing psycopg2. I get the following error when I try to pip insta..

Article Thumbnail