<?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: Task Scheduler for GIS Tasks - Skipping Python Scripts Called from Bat File in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1420715#M83005</link>
    <description>&lt;P&gt;Hi Josh:&lt;/P&gt;&lt;P&gt;When we put a print statement in before import arcpy we get that to be logged, but then the script just exits.&lt;/P&gt;&lt;P&gt;When you clone your python environments, do you use ESRI's interface or do you perform this using Conda command line (A GIS consultant my org works with says that they have encountered issues with ESRI's interface for cloning and now only use Conda command line)?&lt;/P&gt;</description>
    <pubDate>Wed, 08 May 2024 20:53:45 GMT</pubDate>
    <dc:creator>MichaelVolz</dc:creator>
    <dc:date>2024-05-08T20:53:45Z</dc:date>
    <item>
      <title>Task Scheduler for GIS Tasks - Skipping Python Scripts Called from Bat File</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1413583#M82216</link>
      <description>&lt;P&gt;I have been running scheduled tasks using Windows Task Scheduler for many years with the ArcMap version of python.&amp;nbsp; Now that my org is migrating to ArcGIS Pro, I am finding that the same bat file is now randomly skipping the ArcGIS Pro python scripts.&amp;nbsp; The bat file runs fine outside of Windows Task Scheduler, so both the python scripts and bat file itself are fine.&amp;nbsp; Sometimes even the first python script in the bat file gets skipped with Windows Task Scheduler, so associating each python script with a bat file will not guarantee success with that setup.&lt;/P&gt;&lt;P&gt;Has anyone encountered an issue like this with a similar setup where you call multiple python scripts sequentially so once one python script has finished running the next python script is then executed?&lt;/P&gt;&lt;P&gt;Does anyone use a different job schedule software other than Windows Task Scheduler to run GIS jobs?&lt;/P&gt;&lt;P&gt;Any help or feedback is greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2024 16:34:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1413583#M82216</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2024-04-22T16:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: Task Scheduler for GIS Tasks - Skipping Python Scripts Called from Bat File</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1413614#M82219</link>
      <description>&lt;P&gt;What does the bat file look like? I never used ArcMap, but with Pro, you need to activate the conda environment first, then call the python file, so your bat file should include another line for that.&lt;/P&gt;&lt;P&gt;Esri's docs suggest using a built-in &lt;STRONG&gt;propy.bat&lt;/STRONG&gt; script rather than calling python directly.&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/arcpy/get-started/using-conda-with-arcgis-pro.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/arcpy/get-started/using-conda-with-arcgis-pro.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2024 17:14:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1413614#M82219</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-04-22T17:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: Task Scheduler for GIS Tasks - Skipping Python Scripts Called from Bat File</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1413618#M82220</link>
      <description>&lt;P&gt;I have already changed the bat file to use propy.bat, but the python scripts still get randomly skipped.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2024 17:18:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1413618#M82220</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2024-04-22T17:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: Task Scheduler for GIS Tasks - Skipping Python Scripts Called from Bat File</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1413683#M82230</link>
      <description>&lt;P&gt;Curious! So, are you certain they're being skipped, as opposed to erroring out? And the script(s) being skipped aren't consistent? I have had scripts that worked fine as a bat file and separate python files, but would fail in the Task Scheduler. Sometimes the Task Scheduler showed an error, sometimes it claimed the script exited successfully. It wasn't always clear why, unfortunately.&lt;/P&gt;&lt;P&gt;The data involved in our scripts changed daily, and sometimes it was an unexpected datatype conflict between source and destination databases, or the ArcGIS Python API and Pandas implementing datetime values in conflicting ways. May not be the case for your scripts, though.&lt;/P&gt;&lt;P&gt;Do you have any logging going on? I would try starting each script with something like&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import logging

logging.basicConfig(
    filename = 'some-log-file.log',
    level = logging.DEBUG
)

logging.debug('Starting some script')&lt;/LI-CODE&gt;&lt;P&gt;That would at least confirm if the scripts are starting at all.&lt;/P&gt;&lt;P&gt;To answer your other question about alternatives: I got really tired of issues like these, and reworked my scripts so that they would run on a lightweight Linux machine, then added the scripts to the machine's crontab to run at set times.&lt;/P&gt;&lt;P&gt;I don't know what your scripts look like and how feasible such a thing would be, but it was absolutely worth the effort. Haven't had a problem since.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2024 18:48:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1413683#M82230</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-04-22T18:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: Task Scheduler for GIS Tasks - Skipping Python Scripts Called from Bat File</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1413695#M82232</link>
      <description>&lt;P&gt;Josh:&lt;/P&gt;&lt;P&gt;Are you sure you need to need to activate the conda environment if you are just using python modules that are packaged with ArcGIS Pro by default?&lt;/P&gt;&lt;P&gt;What modifications would need to be done to the script to run on a Linux machine?&amp;nbsp; Did you need to install ArcGIS Pro onto the Linux machine?&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2024 19:20:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1413695#M82232</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2024-04-22T19:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: Task Scheduler for GIS Tasks - Skipping Python Scripts Called from Bat File</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1413714#M82234</link>
      <description>&lt;P&gt;"I have already changed the bat file to use propy.bat, but the python scripts still get randomly skipped."&lt;BR /&gt;&lt;BR /&gt;This has been an issue for a long time with ArcGIS Pro's python.exe and propy.bat, at least for me. Call the pythonw.exe file instead and you should be okay. It's stable.&lt;BR /&gt;&lt;BR /&gt;python.exe and propy.bat will fail to launch my scripts 60-80 percent of the time. I have had zero issues with calling pythonw.exe though. It's been my workaround for a few years now.&lt;BR /&gt;&lt;BR /&gt;Edit: Just know that pythonw.exe will hide the Command Prompt window. So if you need user interaction with that window or will rely on output messages within it, you'll have problems with this approach. &lt;A href="https://stackoverflow.com/questions/9705982/pythonw-exe-or-python-exe" target="_blank" rel="noopener"&gt;More info here&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2024 21:10:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1413714#M82234</guid>
      <dc:creator>David_Lindsey</dc:creator>
      <dc:date>2024-04-22T21:10:44Z</dc:date>
    </item>
    <item>
      <title>Re: Task Scheduler for GIS Tasks - Skipping Python Scripts Called from Bat File</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1413772#M82240</link>
      <description>&lt;P&gt;For me, absolutely, but that's because I'm using python for lots of other things, and I've got half a dozen different python envs. If I don't specify which, it just uses the base env, which won't have the modules I need.&lt;/P&gt;&lt;P&gt;It's worth nothing that I primarily use the ArcGIS Python API, not ArcPy, so it's a little easier to use in Linux. Been a while since I tried ArcPy in Linux, but you can download arcpy through the Esri conda channel. Authentication is different w/o Pro installed.&lt;/P&gt;&lt;P&gt;EarthData has a neat approach using Wine: &lt;A href="https://www.earthdata.nasa.gov/learn/gis/gis-how-tos/run-arcpy-on-arcgis-linux" target="_blank"&gt;https://www.earthdata.nasa.gov/learn/gis/gis-how-tos/run-arcpy-on-arcgis-linux&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2024 20:45:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1413772#M82240</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-04-22T20:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: Task Scheduler for GIS Tasks - Skipping Python Scripts Called from Bat File</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1415911#M82445</link>
      <description>&lt;P&gt;We've tried pythonw.exe, and no dice (I'm Michael Volz's co-conspirator). The forums are replete w/ people complaining about the undue time needed to import the arcpy module (most of it due to needing to make the call to the license server to authenticate the license outside of having Pro opened). The issue is squarely from the Windows Task Scheduler context... that is,&amp;nbsp;&lt;EM&gt;something&lt;/EM&gt; in the way that Task Scheduler executes (even as it's technically going through a .bat file) seems to be evaluating the wait time for the arcpy module to import, and just kills the script if that time value exceeds some threshold. If you manually run &lt;EM&gt;import arcpy&lt;/EM&gt;&amp;nbsp;in a Python window, you'll see varying delay times for it to complete. This would seem to explain why the Task runs sometimes, and skips other times.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't know of any setting inside of Task Scheduler that would force it to wait for a "long" process to finish.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Apr 2024 15:50:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1415911#M82445</guid>
      <dc:creator>GavinMcDade</dc:creator>
      <dc:date>2024-04-26T15:50:22Z</dc:date>
    </item>
    <item>
      <title>Re: Task Scheduler for GIS Tasks - Skipping Python Scripts Called from Bat File</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1418194#M82673</link>
      <description>&lt;P&gt;Josh:&lt;/P&gt;&lt;P&gt;At what interval(s) do you need your various GIS scheduled tasks to run at?&lt;/P&gt;&lt;P&gt;I ask because tasks that need to get run once a day seem to be fine, but when a task needs to be run multiple times per day (e.g. hourly) that is when the skipping of python scripts occurs.&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 16:09:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1418194#M82673</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2024-05-02T16:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: Task Scheduler for GIS Tasks - Skipping Python Scripts Called from Bat File</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1418214#M82675</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/106857"&gt;@GavinMcDade&lt;/a&gt;- What's your environment setup like? We primarily execute on virtual environments using Windows Server 2016 and 2022. Finally decommissioned Windows Server 2012 because too many oddities were occurring once support got dropped.&lt;BR /&gt;&lt;BR /&gt;For troubleshooting, have you already incorporated PAUSE into any of the .bat files (temporarily) to see if any Command Prompt specific messages are being generated for you before the window closes? Sometimes that has helped me diagnose if those .bat files are even being reached during a workflow.&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 17:00:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1418214#M82675</guid>
      <dc:creator>David_Lindsey</dc:creator>
      <dc:date>2024-05-02T17:00:31Z</dc:date>
    </item>
    <item>
      <title>Re: Task Scheduler for GIS Tasks - Skipping Python Scripts Called from Bat File</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1419326#M82816</link>
      <description>&lt;P&gt;Our scripts run daily at most. Is it possible that a prior run is hung up on something, preventing later runs from kicking off properly? I don't know for sure, but I could imagine that a script utilizing ArcPy might have some constraints with checking out a license?&lt;/P&gt;&lt;P&gt;Did you try adding a log statement at the very beginning of the script?&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2024 14:36:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1419326#M82816</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-05-06T14:36:04Z</dc:date>
    </item>
    <item>
      <title>Re: Task Scheduler for GIS Tasks - Skipping Python Scripts Called from Bat File</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1420715#M83005</link>
      <description>&lt;P&gt;Hi Josh:&lt;/P&gt;&lt;P&gt;When we put a print statement in before import arcpy we get that to be logged, but then the script just exits.&lt;/P&gt;&lt;P&gt;When you clone your python environments, do you use ESRI's interface or do you perform this using Conda command line (A GIS consultant my org works with says that they have encountered issues with ESRI's interface for cloning and now only use Conda command line)?&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2024 20:53:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1420715#M83005</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2024-05-08T20:53:45Z</dc:date>
    </item>
    <item>
      <title>Re: Task Scheduler for GIS Tasks - Skipping Python Scripts Called from Bat File</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1420722#M83006</link>
      <description>&lt;P&gt;So the script isn't skipping, but something about importing arcpy throws it off… For debugging purposes, you could try wrapping sections of your code in try / except blocks, maybe? I'm not quite sure how to further diagnose &lt;EM&gt;why &lt;/EM&gt;importing arcpy crashes it out.&lt;/P&gt;&lt;P&gt;Similar to your consultant, we use the conda CLI directly for managing our envs.&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2024 21:01:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1420722#M83006</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-05-08T21:01:14Z</dc:date>
    </item>
    <item>
      <title>Re: Task Scheduler for GIS Tasks - Skipping Python Scripts Called from Bat File</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1420724#M83007</link>
      <description>&lt;P&gt;Wrapping in try/except did not capture any faults, as that has already been tested.&lt;/P&gt;&lt;P&gt;Do you have any reasons for not using ESRI's interface to clone your python environment?&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2024 21:04:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1420724#M83007</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2024-05-08T21:04:01Z</dc:date>
    </item>
    <item>
      <title>Re: Task Scheduler for GIS Tasks - Skipping Python Scripts Called from Bat File</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1420731#M83009</link>
      <description>&lt;P&gt;Familiarity, for one. I was using python and conda prior to doing any kind of GIS python, so I already knew how to get what I needed.&lt;/P&gt;&lt;P&gt;I also find the CLI to be a lot faster than any conda GUI, especially using &lt;A href="https://mamba.readthedocs.io/en/latest/index.html" target="_blank"&gt;mamba&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;Third, we've got some python scripts that are totally separate from our Esri / GIS workflows, and there's simply no need to manage the envs for those scripts in Pro. I like managing everything in one place if I can.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2024 21:18:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1420731#M83009</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-05-08T21:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: Task Scheduler for GIS Tasks - Skipping Python Scripts Called from Bat File</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1602724#M94641</link>
      <description>&lt;P&gt;I have python 2.7 and 3.x scripts in batch files that run nightly and have had the same issue of sometimes not completing or failing to start.&lt;BR /&gt;Most of my issues ended up being locks on the data but the script just exited.&lt;/P&gt;&lt;P&gt;To catch errors in a batch file you can pipe the stderr to a file like this:&lt;BR /&gt;rem Execute the Python 3.x script using a command like and catch error:&lt;BR /&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\python.exe" "C:\ArcGisScripts\python3_script.py" 2&amp;gt;&amp;gt; python_log.txt&lt;BR /&gt;"C:\Python27\ArcGIS10.8\python.exe" "C:\ArcGisScripts\python27_script.py" 2&amp;gt;&amp;gt; python_log.txt&lt;/P&gt;&lt;P&gt;The "2&amp;gt;&amp;gt;" only pipes out the stderr but if you just want to log whether if was successful or failed then do this:&lt;BR /&gt;Add a timestamp to the log to make it easy to see when it started and finished.&lt;/P&gt;&lt;P&gt;echo %date% %time% : Task START Update Python3_Script &amp;gt;&amp;gt; python_log.txt&lt;BR /&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\python.exe" "C:\ArcGisScripts\python3_script.py" &amp;amp;&amp;amp; echo Successfully updated! &amp;gt;&amp;gt; python_log.txt || echo ERROR, Did not update! &amp;gt;&amp;gt; python_log.txt&lt;BR /&gt;echo %date% %time% : Task END Update Python3_Script &amp;gt;&amp;gt; python_log.txt&lt;/P&gt;</description>
      <pubDate>Fri, 04 Apr 2025 12:56:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1602724#M94641</guid>
      <dc:creator>ArcGISDev</dc:creator>
      <dc:date>2025-04-04T12:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: Task Scheduler for GIS Tasks - Skipping Python Scripts Called from Bat File</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1602928#M94655</link>
      <description>&lt;P&gt;The scripts that appeared to be skipping were actually being blocked by anti-virus/anti-malware software on the machine which was rather difficult to isolate as the reason.&amp;nbsp; This is mostly outside of ESRI tech support's scope unfortunately and they were not even able to replicate the issue.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Apr 2025 18:36:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1602928#M94655</guid>
      <dc:creator>MikeVolz</dc:creator>
      <dc:date>2025-04-04T18:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: Task Scheduler for GIS Tasks - Skipping Python Scripts Called from Bat File</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1607206#M95090</link>
      <description>&lt;P&gt;Thanks for that head's up, Mike. I'll test this with my own issues soon. I hadn't considered anti-virus software contributing to that.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Apr 2025 03:15:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/task-scheduler-for-gis-tasks-skipping-python/m-p/1607206#M95090</guid>
      <dc:creator>David_Lindsey</dc:creator>
      <dc:date>2025-04-18T03:15:19Z</dc:date>
    </item>
  </channel>
</rss>

