snorrea
Results
2
issues of
snorrea
The following fails: ```python from cloudstorage.drivers.local import LocalDriver storage = LocalDriver(key="./foobar/") storage.create_container("foo") container = storage.get_container("foo") container.upload_blob("./todo.md", blob_name=f"12/1231/todo.md") for b in container: print(b.path, b.name) ``` With the following trace: ``` FileNotFoundError...
AFAIK this library is an abstraction over Azure Storage. If so, why does it require the azure module? In practice, this installs the full suite of Azure modules, including modules...
question