■ Document 클래스에서 Collection 서브 클래스와 name 변수를 사용해 MongoDB 컬렉션명을 설정하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
from typing import Optional, List from beanie import Document class Event(Document): creator : Optional[str] title : str image : str description : str tagList : List[str] location : str class Collection: name = "event" |