
https://code.visualstudio.com/docs/python/jupyter-support-py Working with Jupyter code cells in the Python Interactive window Working with Jupyter code cells in the Python Interactive window code.visualstudio.com 파이썬의 장점중 하나인, Interactive Coding을 사용하기 위해서, Jupyter를 자주 사용하곤 한다. 이런 유용한, Jupyter를 Visual Code(IDE)에서도 이용할 수 있도록 업데이트가 되었다. Jupyter를 이용하는 방법에 대해 알아보자. 참고 사이트는 상단에 기록해두었다. 각 실행할 구역 마다 # %..

Django서버를 AWS로 배포하려면 Amazon의 EC2 Instance를 이용해야 하는 것인데, EC2 Instance는 Linux로 되어있는 가상 서버이고 이를 활용하기 위해 Linux 명령어를 익힐 필요가 있다. (간단하게, EC2 Instance는 온라인으로 서버를 실행하기 위한 하나의 가상 컴퓨터라고 생각하자 ) 필자가 사용한 방법에는 두가지가 있는데 1. EBCLI을 이용해서, visual code에서 직접 2. EC2 Instance를 직접 만들어주고 Ubuntu환경에서 여기서 1은 wsgi.py에서의 에러가 끝끝내 해결되지 못하고, 배포도 못하고 접게 되는 상황이 되었다. 그래서, 1의 방법은 완전히 접고, 2의 방법으로 새롭게 배포하는 과정을 적어보려고 한다. #Step 1. AWS 로..
https://medium.com/quick-code/token-based-authentication-for-django-rest-framework-44586a9a56fb Token Based Authentication for Django Rest Framework Django is of the popular web development framework based on python having a large community and is used by many top websites presently. And… medium.com : DRF중 Authentication의 방법중 하나인 Token Authentication의 구현 방법에 대해 구글링을 하면, 생각보다 구현하는데 필요한 정보들을 얻는게 어..