■ MilvusClient 클래스의 has_collection 메소드에서 collection_name 인자를 사용해 컬렉션 존재 여부를 구하는 방법을 보여준다.
▶ main.py
1 2 3 4 5 6 7 8 9 |
from pymilvus import MilvusClient milvusClient = MilvusClient("test.db") hasCollection = milvusClient.has_collection(collection_name = "temp") print(hasCollection) |
▶ requirements.txt
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
environs==9.5.0 grpcio==1.66.2 marshmallow==3.22.0 milvus-lite==2.4.10 numpy==2.1.2 packaging==24.1 pandas==2.2.3 protobuf==5.28.2 pymilvus==2.4.7 python-dateutil==2.9.0.post0 python-dotenv==1.0.1 pytz==2024.2 six==1.16.0 tqdm==4.66.5 tzdata==2024.2 ujson==5.10.0 |
※ pip install pumilvus 명령을 실행했다.