6 lines
135 B
Python
6 lines
135 B
Python
|
|
from pymilvus import connections, db
|
||
|
|
|
||
|
|
conn = connections.connect(host="10.1.1.240", port=19530)
|
||
|
|
|
||
|
|
database = db.create_database("mixi")
|