You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
service = TableServiceClient.from_connection_string(conn_str=connection_string)
78
82
```
79
83
80
84
##### Creating the client from a SAS token
81
85
To use a [shared access signature (SAS) token][azure_sas_token], provide the token as a string. If your account URL includes the SAS token, omit the credential parameter. You can generate a SAS token from the Azure Portal under [Shared access signature](https://docs.microsoft.com/rest/api/storageservices/create-service-sas) or use one of the `generate_*_sas()`
82
86
functions to create a sas token for the account or table:
83
87
84
88
```python
85
-
from datetime import datetime, timedelta
86
-
from azure.data.tables import TableServiceClient, generate_account_sas, ResourceTypes, AccountSasPermissions
0 commit comments