atoti_azure#

Code to load CSV and Parquet files from Azure Blob Storage into Atoti tables.

Authentication is done with a connection string that will be read from the AZURE_CONNECTION_STRING environment variable or, if it does not exist, from the file at ~/.azure/credentials (C:\\Users\\{USERNAME}\\.azure\\credentials on Windows).

Example

>>> table = session.read_csv(
...     "https://atotipubliccsv.blob.core.windows.net/csv/city.csv", keys=["city"]
... )
>>> table.head().sort_index()
        value
city
London  200.0
Paris   100.0