isinstance를 궁금하게 된 계기는 drf views.py를 조사하게 된 것이 계기였다. def exception_handler(exc, context): """ Returns the response that should be used for any given exception. By default we handle the REST framework `APIException`, and also Django's built-in `Http404` and `PermissionDenied` exceptions. Any unhandled exceptions may return `None`, which will cause a 500 error to be raised. """ if isinstance(exc, ..
1. 가상환경 설정 및 장고 설치 #가상환경 설정 python3 -m venv venv #가상환경 ON source ./venv/bin/activate #django 설치 pip install django #프로젝트 설치 django-admin startproject batch . 도커환경에 맞게 구현하기 위해 해당 디렉터리 구조를 변경하였다. 2. django settings.py #장고 프로젝트 내의 시간을 한국 시간으로 설정 LANGUAGE_CODE = 'ko' TIME_ZONE = 'Asia/Seoul' USE_I18N = True USE_L10N = True USE_TZ = True # celery와 관련된 환경설정 CELERY_BROKER_URL = 'redis://redis:6379/0' C..
1. error 해결법 setattr로 해결하기 사용법 setattr(obj,key,value) 만일 독자가 obj[key]=value 형식으로 했는데 제목과 같은 에러가 난다면 위와 같이 "setattr"로 해결해보는 것도 좋은 판단이다. 참고: https://stackoverflow.com/questions/8542343/object-does-not-support-item-assignment-error Object does not support item assignment error In my views.py I assign values before saving the form. I used to do it the following way: projectForm.lat = session_results..
1. docker-compose.yml 파일 version: "3" services: nginx: container_name: nginx build: ./nginx restart: always ports: - "7070:80" volumes: - ./backend/entry:/srv/code/entry - ./log:/var/log/nginx depends_on: - web db: image: postgres container_name: main.postgres restart: always environment: POSTGRES_DATABASE: "${DB_NAME}" POSTGRES_USER: "${DB_USER}" POSTGRES_PASSWORD: "${DB_PASSWORD}" ports: - "70..
def test_report_create(self): print("test_report_create") response = self.client.post(self.url, data={'title': 'hi', 'content': 'hello'}, **{'HTTP_AUTHORIZATION': self.access_token_1}) self.assertEqual(response.status_code, 200) 위와 같이 **을 붙여서 표현 하는데 이 때 'HTTP_'을 붙여서 표현하는 것이 중요하다. 참고글: https://ssamko.tistory.com/53 [Django] Test 코드 작성시 header 추가하기 Django를 API서버로만 이용할 때, 외부 사용자들에게 header를 통해 인증정보를..
def test_report_create(self): print("test_report_create") access_token = self.common_report_create({"email": "12@kakao.com", "password": "django_kakao_test"}) response = RequestsClient().post('http://127.0.0.1:8000/api/report', data={'title': 'hi', 'content': 'hello'}, headers={'Authorization': access_token}) self.assertEqual(response.status_code, 200) response = self.client.post(url, data={'con..
- Total
- Today
- Yesterday
- 알고리즘
- 카카오
- docker-compose
- Pattern
- 파이썬
- docker
- headers
- 그래프
- setattr
- Spring
- ubuntu
- 자바
- thread
- BFS
- DRF
- env
- django
- Python
- 백준
- postgres
- dockerignore
- Java
- 2021 KAKAO BLIND RECRUITMENT
- Command Line
- Collections
- Linux
- 면접
- Celery
- 프로그래머스
- PostgreSQL
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |