Skip to content

Notebooks

deploy_all_notebooks(workspace, path, start_path=None)

Deploy all notebooks to workspace.

Parameters:

Name Type Description Default
workspace str

The name or ID of the workspace.

required
path str

The path to the notebooks.

required
start_path Optional[str]

The starting path for folder creation.

None
Source code in src/pyfabricops/helpers/notebooks.py
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
def deploy_all_notebooks(
    workspace: str,
    path: str,
    start_path: Optional[str] = None,
) -> None:
    """
    Deploy all notebooks to workspace.

    Args:
        workspace (str): The name or ID of the workspace.
        path (str): The path to the notebooks.
        start_path (Optional[str]): The starting path for folder creation.
    """
    workspace_id = resolve_workspace(workspace)
    if workspace_id is None:
        return None

    notebooks_paths = list_paths_of_type(path, 'Notebook')

    for path_ in notebooks_paths:

        display_name = extract_display_name_from_platform(path_)
        if display_name is None:
            return None

        item_id = resolve_notebook(workspace_id, display_name)

        folder_path_string = extract_middle_path(path_, start_path=start_path)
        folder_id = create_folders_from_path_string(
            workspace_id, folder_path_string
        )

        item_definition = pack_item_definition(path_)

        if item_id is None:
            create_notebook(
                workspace_id,
                display_name=display_name,
                item_definition=item_definition,
                folder=folder_id,
                df=False,
            )

        else:
            update_notebook_definition(
                workspace_id,
                item_id,
                item_definition=item_definition,
                df=False,
            )

    logger.success(
        f'All notebooks were deployed to workspace "{workspace}" successfully.'
    )
    return None

deploy_notebook(workspace, path, start_path=None, description=None, df=True)

Deploy a notebook to workspace.

Parameters:

Name Type Description Default
workspace str

The name or ID of the workspace.

required
path str

The path to the notebook.

required
start_path Optional[str]

The starting path for folder creation.

None
description Optional[str]

Description for the notebook.

None
df Optional[bool]

If True, returns a DataFrame, otherwise returns a dictionary.

True

Returns:

Type Description
Union[DataFrame, Dict[str, Any], None]

The deployed notebook or None if deployment fails.

Source code in src/pyfabricops/helpers/notebooks.py
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
@df
def deploy_notebook(
    workspace: str,
    path: str,
    start_path: Optional[str] = None,
    description: Optional[str] = None,
    df: Optional[bool] = True,
) -> Union[DataFrame, Dict[str, Any], None]:
    """
    Deploy a notebook to workspace.

    Args:
        workspace (str): The name or ID of the workspace.
        path (str): The path to the notebook.
        start_path (Optional[str]): The starting path for folder creation.
        description (Optional[str]): Description for the notebook.
        df (Optional[bool]): If True, returns a DataFrame, otherwise returns a dictionary.

    Returns:
        (Union[DataFrame, Dict[str, Any], None]): The deployed notebook or None if deployment fails.
    """
    workspace_id = resolve_workspace(workspace)
    if workspace_id is None:
        return None

    display_name = extract_display_name_from_platform(path)
    if display_name is None:
        return None

    item_id = resolve_notebook(workspace_id, display_name)

    folder_path_string = extract_middle_path(path, start_path=start_path)
    folder_id = create_folders_from_path_string(
        workspace_id, folder_path_string
    )

    item_definition = pack_item_definition(path)

    if item_id is None:
        return create_notebook(
            workspace_id,
            display_name=display_name,
            item_definition=item_definition,
            description=description,
            folder=folder_id,
            df=False,
        )

    else:
        return update_notebook_definition(
            workspace_id,
            item_id,
            item_definition=item_definition,
            df=False,
        )

export_all_notebooks(workspace, path)

Export a notebook to path.

Parameters:

Name Type Description Default
workspace str

The name or ID of the workspace.

required
path Union[str, Path]

The path to export to.

required
Source code in src/pyfabricops/helpers/notebooks.py
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
def export_all_notebooks(
    workspace: str,
    path: Union[str, Path],
) -> None:
    """
    Export a notebook to path.

    Args:
        workspace (str): The name or ID of the workspace.
        path (Union[str, Path]): The path to export to.
    """
    workspace_id = resolve_workspace(workspace)
    if workspace_id is None:
        return None

    items = list_notebooks(workspace_id, df=False)
    if items is None:
        return None

    for item in items:
        try:
            folder_path = resolve_folder_from_id_to_path(
                workspace_id, item['folderId']
            )
        except:
            logger.info(
                f'{item["displayName"]}.Notebook is not inside a folder.'
            )
            folder_path = None

        if folder_path is None:
            item_path = Path(path) / (item['displayName'] + '.Notebook')
        else:
            item_path = (
                Path(path) / folder_path / (item['displayName'] + '.Notebook')
            )
        os.makedirs(item_path, exist_ok=True)

        definition = get_notebook_definition(workspace_id, item['id'])
        if definition is None:
            return None

        unpack_item_definition(definition, item_path)

    logger.success(f'All notebooks were exported to {path} successfully.')
    return None

export_notebook(workspace, notebook, path)

Export a notebook to path.

Parameters:

Name Type Description Default
workspace str

The name or ID of the workspace.

required
notebook str

The name or ID of the notebook.

required
path Union[str, Path]

The path to export to.

required
Source code in src/pyfabricops/helpers/notebooks.py
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
def export_notebook(
    workspace: str,
    notebook: str,
    path: Union[str, Path],
) -> None:
    """
    Export a notebook to path.

    Args:
        workspace (str): The name or ID of the workspace.
        notebook (str): The name or ID of the notebook.
        path (Union[str, Path]): The path to export to.
    """
    workspace_id = resolve_workspace(workspace)
    if workspace_id is None:
        return None

    item = get_notebook(workspace_id, notebook, df=False)
    try:
        folder_path = resolve_folder_from_id_to_path(
            workspace_id, item['folderId']
        )
    except:
        logger.info(f'{item["displayName"]}.Notebook is not inside a folder.')
        folder_path = None

    if folder_path is None:
        item_path = Path(path) / (item['displayName'] + '.Notebook')
    else:
        item_path = (
            Path(path) / folder_path / (item['displayName'] + '.Notebook')
        )
    os.makedirs(item_path, exist_ok=True)

    definition = get_notebook_definition(workspace_id, item['id'])
    if definition is None:
        return None

    unpack_item_definition(definition, item_path)

    logger.success(
        f'`{item["displayName"]}.Notebook` was exported to {item_path} successfully.'
    )
    return None

extract_notebook_parameters(path)

Extract parameters from a Fabric notebook-content.py file.

Parameters:

Name Type Description Default
path str

Path to the Notebook

required

Returns:

Type Description
List[Dict[str, Any]]

List of dictionaries containing the extracted parameters

Source code in src/pyfabricops/helpers/notebooks.py
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
def extract_notebook_parameters(path: str) -> List[Dict[str, Any]]:
    """
    Extract parameters from a Fabric notebook-content.py file.

    Args:
        path (str): Path to the Notebook

    Returns:
        (List[Dict[str, Any]]): List of dictionaries containing the extracted parameters
    """
    path = Path(path) / 'notebook-content.py'

    with open(path, 'r', encoding='utf-8') as f:
        content = f.read()

    parameters = []

    # Find the PARAMETERS CELL section
    # Look for "# PARAMETERS CELL ********************" followed by the parameters
    parameters_pattern = (
        r'# PARAMETERS CELL \*+\s*\n(.*?)(?=# METADATA|# CELL|# MARKDOWN|$)'
    )
    parameters_match = re.search(parameters_pattern, content, re.DOTALL)

    if parameters_match:
        parameters_content = parameters_match.group(1).strip()

        # Extract variable assignments
        # Pattern to find variable = "value" or variable = f"value"
        variable_patterns = [
            r'(\w+)\s*=\s*"([^"]*)"',  # variable = "value"
            r'(\w+)\s*=\s*f"([^"]*)"',  # variable = f"value"
            r'(\w+)\s*=\s*\'([^\']*)\'',  # variable = 'value'
            r'(\w+)\s*=\s*f\'([^\']*)\'',  # variable = f'value'
        ]

        for pattern in variable_patterns:
            matches = re.findall(pattern, parameters_content)
            for var_name, var_value in matches:
                # Skip variables that are derived from other variables (contain f-string references)
                if not re.search(r'\{[^}]+\}', var_value):
                    parameters.append(
                        {
                            'variable_name': var_name,
                            'variable_value': var_value,
                            'parameter_type': 'string',
                        }
                    )

        # Also look for numeric and boolean assignments
        numeric_pattern = r'(\w+)\s*=\s*(\d+(?:\.\d+)?)'
        numeric_matches = re.findall(numeric_pattern, parameters_content)
        for var_name, var_value in numeric_matches:
            parameters.append(
                {
                    'variable_name': var_name,
                    'variable_value': var_value,
                    'parameter_type': 'numeric',
                }
            )

        boolean_pattern = r'(\w+)\s*=\s*(True|False)'
        boolean_matches = re.findall(boolean_pattern, parameters_content)
        for var_name, var_value in boolean_matches:
            parameters.append(
                {
                    'variable_name': var_name,
                    'variable_value': var_value,
                    'parameter_type': 'boolean',
                }
            )

    return parameters

get_all_notebooks_config(workspace)

Get notebooks config from a workspace.

Parameters:

Name Type Description Default
workspace str

The name or ID from the workspace.

required

Returns:

Type Description
Union[Dict[str, Any], None]

The dict config of all notebooks in the workspace

Source code in src/pyfabricops/helpers/notebooks.py
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
def get_all_notebooks_config(
    workspace: str,
) -> Union[Dict[str, Any], None]:
    """
    Get notebooks config from a workspace.

    Args:
        workspace (str): The name or ID from the workspace.

    Returns:
        (Union[Dict[str, Any], None]): The dict config of all notebooks in the workspace
    """
    items = list_notebooks(workspace, df=False)

    if items is None:
        return None

    config = {}

    for item in items:

        item_data = get_notebook(workspace, item['id'], df=False)

        config[item['displayName']] = {
            'id': item['id'],
            'description': item.get('description', None),
            'folder_id': ''
            if item.get('folderId') is None or pd.isna(item.get('folderId'))
            else item['folderId'],
        }

    return config

get_notebook_config(workspace, notebook)

Get a specific notebook config from a workspace.

Parameters:

Name Type Description Default
workspace str

The name or ID of the workspace.

required
notebook str

The name or ID of the notebook.

required

Returns:

Type Description
Union[Dict[str, Any], None]

The dict config from the notebook.

Source code in src/pyfabricops/helpers/notebooks.py
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
def get_notebook_config(
    workspace: str, notebook: str
) -> Union[Dict[str, Any], None]:
    """
    Get a specific notebook config from a workspace.

    Args:
        workspace (str): The name or ID of the workspace.
        notebook (str): The name or ID of the notebook.

    Returns:
        (Union[Dict[str, Any], None]): The dict config from the notebook.
    """
    item = notebook
    item_data = get_notebook(workspace, item, df=False)

    if item_data is None:
        return None

    else:
        config = {}
        config = config[item_data.get('displayName')] = {}

        config = {
            'id': item_data['id'],
            'description': item_data.get('description', None),
            'folder_id': ''
            if item_data.get('folderId') is None
            or pd.isna(item_data.get('folderId'))
            else item_data['folderId'],
        }

        return config

replace_notebook_parameters_with_placeholders(path, parameters)

Replace parameters with placeholders in a Fabric notebook-content.py file.

Parameters:

Name Type Description Default
path str

Path to the Notebook

required
parameters list

List of parameter dictionaries to replace

required
Source code in src/pyfabricops/helpers/notebooks.py
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
def replace_notebook_parameters_with_placeholders(
    path: str, parameters: List[Dict[str, Any]]
) -> None:
    """
    Replace parameters with placeholders in a Fabric notebook-content.py file.

    Args:
        path (str): Path to the Notebook
        parameters (list): List of parameter dictionaries to replace
    """
    notebook_name = path.split('/')[-1].split('.Notebook')[0]

    path = Path(path) / 'notebook-content.py'

    with open(path, 'r', encoding='utf-8') as f:
        content = f.read()

    # Replace each parameter with a placeholder
    for param_dict in parameters:
        var_name = param_dict['variable_name']
        var_value = param_dict['variable_value']
        param_type = param_dict['parameter_type']

        placeholder = f'#{{{notebook_name}_{var_name}}}#'

        # Create different replacement patterns based on parameter type
        if param_type == 'string':
            # Handle both regular strings and f-strings
            old_patterns = [
                f'{var_name} = "{var_value}"',
                f'{var_name} = f"{var_value}"',
                f"{var_name} = '{var_value}'",
                f"{var_name} = f'{var_value}'",
            ]
            new_value = f'{var_name} = "{placeholder}"'
        elif param_type in ['numeric', 'boolean']:
            old_patterns = [f'{var_name} = {var_value}']
            new_value = f'{var_name} = "{placeholder}"'

        # Replace all matching patterns
        for old_pattern in old_patterns:
            if old_pattern in content:
                content = content.replace(old_pattern, new_value)
                break

    with open(path, 'w', encoding='utf-8') as f:
        f.write(content)

replace_notebook_placeholders_with_parameters(path, parameters)

Replace placeholders with actual parameters in a Fabric notebook-content.py file.

Parameters:

Name Type Description Default
path str

Path to the Notebook

required
parameters list

List of parameter dictionaries with actual values

required
Source code in src/pyfabricops/helpers/notebooks.py
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
def replace_notebook_placeholders_with_parameters(
    path: str, parameters: List[Dict[str, Any]]
) -> None:
    """
    Replace placeholders with actual parameters in a Fabric notebook-content.py file.

    Args:
        path (str): Path to the Notebook
        parameters (list): List of parameter dictionaries with actual values
    """
    notebook_name = path.split('/')[-1].split('.Notebook')[0]

    path = Path(path) / 'notebook-content.py'

    with open(path, 'r', encoding='utf-8') as f:
        content = f.read()

    # Replace placeholders with actual values
    for param_dict in parameters:
        var_name = param_dict['variable_name']
        var_value = param_dict['variable_value']
        param_type = param_dict['parameter_type']

        placeholder = f'#{{{notebook_name}_{var_name}}}#'

        # Restore original format based on parameter type
        if param_type == 'string':
            new_value = f'{var_name} = "{var_value}"'
        elif param_type in ['numeric', 'boolean']:
            new_value = f'{var_name} = {var_value}'

        # Replace placeholder with original value
        old_pattern = f'{var_name} = "{placeholder}"'
        if old_pattern in content:
            content = content.replace(old_pattern, new_value)

    with open(path, 'w', encoding='utf-8') as f:
        f.write(content)