Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-blob-changefeed/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ service = ChangeFeedClient(account_url="https://<my-storage-account-name>.blob.c

## Key concepts

#### Clients
### Clients

The Blob ChangeFeed SDK provides one client:
* ChangeFeedClient: this client allows you to get change feed events by page, get all change feed events, get events in a time range, start listing events with a continuation token.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,6 @@ def from_connection_string(
str or dict[str, str] or None
:returns: A change feed client.
:rtype: ~azure.storage.blob.changefeed.ChangeFeedClient

.. admonition:: Example:

.. literalinclude:: ../samples/blob_samples_authentication.py
:start-after: [START auth_from_connection_string]
:end-before: [END auth_from_connection_string]
:language: python
:dedent: 8
:caption: Creating the BlobServiceClient using account_key as credential.
"""
account_url, secondary, credential = parse_connection_str(conn_str, credential, 'blob')
if 'secondary_hostname' not in kwargs:
Expand Down
1 change: 1 addition & 0 deletions sdk/storage/azure-storage-blob-changefeed/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ mypy = false
pyright = false
type_check_samples = false
verifytypes = false
strict_sphinx = true