API Reference¶
The implementation is a native PyO3 extension. Type annotations are shipped in
async_sharepoint.pyi.
CertificateCredential¶
Entra ID certificate credentials. The private key and thumbprint are parsed on construction, so
malformed input raises immediately. Read-only attributes: tenant_id, client_id.
SharePointClient¶
SharePointClient(
site_url,
credential,
*,
properties=None,
item_id=None,
list_url=None,
)
SharePointClient.from_static_token(
site_url,
token,
*,
properties=None,
item_id=None,
list_url=None,
)
from_static_token wraps a token you already hold; it is never refreshed.
The client is an async context manager. Its public methods are:
await aclose()await get(title=None, *, id=None, max_wait=None)await get_default_document_library()await get_items()await get_file(path)await ls()await download(path)
path accepts a server-relative path, an AllItems.aspx?id=... browser link, or a
Doc.aspx?sourcedoc={GUID} browser/share link (resolved via the file's unique id).
await upload(folder_path, filename, content, *, overwrite=True)await add_folder(path, *, overwrite=False)await get_current_user()await get_effective_permissions(path, *, login_name=None)await search(text, *, title=None, id=None, row_limit=6)
SPFile¶
File values expose client, server_relative_path, properties, list_url,
item_id, unique_id, and resolved (a read-only property that is true once resolution
has completed). Their public methods are resolve, download, get_url, and browser_url.
SPFolder¶
Folder values expose client, server_relative_url, properties, list_url,
item_id, and resolved. Their public methods are resolve, ls, and get_url.
SPList¶
List values are returned by SharePointClient.get and
get_default_document_library. They expose client, id, title,
properties, get_items(*, caml=None, folder_path=None, max_wait=None), and get_url.