<?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 can I schedule a Python script to run daily (including Sundays) even when my laptop is off? in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-can-I-schedule-a-Python-script-to-run-daily-including/m-p/4612745#M7987</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Python code is local to my laptop.Give me something other than renting a server.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 17 Mar 2025 11:46:14 GMT</pubDate>
    <dc:creator>LB_Team</dc:creator>
    <dc:date>2025-03-17T11:46:14Z</dc:date>
    <item>
      <title>How can I schedule a Python script to run daily (including Sundays) even when my laptop is off?</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-can-I-schedule-a-Python-script-to-run-daily-including/m-p/4612603#M7981</link>
      <description>&lt;P&gt;I have a Python script that I want to automate using Task Scheduler on Windows. The script runs fine when my laptop is on, but I want it to execute daily (including Sundays) even if my laptop is turned off or not in use.Is there&amp;nbsp;any other method that ensures the script runs consistently without needing my laptop to be powered on? Any suggestions or step-by-step guidance would be helpful.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 10:28:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-can-I-schedule-a-Python-script-to-run-daily-including/m-p/4612603#M7981</guid>
      <dc:creator>LB_Team</dc:creator>
      <dc:date>2025-03-17T10:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: How can I schedule a Python script to run daily (including Sundays) even when my laptop is off?</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-can-I-schedule-a-Python-script-to-run-daily-including/m-p/4612718#M7984</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1235812"&gt;@LB_Team&lt;/a&gt;&amp;nbsp;, you can do this by renting a server. This way you don't need to keep your own computer on. You cannot execute commands on your computer when it is off.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 11:27:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-can-I-schedule-a-Python-script-to-run-daily-including/m-p/4612718#M7984</guid>
      <dc:creator>ahmetyilmaz</dc:creator>
      <dc:date>2025-03-17T11:27:30Z</dc:date>
    </item>
    <item>
      <title>Re: How can I schedule a Python script to run daily (including Sundays) even when my laptop is off?</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-can-I-schedule-a-Python-script-to-run-daily-including/m-p/4612743#M7986</link>
      <description>&lt;P&gt;First question is;&amp;nbsp; is your Python code local to your laptop or inside a Fabric notebook?&lt;BR /&gt;If your code is local, then you'll need some external resource, like renting a server (as&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1227334"&gt;@ahmetyilmaz&lt;/a&gt;&amp;nbsp;says) or migrating the code to Fabric.&amp;nbsp; This is out of scope for the rest of this reply.&lt;BR /&gt;&lt;BR /&gt;If your code is in a Fabric notebook and you're wanting to schedule the notebook, you can either create a schedule directly within the notebook or you can make the notebook part of a pipeline (using the Notebook activity) and schedule that pipeline.&lt;BR /&gt;&lt;BR /&gt;Example;&lt;BR /&gt;I could write a notebook that queries a weather API to get the day's forecast and persist this data in a Fabric table.&amp;nbsp; I could then schedule this to run at 1am to ensure I always had a daily forecast.&lt;BR /&gt;&lt;BR /&gt;If this reply helps, please consider &lt;EM&gt;Accepting as a Solution&lt;/EM&gt; to help others find it more easily.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 11:44:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-can-I-schedule-a-Python-script-to-run-daily-including/m-p/4612743#M7986</guid>
      <dc:creator>spencer_sa</dc:creator>
      <dc:date>2025-03-17T11:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: How can I schedule a Python script to run daily (including Sundays) even when my laptop is off?</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-can-I-schedule-a-Python-script-to-run-daily-including/m-p/4612745#M7987</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Python code is local to my laptop.Give me something other than renting a server.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 11:46:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-can-I-schedule-a-Python-script-to-run-daily-including/m-p/4612745#M7987</guid>
      <dc:creator>LB_Team</dc:creator>
      <dc:date>2025-03-17T11:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: How can I schedule a Python script to run daily (including Sundays) even when my laptop is off?</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-can-I-schedule-a-Python-script-to-run-daily-including/m-p/4612753#M7989</link>
      <description>&lt;P&gt;If your code has no local dependecies (i.e. you don't need any data/files from the laptop), you could consider migrating the code to a Fabric notebook which will run Python.&amp;nbsp; You've posted in a Fabric Community Forum so this is the most likely topic of advice here.&lt;BR /&gt;There are tonnes of learning resources about notebooks - starting here;&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/how-to-use-notebook" target="_blank"&gt;How to use notebooks - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is a free trial of Fabric available - go beyond that and you'll be into a paid capacity though.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 11:55:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-can-I-schedule-a-Python-script-to-run-daily-including/m-p/4612753#M7989</guid>
      <dc:creator>spencer_sa</dc:creator>
      <dc:date>2025-03-17T11:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: How can I schedule a Python script to run daily (including Sundays) even when my laptop is off?</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-can-I-schedule-a-Python-script-to-run-daily-including/m-p/4622290#M8173</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1235812"&gt;@LB_Team&lt;/a&gt;,&amp;nbsp;&lt;SPAN&gt;As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for your issue worked? or let us know if you need any further assistance here?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/679603"&gt;@spencer_sa&lt;/a&gt;&amp;amp;&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1227334"&gt;@ahmetyilmaz&lt;/a&gt;, Thanks for your promt response.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Prashanth Are&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;MS Fabric community support&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post helps, then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly and give&amp;nbsp;&lt;STRONG&gt;Kudos&lt;/STRONG&gt;&amp;nbsp;if helped you resolve your query&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Mar 2025 11:54:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-can-I-schedule-a-Python-script-to-run-daily-including/m-p/4622290#M8173</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-03-24T11:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: How can I schedule a Python script to run daily (including Sundays) even when my laptop is off?</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-can-I-schedule-a-Python-script-to-run-daily-including/m-p/4629241#M8288</link>
      <description>&lt;P&gt;&amp;nbsp;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1235812"&gt;@LB_Team&lt;/a&gt;,&amp;nbsp;&lt;SPAN&gt;As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for your issue worked? or let us know if you need any further assistance here?&lt;/SPAN&gt;&lt;/P&gt;
&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;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Prashanth Are&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;MS Fabric community support&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post helps, then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly and give&amp;nbsp;&lt;STRONG&gt;Kudos&lt;/STRONG&gt;&amp;nbsp;if helped you resolve your query&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2025 12:16:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-can-I-schedule-a-Python-script-to-run-daily-including/m-p/4629241#M8288</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-03-28T12:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: How can I schedule a Python script to run daily (including Sundays) even when my laptop is off?</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-can-I-schedule-a-Python-script-to-run-daily-including/m-p/4632935#M8341</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1235812"&gt;@LB_Team&lt;/a&gt;, As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for your issue worked? or let us know if you need any further assistance here?&lt;/SPAN&gt;&lt;/P&gt;
&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;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Prashanth Are&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;MS Fabric community support&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post helps, then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly and give&amp;nbsp;&lt;STRONG&gt;Kudos&lt;/STRONG&gt;&amp;nbsp;if helped you resolve your query&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Apr 2025 10:14:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-can-I-schedule-a-Python-script-to-run-daily-including/m-p/4632935#M8341</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-04-01T10:14:13Z</dc:date>
    </item>
  </channel>
</rss>

