(account_name, container_name, file_path, sas_token)
| 21 | |
| 22 | |
| 23 | def get_blob(account_name, container_name, file_path, sas_token): |
| 24 | if not sas_token: |
| 25 | return BlobClient.from_blob_url( |
| 26 | f"https://{account_name}.blob.core.windows.net/{container_name}/{file_path}.sigmf-data", |
| 27 | ) |
| 28 | return BlobClient.from_blob_url( |
| 29 | f"https://{account_name}.blob.core.windows.net/{container_name}/{file_path}.sigmf-data", |
| 30 | credential=sas_token, |
| 31 | ) |
| 32 | |
| 33 | |
| 34 | def get_custom_params(plugin: Plugin, samples: SamplesB64 | SamplesCloud): |
no outgoing calls
no test coverage detected