We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example in python from NHSX data engineering:
# Helper functions # ------------------------------------------------------------------------- def datalake_download(CONNECTION_STRING, file_system, source_path, source_file): service_client = DataLakeServiceClient.from_connection_string(CONNECTION_STRING) file_system_client = service_client.get_file_system_client(file_system=file_system) directory_client = file_system_client.get_directory_client(source_path) file_client = directory_client.get_file_client(source_file) download = file_client.download_file() downloaded_bytes = download.readall() return downloaded_bytes
where CONNECTION_STRING is an environmental variable.
CONNECTION_STRING
The text was updated successfully, but these errors were encountered:
When branches are created from issues, their pull requests are automatically linked.
Example in python from NHSX data engineering:
where
CONNECTION_STRING
is an environmental variable.The text was updated successfully, but these errors were encountered: