<?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: How creating a Python custom library in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5189002#M16403</link>
    <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/719515"&gt;@pmscorca&lt;/a&gt;&amp;nbsp;My answer below is from an experience. But as I stated already, you are mixing different goals in a single question. My advise is to separate your goals into different questions and seek the answer for the Python protection code question outside Fabric community as it is irrelevant. There are literally no obstacles in running any custom Python code in Fabric provided it's compatible with the execution environment. Every way of protecting your Python code from abuse and reverse engineering is bound to affect how your code works and it's a matter of experimentation and finding the right balance. Start from making sure that your code runs in Fabric as intended in your private Fabric environment then move towards protection options. In my experience-based opinion Fabric is not going to help you with protection.&lt;/P&gt;</description>
    <pubDate>Tue, 26 May 2026 16:51:11 GMT</pubDate>
    <dc:creator>apturlov</dc:creator>
    <dc:date>2026-05-26T16:51:11Z</dc:date>
    <item>
      <title>How creating a Python custom library</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5188466#M16374</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;is it possible to create a Python custom library to use in a notebook in order to protect the proprietary code? How?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 25 May 2026 16:07:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5188466#M16374</guid>
      <dc:creator>pmscorca</dc:creator>
      <dc:date>2026-05-25T16:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: How creating a Python custom library</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5188515#M16376</link>
      <description>&lt;P&gt;please provide some more details. Protect from what?&lt;/P&gt;</description>
      <pubDate>Mon, 25 May 2026 20:46:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5188515#M16376</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2026-05-25T20:46:24Z</dc:date>
    </item>
    <item>
      <title>Re: How creating a Python custom library</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5188898#M16394</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/719515"&gt;@pmscorca&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As has been stated on multiple of your posts now, if you want to protect custom logic, the best way to do that is to create a custom workload in Fabric.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anything else, even a custom python library, will expose your code to those who care to look for it.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2026 13:48:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5188898#M16394</guid>
      <dc:creator>tayloramy</dc:creator>
      <dc:date>2026-05-26T13:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: How creating a Python custom library</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5188963#M16399</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/719515"&gt;@pmscorca&lt;/a&gt;, your question is multi-faceted and may require more than a single answer. You state two separate goals: create a custom Python library to use in a Notebook, and protect your propriatary code. The goals may be related but independent. Because code protection is absolutely outside of Fabric concers I will only share my thoughts about custom code in Notebooks.&lt;BR /&gt;&lt;BR /&gt;You create a custom Python library as any other Python development project in your local Python development environment with your regular development process. Before you do this, you need to answer the following quesions:&lt;BR /&gt;- decide what execution environment in Fabric you'll be running your code in; you already stated a Notebook.&lt;BR /&gt;- make sure that your code is fully compatible with Fabric execution environment; you need to understand dependencies of your code and make sure those dependencies can be resolved in Fabric Notebook execution environment. You may wat to take a look at this guide&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/using-python-experience-on-notebook" target="_blank"&gt;Use Python experience on Notebook - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;BR /&gt;- decide how you install your code in your Fabric execution environment. There are two baseline methods in Fabric: install your code using pip command in your Notebook cell, or install your library in a Spark environment. You may want to check out this guide&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/environment-manage-library" target="_blank"&gt;Manage libraries in Fabric environments - Microsoft Fabric | Microsoft Learn&lt;/A&gt;.&lt;BR /&gt;&lt;BR /&gt;Once you have you library installed in a Fabric environment, test it by running some code in your Notebook that uses your library.&lt;BR /&gt;&lt;BR /&gt;This is a relatively straightforward process and should let you go ahead with developing your custom Python code and running it in the Fabric Notebooks.&lt;BR /&gt;&lt;BR /&gt;A thought about code protection. The rule of thumb is that Fabric does not provide any features of facilities to protect your code. Any Python code is interpreted and exists in your execution environment as text, so no help in this area. This is a common concern for Python development in general and not Fabric specific, so you need to research protection techniques regardless of where you deploy and run your code.&lt;BR /&gt;&lt;BR /&gt;Hope this answer helps. If so, consider giving it kudos and mark as a solution to help other community members.&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2026 15:34:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5188963#M16399</guid>
      <dc:creator>apturlov</dc:creator>
      <dc:date>2026-05-26T15:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: How creating a Python custom library</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5188995#M16402</link>
      <description>&lt;P&gt;Hi, I need to find the right solution and so I'm searching the right answers.&lt;/P&gt;&lt;P&gt;The dev toolkit don't seem mature yet. Providing a workloard means that a customer must already have Fabric, but a product&amp;nbsp;could be purchased before Fabric.&lt;/P&gt;&lt;P&gt;So far I seem to have been getting answers from official documentation rather than from experiences.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2026 16:39:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5188995#M16402</guid>
      <dc:creator>pmscorca</dc:creator>
      <dc:date>2026-05-26T16:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: How creating a Python custom library</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5189002#M16403</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/719515"&gt;@pmscorca&lt;/a&gt;&amp;nbsp;My answer below is from an experience. But as I stated already, you are mixing different goals in a single question. My advise is to separate your goals into different questions and seek the answer for the Python protection code question outside Fabric community as it is irrelevant. There are literally no obstacles in running any custom Python code in Fabric provided it's compatible with the execution environment. Every way of protecting your Python code from abuse and reverse engineering is bound to affect how your code works and it's a matter of experimentation and finding the right balance. Start from making sure that your code runs in Fabric as intended in your private Fabric environment then move towards protection options. In my experience-based opinion Fabric is not going to help you with protection.&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2026 16:51:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5189002#M16403</guid>
      <dc:creator>apturlov</dc:creator>
      <dc:date>2026-05-26T16:51:11Z</dc:date>
    </item>
    <item>
      <title>Re: How creating a Python custom library</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5189443#M16416</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/719515"&gt;@pmscorca&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is your end goal?&amp;nbsp;&lt;BR /&gt;Are you developing a Fabric solution, or are you trying to sell Fabric services to clients that don't have Fabric?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The question asked is how to protect users from viewing your code. In Fabric, the way to do that is to develop a custom workload.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your goals are different than just protecting the code, then you need to describe what your question is.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2026 13:50:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5189443#M16416</guid>
      <dc:creator>tayloramy</dc:creator>
      <dc:date>2026-05-27T13:50:40Z</dc:date>
    </item>
    <item>
      <title>Re: How creating a Python custom library</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5189471#M16418</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I need to implement and propose a solution to potential customers who have or do not have Fabric; those who don't have Fabric first will buy the solution and then Fabric.&lt;BR /&gt;I don't understand how a custom workload could allow to protect the code; it seems that Fabric lays everything out in plain sight.&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2026 14:16:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5189471#M16418</guid>
      <dc:creator>pmscorca</dc:creator>
      <dc:date>2026-05-27T14:16:06Z</dc:date>
    </item>
    <item>
      <title>Re: How creating a Python custom library</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5189517#M16421</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/719515"&gt;@pmscorca&lt;/a&gt;&amp;nbsp;I know that&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1340679"&gt;@tayloramy&lt;/a&gt;&amp;nbsp;knows what he is saying about using Fabric custom workloads as he created them. I have yet to try it out so cannot chime on that. However, Python is Python, and as you correctly said, nothing can be hidden in Fabric once deployed. So, I just repeat, from my first-hand experience Fabric is not your answer for code protection. The fact that your solution is made specifically to run on Fabric platform should not stop your customers from purchasing it. It's similar to if someone wants to use software they need to have a computer too. Most likely your code protection is not a technical concern. Your customers agree with your terms and conditions when they decide to buy and use your solution. That said, it does not mean you should not research various ways of protecting your code, but, don't let it stop you from creating and selling your solution. That's all I have to say on this topic. If you are satisfied, feel free to give it kudos and mark as a solution. If not, keep researching and good luck.&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2026 15:09:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5189517#M16421</guid>
      <dc:creator>apturlov</dc:creator>
      <dc:date>2026-05-27T15:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: How creating a Python custom library</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5189551#M16423</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/719515"&gt;@pmscorca&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It might be worth while to join the Fabric Discord that I run (link in my signature) so we can have a more conversational exchange here.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A custom workload will hide your code the same way Micorosft hides their code. FOr example, when you make a pipeline, you don't see the code behind how the pipeline works. When you make a copy job, you don't see the underlaying code for how the copy job operates.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Those are both examples of items inside a workload. WIth the extensibility toolkit, you can create your own custom Fabric Item types that will appear to users who install the workload in their tenant.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now if your goal is to re-sell Fabric as a solution, maybe a workload isn't what you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you intend your solution to run on your Fabric tenant permenantly, or do you intend your customers to purchase fabric and then deploy your solution?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you intend for everything to always run on your tenant/capacity, then you can take the approach that Epic Systems is taking with Cogito Cloud, where they manage the entire thing end to end and make the data available via B2B sharing. In this scenario, because all the notebooks and code is in your tenant, your customers can't see it so there is no need to do anything special to hide it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you intend to use your solution as a selling point and expect your customers to pay for a fabric capacity as well as your solution, then a custom workload is what you're going to want.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2026 16:35:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5189551#M16423</guid>
      <dc:creator>tayloramy</dc:creator>
      <dc:date>2026-05-27T16:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: How creating a Python custom library</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5189571#M16424</link>
      <description>&lt;P&gt;Hi, thanks for your reply.&lt;BR /&gt;Let's assume that my solution&amp;nbsp;is composed of a lakehouse, a pipeline for data ingestion, a notebook for data transformation, a semantic model and a set of Power BI reports.&lt;/P&gt;&lt;P&gt;I don't want to offer a service on my tenant;&amp;nbsp;it needs to be on the customer's tenant as much as possible.&lt;BR /&gt;In a such case, you say that implementing a custom workload is the right way to follow, ok.&lt;/P&gt;&lt;P&gt;So, what&amp;nbsp;does a customer workload create on the customer tenant? Lakehouse plus pipeline plus notebook plus semantic model plus reports? F.e. if the custom workload creates a notebook, is the related code protected?&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2026 17:38:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5189571#M16424</guid>
      <dc:creator>pmscorca</dc:creator>
      <dc:date>2026-05-27T17:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: How creating a Python custom library</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5189572#M16425</link>
      <description>&lt;P&gt;Hi, thanks for your reply.&lt;/P&gt;&lt;P&gt;Ok, but&amp;nbsp;how protecting code might impact solution architecture.&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2026 17:44:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5189572#M16425</guid>
      <dc:creator>pmscorca</dc:creator>
      <dc:date>2026-05-27T17:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: How creating a Python custom library</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5189607#M16426</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/719515"&gt;@pmscorca&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A custom workload can create anything that you can code.&amp;nbsp;&lt;BR /&gt;There's built in APIs to access system storage, and Fabric has lots of APIs for creating lakehouses, accessing lakehouse data, ect.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I would recommend that you don't use a notebook for data transformation, and instead build a "data transformation" item that does everything you need it to do, and keeps the logic hidden from the end users.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Once you have built this out, then you need to get it published to the Azure marketplace, and from there anyone can purchase it from you.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Note that code is only protected for your custom item types, so if your workload creates a default item type like a notebook using the APIs, then that will behave just like any normal notebook and the customer will be able to see the code.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;However if you create a custom "transformation" item type, then your code will be hidden.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2026 19:15:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5189607#M16426</guid>
      <dc:creator>tayloramy</dc:creator>
      <dc:date>2026-05-27T19:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: How creating a Python custom library</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5189848#M16434</link>
      <description>&lt;P&gt;Hi, thanks for your reply.&lt;/P&gt;&lt;P&gt;So, in a custom workload it is enough to create some custom items in order to protect the code and all these custom items can reside on the customer's tenant, isn'it?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2026 08:29:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5189848#M16434</guid>
      <dc:creator>pmscorca</dc:creator>
      <dc:date>2026-05-28T08:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: How creating a Python custom library</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5190063#M16448</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/719515"&gt;@pmscorca&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That is correct.&amp;nbsp; Here is an example of a custom workload with the extensibility toolkit:&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/Extensibility-Toolkit-Gallery/Fabric-Job-Registry/m-p/5006346" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Extensibility-Toolkit-Gallery/Fabric-Job-Registry/m-p/5006346&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2026 13:50:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5190063#M16448</guid>
      <dc:creator>tayloramy</dc:creator>
      <dc:date>2026-05-28T13:50:10Z</dc:date>
    </item>
    <item>
      <title>Re: How creating a Python custom library</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5191160#M16479</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/719515"&gt;@pmscorca&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Thanks for reaching out to Microsoft Fabric Community.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just checking in to see if your query is resolved and if any responses were helpful.&lt;BR /&gt;Otherwise, feel free to reach out for further assistance.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jun 2026 06:06:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5191160#M16479</guid>
      <dc:creator>v-veshwara-msft</dc:creator>
      <dc:date>2026-06-01T06:06:51Z</dc:date>
    </item>
    <item>
      <title>Re: How creating a Python custom library</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5192966#M16525</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/719515"&gt;@pmscorca&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;We wanted to kindly follow up regarding your query. If you need any further assistance, please reach out.&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2026 06:11:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-creating-a-Python-custom-library/m-p/5192966#M16525</guid>
      <dc:creator>v-veshwara-msft</dc:creator>
      <dc:date>2026-06-04T06:11:00Z</dc:date>
    </item>
  </channel>
</rss>

