4 lines
115 B
Python
4 lines
115 B
Python
|
|
from pymilvus import MilvusClient
|
||
|
|
|
||
|
|
client = MilvusClient("http://127.0.0.1:19530")
|
||
|
|
print(client.list_collections())
|