가끔.. 나라이름 리스트를 불러와야 하는일이 생기는데 이러한 부분이 django-countries라는 라이브러리를 이용해서 한번에 해결할수 있다는걸 며칠전에 알았다. 새삼 이런부분을 찾지 않고 지금까지 텍스트 나 API불러왔돈 본인 스스로가 후회가 밀려온다.
pip install django-countries
pip install django-countries
로 설치가 가능하며 나라 리스트를 불러와서 넣어 주는 라이브러리 입니다.
아래와 같이 settings.py에 추가하여 모델에 직접적으로 추가하여 사용 할 수 있다.
THIRD_PARTY_APPS = [
"django-countries",
]
from django_countries.fields import CountryField
class Order( models.Model):
.
.
.
country = CountryField()
'Programming > Python' 카테고리의 다른 글
[Django] Error django.core.exceptions.SuspiciousFileOperation: Detected path traversal attempt (0) | 2023.02.01 |
---|---|
[Django] type 'PosixPath' is not iterable 에러 (0) | 2022.08.13 |
[Django] 다중 필터 적용 (1) | 2021.10.29 |
[Django] QuerySet Django order_by 쿼리 세트, 오름차순 및 내림차순 (0) | 2021.08.23 |
[python] String Null 값 조건문 (0) | 2021.06.02 |