Access datastore uri with fsspec
Project description
Filesystem interface to Azure Machine Learning defined URIs
Getting started
This package can be installed using:
pip install azureml-fsspec
Examples
Accepted uri format is Azure Machcine Learning defined datastore uri: azureml://subscriptions/([^/]+)/resourcegroups/([^/]+)/workspaces/([^/]+)/datastores/([^/]+)/paths/([^/]+)
# load parquet file to pandas
import pandas
df = pandas.read_parquet('azureml://subscriptions/{sub_id}/resourcegroups/{rs_group}/workspaces/{ws}
/datastores/workspaceblobstore/paths/myfolder/mydata.parquet')
# load csv file to pandas
import pandas
df = pandas.read_csv('azureml://subscriptions/{sub_id}/resourcegroups/{rs_group}/workspaces/{ws}
/datastores/workspaceblobstore/paths/myfolder/mydata.csv')
# load parquet file to dask
import dask.dataframe as dd
df = dd.read_parquet('azureml://subscriptions/{sub_id}/resourcegroups/{rs_group}/workspaces/{ws}
/datastores/workspaceblobstore/paths/myfolder/mydata.parquet')
# load csv file to dask
import dask.dataframe as dd
df = dd.read_csv('azureml://subscriptions/{sub_id}/resourcegroups/{rs_group}/workspaces/{ws}
/datastores/workspaceblobstore/paths/myfolder/mydata.csv')
Release History
0.1.0b1
Features Added
- Initial public preview release of FileSystem for Azure Machine Learning defined datastore uri
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file azureml_fsspec-0.1.0b1-py3-none-any.whl
.
File metadata
- Download URL: azureml_fsspec-0.1.0b1-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54adbf49cf3e241e9ed51e91df25cc2d2ac6902c6103678ab6660cf4b3867683 |
|
MD5 | 206ab388ecdac6d8f6b4fa7506b3e2a7 |
|
BLAKE2b-256 | f71f1496b7d791e2eb9e1e4b78243242dc443c2ae97dcc6f6853d00030f011f6 |