docs: improve style and introduction to Python API docs (#1885)

I found the signatures difficult to read and the parameter section not
very space efficient.
This commit is contained in:
Will Jones
2024-11-26 09:17:35 -08:00
committed by GitHub
parent d32360b99d
commit 69d9beebc7
2 changed files with 14 additions and 1 deletions

View File

@@ -1,6 +1,16 @@
# Python API Reference
This section contains the API reference for the OSS Python API.
This section contains the API reference for the Python API. There is a
synchronous and an asynchronous API client.
The general flow of using the API is:
1. Use [lancedb.connect][] or [lancedb.connect_async][] to connect to a database.
2. Use the returned [lancedb.DBConnection][] or [lancedb.AsyncConnection][] to
create or open tables.
3. Use the returned [lancedb.table.Table][] or [lancedb.AsyncTable][] to query
or modify tables.
## Installation