Azure blob storage filesystem for PyFilesystem2
Project description
fs-azureblob
Installation
The package can be installed via pip:
pip install git+https://github.com/Breakthrough-Energy/fs-azureblob
Or by cloning the repository and installing directly:
git clone https://github.com/Breakthrough-Energy/fs-azureblob
cd fs-azureblob
pip install .
Either approach will also install the core fs
package if it's not already installed.
Usage
This library implements the pyfilesystem API for blob storage containers in a general
purpose storage account. There are implementations for the original blob storage, which
uses a flat namespace with virtual directories, and accounts with hierarchical namespace
enabled, which adds native directory support as well as other features. The type of
account must be specified when a filesystem is instantiated: use the azblob
protocol,
or BlobFS
class for accounts with a flat namespace, or the azblobv2
protocol or the
BlobFSV2
class for accounts with a hierarchical namespace.
Opener
Use fs.open_fs
to open a filesystem with an azure blob
FS URL, where protocol
is
either azblob
or azblobv2
:
import fs
my_fs = fs.open_fs("[protocol]://[account_name]:[account_key]@[container]")
Constructor
The BlobFS
(or BlobFSV2
) class can also be instantiated directly
from fs.azblob import BlobFS
my_fs = BlobFS(account_name, container, account_key)
using the following arguments:
account_name
: the name of the storage accountcontainer
: the blob containeraccount_key
: optional, but required for write operations or depending on the storage account access policies
Note
The following can be ignored if using an account with hierarchical namespace.
Since blob storage uses a flat namespace (directories don't really exist), we create a
placeholder file to represent them, always named .fs_azblob
. This is an empty blob
which is created for new directories, removed when a directory is removed, and omitted
from listdir
results, so should be transparent to users. To use this package on a new
blob storage container, nothing needs to be done. For usage on an existing container,
one should create this structure using the azure portal, sdk, or preferred tool, to
ensure this package will function as expected.
Additionally, this package is intended to operate on "block blobs". Other blob types include page blobs and append blobs. The package has not been tested on these types.
See also
- fs, the core PyFilesystem2 library
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 Distribution
Built Distribution
Hashes for fs_azureblob-0.2.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 92b6efb9e117a42e41a05f666067b9e97b85675bb74a081b83fb4101a74d2367 |
|
MD5 | e1f3dfb22d0d02a6575c90fbe098b1ed |
|
BLAKE2b-256 | 4e098c923c5f7ed3cb96a960c70672d692a2df2aeb1c6069d04ba9008f21ed82 |