<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Extract API info from Notebooks in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Extract-API-info-from-Notebooks/m-p/4815555#M12119</link>
    <description>&lt;P&gt;&lt;!--   StartFragment    --&gt;&lt;/P&gt;&lt;P&gt;What Might Be Going Wrong&lt;/P&gt;&lt;P&gt;Here are some common culprits:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;STRONG&gt;Notebook Content Access Limitations&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;The Fabric API can list notebooks, but &lt;STRONG&gt;reading their internal code cells isn't always straightforward. If you're using the REST API to fetch notebook metadata, it may not include the actual code content unless explicitly supported.&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;STRONG&gt;Notebook Format&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;Fabric notebooks are stored in a proprietary format, not plain .ipynb. So unless you're parsing the actual notebook file correctly, you might just be getting metadata (like name, ID) but not the code itself.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;STRONG&gt;Authentication Scope&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;If you're using a &lt;STRONG&gt;Service Principal, make sure it has the right permissions to access notebook contents. Some API endpoints may still be limited in preview and not support full content extraction.&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;STRONG&gt;Code Parsing Logic&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;Even if you're getting the code, your script needs to scan for patterns like requests.get(...), http.client, or urllib to detect API calls. If the code uses custom wrappers or indirect methods, it might slip past your filters.&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":hammer_and_wrench:"&gt;🛠&lt;/span&gt;️ Suggested Approach&lt;/P&gt;&lt;P&gt;Here’s a more robust strategy:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Use the Fabric REST API to List Notebooks&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;Confirm you're hitting the right endpoint: GET /workspaces/{workspaceId}/items&lt;/LI&gt;&lt;LI&gt;Filter for items of type Notebook&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Download Notebook Content&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;If possible, use the API or SDK to &lt;STRONG&gt;export the notebook or access its code cells&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;If not supported, consider using the &lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/using-python-experience-on-notebook" target="_blank" rel="noopener"&gt;Fabric Python experience to open notebooks and extract code manually or via automation&lt;/A&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Scan for API Patterns&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;Use regex or AST parsing to look for:&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;import requests requests.get("&lt;A href="https://api.example.com" target="_blank" rel="noopener"&gt;https://api.example.com")&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;UL&gt;&lt;LI&gt;Also check for http.client, urllib, or any custom API wrappers&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;STRONG&gt;Community Insight&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;You're not the only one exploring this. A similar &lt;A href="https://community.fabric.microsoft.com/t5/Data-Engineering/Extract-API-info-from-Notebooks/m-p/4814802" target="_blank" rel="noopener"&gt;discussion on the Fabric Community highlights the same issue—others are trying to extract API usage but hitting blanks, likely due to content access limitations.&lt;/A&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you'd like, I can help you write a Python script that scans notebook code for API calls once you have the content. Or we can explore whether using Git integration or exporting notebooks to a readable format might help. Let me know how deep you want to go.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;!--   StartFragment    --&gt;&lt;/P&gt;&lt;P&gt;Here’s a more robust strategy:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Use the Fabric REST API to List Notebooks&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;Confirm you're hitting the right endpoint: GET /workspaces/{workspaceId}/items&lt;/LI&gt;&lt;LI&gt;Filter for items of type Notebook&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Download Notebook Content&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;If possible, use the API or SDK to &lt;STRONG&gt;export the notebook or access its code cells&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;If not supported, consider using the &lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/using-python-experience-on-notebook" target="_blank" rel="noopener"&gt;Fabric Python experience to open notebooks and extract code manually or via automation&lt;/A&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Scan for API Patterns&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;Use regex or AST parsing to look for:&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;import requests&lt;BR /&gt;requests.get("&lt;A href="https://api.example.com" target="_blank" rel="noopener"&gt;https://api.example.com")&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;import requests requests.get("&lt;A href="https://api.example.com" target="_blank" rel="noopener"&gt;https://api.example.com")&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;UL&gt;&lt;LI&gt;Also check for http.client, urllib, or any custom API wrappers&lt;!--   EndFragment    --&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;</description>
    <pubDate>Wed, 03 Sep 2025 11:20:05 GMT</pubDate>
    <dc:creator>anilgavhane</dc:creator>
    <dc:date>2025-09-03T11:20:05Z</dc:date>
    <item>
      <title>Extract API info from Notebooks</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Extract-API-info-from-Notebooks/m-p/4814802#M12109</link>
      <description>&lt;P&gt;Hi I am using the Fabric API to trawl through all workspaces on a tenant, identifying Python notebooks and trying to read these to see if they access an API.&amp;nbsp; If one exists, then list it out.&amp;nbsp; &amp;nbsp;The Notebook I am running lists the workspaces correctly, correctly identifies whether the Notebook exists and tries to extract the API data - but it doesn't.&amp;nbsp; It just returns blanks.&amp;nbsp; Any one ever done this ? Any thoughts?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 15:01:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Extract-API-info-from-Notebooks/m-p/4814802#M12109</guid>
      <dc:creator>halcyon57a</dc:creator>
      <dc:date>2025-09-02T15:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: Extract API info from Notebooks</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Extract-API-info-from-Notebooks/m-p/4815104#M12110</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1347771"&gt;@halcyon57a&lt;/a&gt;&amp;nbsp;can you post the snippet of your code that is not working as expected?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Sep 2025 04:01:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Extract-API-info-from-Notebooks/m-p/4815104#M12110</guid>
      <dc:creator>tayloramy</dc:creator>
      <dc:date>2025-09-03T04:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: Extract API info from Notebooks</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Extract-API-info-from-Notebooks/m-p/4815507#M12115</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1347771"&gt;@halcyon57a&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thank you for your post in the Fabric community, and&amp;nbsp; In addition to &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1340679"&gt;@tayloramy&lt;/a&gt;&amp;nbsp; earlier response. Fabric’s public API does allow you to retrieve complete notebook definitions, including all code cells. If you’re only getting metadata, that could be why the results appear blank you need to use the correct endpoint for full content.&lt;/P&gt;
&lt;P&gt;You can refer to the official documentation:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/notebook-public-api" target="_blank"&gt;Manage and execute Fabric notebooks with public APIs - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This guide explains how to list notebooks, access their full content, and handle formats such as .ipynb, .py, and .sql. For .ipynb notebooks.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Yugandhar.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Sep 2025 10:39:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Extract-API-info-from-Notebooks/m-p/4815507#M12115</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-09-03T10:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: Extract API info from Notebooks</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Extract-API-info-from-Notebooks/m-p/4815555#M12119</link>
      <description>&lt;P&gt;&lt;!--   StartFragment    --&gt;&lt;/P&gt;&lt;P&gt;What Might Be Going Wrong&lt;/P&gt;&lt;P&gt;Here are some common culprits:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;STRONG&gt;Notebook Content Access Limitations&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;The Fabric API can list notebooks, but &lt;STRONG&gt;reading their internal code cells isn't always straightforward. If you're using the REST API to fetch notebook metadata, it may not include the actual code content unless explicitly supported.&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;STRONG&gt;Notebook Format&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;Fabric notebooks are stored in a proprietary format, not plain .ipynb. So unless you're parsing the actual notebook file correctly, you might just be getting metadata (like name, ID) but not the code itself.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;STRONG&gt;Authentication Scope&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;If you're using a &lt;STRONG&gt;Service Principal, make sure it has the right permissions to access notebook contents. Some API endpoints may still be limited in preview and not support full content extraction.&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;STRONG&gt;Code Parsing Logic&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;Even if you're getting the code, your script needs to scan for patterns like requests.get(...), http.client, or urllib to detect API calls. If the code uses custom wrappers or indirect methods, it might slip past your filters.&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":hammer_and_wrench:"&gt;🛠&lt;/span&gt;️ Suggested Approach&lt;/P&gt;&lt;P&gt;Here’s a more robust strategy:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Use the Fabric REST API to List Notebooks&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;Confirm you're hitting the right endpoint: GET /workspaces/{workspaceId}/items&lt;/LI&gt;&lt;LI&gt;Filter for items of type Notebook&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Download Notebook Content&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;If possible, use the API or SDK to &lt;STRONG&gt;export the notebook or access its code cells&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;If not supported, consider using the &lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/using-python-experience-on-notebook" target="_blank" rel="noopener"&gt;Fabric Python experience to open notebooks and extract code manually or via automation&lt;/A&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Scan for API Patterns&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;Use regex or AST parsing to look for:&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;import requests requests.get("&lt;A href="https://api.example.com" target="_blank" rel="noopener"&gt;https://api.example.com")&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;UL&gt;&lt;LI&gt;Also check for http.client, urllib, or any custom API wrappers&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;STRONG&gt;Community Insight&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;You're not the only one exploring this. A similar &lt;A href="https://community.fabric.microsoft.com/t5/Data-Engineering/Extract-API-info-from-Notebooks/m-p/4814802" target="_blank" rel="noopener"&gt;discussion on the Fabric Community highlights the same issue—others are trying to extract API usage but hitting blanks, likely due to content access limitations.&lt;/A&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you'd like, I can help you write a Python script that scans notebook code for API calls once you have the content. Or we can explore whether using Git integration or exporting notebooks to a readable format might help. Let me know how deep you want to go.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;!--   StartFragment    --&gt;&lt;/P&gt;&lt;P&gt;Here’s a more robust strategy:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Use the Fabric REST API to List Notebooks&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;Confirm you're hitting the right endpoint: GET /workspaces/{workspaceId}/items&lt;/LI&gt;&lt;LI&gt;Filter for items of type Notebook&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Download Notebook Content&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;If possible, use the API or SDK to &lt;STRONG&gt;export the notebook or access its code cells&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;If not supported, consider using the &lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/using-python-experience-on-notebook" target="_blank" rel="noopener"&gt;Fabric Python experience to open notebooks and extract code manually or via automation&lt;/A&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Scan for API Patterns&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;Use regex or AST parsing to look for:&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;import requests&lt;BR /&gt;requests.get("&lt;A href="https://api.example.com" target="_blank" rel="noopener"&gt;https://api.example.com")&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;import requests requests.get("&lt;A href="https://api.example.com" target="_blank" rel="noopener"&gt;https://api.example.com")&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;UL&gt;&lt;LI&gt;Also check for http.client, urllib, or any custom API wrappers&lt;!--   EndFragment    --&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Wed, 03 Sep 2025 11:20:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Extract-API-info-from-Notebooks/m-p/4815555#M12119</guid>
      <dc:creator>anilgavhane</dc:creator>
      <dc:date>2025-09-03T11:20:05Z</dc:date>
    </item>
    <item>
      <title>Re: Extract API info from Notebooks</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Extract-API-info-from-Notebooks/m-p/4819515#M12183</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1347771"&gt;@halcyon57a&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P data-start="69" data-end="222"&gt;May I know if the issue has been resolved, or are you still facing any challenges? Please let us know if you need any additional details or assistance.&lt;/P&gt;
&lt;P data-start="69" data-end="222"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="224" data-end="233"&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 05:50:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Extract-API-info-from-Notebooks/m-p/4819515#M12183</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-09-08T05:50:27Z</dc:date>
    </item>
    <item>
      <title>Re: Extract API info from Notebooks</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Extract-API-info-from-Notebooks/m-p/4823100#M12276</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1347771"&gt;@halcyon57a&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Can you let us know whether your issue has been resolved or if you're still having trouble? Your feedback is important and could assist others with similar concerns.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank You.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Sep 2025 05:23:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Extract-API-info-from-Notebooks/m-p/4823100#M12276</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-09-11T05:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: Extract API info from Notebooks</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Extract-API-info-from-Notebooks/m-p/4826344#M12339</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1347771"&gt;@halcyon57a&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;When you have a moment, please let us know if everything is okay on your end or if you need any further assistance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Sep 2025 11:32:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Extract-API-info-from-Notebooks/m-p/4826344#M12339</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-09-15T11:32:35Z</dc:date>
    </item>
  </channel>
</rss>

