diff --git a/packages/python/README.md b/packages/python/README.md index 40de2a9..17c366f 100644 --- a/packages/python/README.md +++ b/packages/python/README.md @@ -34,7 +34,7 @@ conn = sqlite3.connect("example.db") # Load the sqlite-vector extension # pip will install the correct binary package for your platform and architecture -ext_path = importlib.resources.files("sqlite_vector.binaries") / "vector" +ext_path = importlib.resources.files("sqlite-vector.binaries") / "vector" conn.enable_load_extension(True) conn.load_extension(str(ext_path)) @@ -43,4 +43,4 @@ conn.enable_load_extension(False) # Now you can use sqlite-vector features in your SQL queries print(conn.execute("SELECT vector_version();").fetchone()) -``` \ No newline at end of file +```