FAQΒΆ

  1. Incorrect padding

  2. Magic command %blob_open does not work

Incorrect padding

The following crypted message happens sometimes:

Error: Incorrect padding

It is usually due to an incorrect password. Some notebooks uses:

import pyquickhelper.ipythonhelper as ipy
params={"blob_storage":"hdblobstorage", "password":""}
ipy.open_html_form(params=params,title="credentials",key_save="blobservice")

blobstorage = blobservice["blob_storage"]
blobpassword = blobservice["password"]

%load_ext pyenbc
%blob_open

This code avoids the author letting password in a notebook but you can just replace everything by:

blobstorage = "<username>"
blobpassword = "****long*key*******=="

%load_ext pyenbc
%blob_open

(original entry : magic_azure.py:docstring of pyenbc.remote.magic_azure.MagicAzure, line 17)

Magic command %blob_open does not work

Try this:

%load_ext pyenbc

The exception tells more about what goes wrong. Usually a module is missing.

(original entry : magic_azure.py:docstring of pyenbc.remote.magic_azure.MagicAzure, line 7)