2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Semantic link を使用して Microsoft Fabric ワークスペース上のアイテムを一覧表示する

Last updated at Posted at 2024-02-13

はじめに

REST APIとか使わずにFabric 内でアイテム一覧を取得したかった

参考

手順

1.以下のコードを実行する

pyspark

import sempy.fabric as fabric

items=fabric.list_items()
display(items)


image.png

2.フィルタした例(データラングラー使いました。

pyspark
# Pandas DataFrame の Data Wrangler によって生成されたコード

def clean_data(items):
    # 列に基づいて行をフィルター処理する: 'Type'
    items = items[(items['Type'] == "SQLEndpoint") | (items['Type'] == "Warehouse")]
    return items

items_filtered= clean_data(items)
display(items_filtered)

image.png

補足

セマンティックリンクで帰ってくるデータフレームはspark じゃなくてpandasなので少し面喰らう。しかしその分データラングラーすぐ起動できるので〇

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?