<?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 Python Error in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/python-error/m-p/1220327#M65802</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to follow this guide:&amp;nbsp;&lt;A href="https://desktop.arcgis.com/en/analytics/case-studies/broken-bottles-5-automation.htm#:~:text=You%20will%20create%20a%20custom%20model%20tool%20that,Create%20Space-Time%20Cube%2C%20and%20Emerging%20Hot%20Spot%20Analysis." target="_blank"&gt;Analyzing violent crime automation—Analytics | Documentation (arcgis.com)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I've followed it successfully, using my own data and I am at the stage of building the model.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="StephenSmith8847_0-1665403409975.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/53230i4ADB0560F1E7DFA3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="StephenSmith8847_0-1665403409975.png" alt="StephenSmith8847_0-1665403409975.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I first created a varialbe for the report data which will be used to select any date, i've made it a peramter and named it Date (the first oval), i have then added calculate value and attempted to add the following expression:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;arcpy.time.ParseDateTimeString('%ReportDate%') - datetime.timedelta(days = 365)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I then changed it to this to match my field names for where the date is:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;arcpy.time.ParseDateTimeString('%&lt;STRONG&gt;Created_Date&lt;/STRONG&gt;%') - datetime.timedelta(days = 365)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm getting an error:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ERROR 000539: Traceback (most recent call last):&lt;BR /&gt;File "&amp;lt;expression&amp;gt;", line 1, in &amp;lt;module&amp;gt;&lt;BR /&gt;AttributeError: module 'arcpy' has no attribute 'time'&lt;BR /&gt;Failed to execute (Calculate Value).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm using ArcGIS Pro version 3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any help would be greatly appreciated.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 10 Oct 2022 12:10:11 GMT</pubDate>
    <dc:creator>StephenSmith8847</dc:creator>
    <dc:date>2022-10-10T12:10:11Z</dc:date>
    <item>
      <title>Python Error</title>
      <link>https://community.esri.com/t5/python-questions/python-error/m-p/1220327#M65802</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to follow this guide:&amp;nbsp;&lt;A href="https://desktop.arcgis.com/en/analytics/case-studies/broken-bottles-5-automation.htm#:~:text=You%20will%20create%20a%20custom%20model%20tool%20that,Create%20Space-Time%20Cube%2C%20and%20Emerging%20Hot%20Spot%20Analysis." target="_blank"&gt;Analyzing violent crime automation—Analytics | Documentation (arcgis.com)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I've followed it successfully, using my own data and I am at the stage of building the model.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="StephenSmith8847_0-1665403409975.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/53230i4ADB0560F1E7DFA3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="StephenSmith8847_0-1665403409975.png" alt="StephenSmith8847_0-1665403409975.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I first created a varialbe for the report data which will be used to select any date, i've made it a peramter and named it Date (the first oval), i have then added calculate value and attempted to add the following expression:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;arcpy.time.ParseDateTimeString('%ReportDate%') - datetime.timedelta(days = 365)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I then changed it to this to match my field names for where the date is:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;arcpy.time.ParseDateTimeString('%&lt;STRONG&gt;Created_Date&lt;/STRONG&gt;%') - datetime.timedelta(days = 365)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm getting an error:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ERROR 000539: Traceback (most recent call last):&lt;BR /&gt;File "&amp;lt;expression&amp;gt;", line 1, in &amp;lt;module&amp;gt;&lt;BR /&gt;AttributeError: module 'arcpy' has no attribute 'time'&lt;BR /&gt;Failed to execute (Calculate Value).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm using ArcGIS Pro version 3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any help would be greatly appreciated.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 12:10:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-error/m-p/1220327#M65802</guid>
      <dc:creator>StephenSmith8847</dc:creator>
      <dc:date>2022-10-10T12:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: Python Error</title>
      <link>https://community.esri.com/t5/python-questions/python-error/m-p/1220339#M65803</link>
      <description>&lt;P&gt;Your model looks like ArcPro, but the instructions are for ArcGIS Desktop.&amp;nbsp; Are you sure that is the correct tool to call in Pro?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did see this article - looks like that tool may be depreciated at Pro 3.0.&amp;nbsp; You might have to do this in ArcMap if you want to finish your project.&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.esri.com/en/technical-article/000027752" target="_self"&gt;https://support.esri.com/en/technical-article/000027752&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 13:13:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-error/m-p/1220339#M65803</guid>
      <dc:creator>Kara_Shindle</dc:creator>
      <dc:date>2022-10-10T13:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: Python Error</title>
      <link>https://community.esri.com/t5/python-questions/python-error/m-p/1220341#M65804</link>
      <description>&lt;P&gt;That looks to be the issue then! Is there a way around this, to use python to achieve the same results?&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 13:19:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-error/m-p/1220341#M65804</guid>
      <dc:creator>StephenSmith8847</dc:creator>
      <dc:date>2022-10-10T13:19:03Z</dc:date>
    </item>
    <item>
      <title>Re: Python Error</title>
      <link>https://community.esri.com/t5/python-questions/python-error/m-p/1220346#M65805</link>
      <description>&lt;P&gt;It looks like the support article suggests a few alternatives.&amp;nbsp; Personally, I prefer the datetime module, which appears to already be used in your expression.&lt;/P&gt;&lt;P&gt;I did just notice that the screenshots in your instructions are from Pro even though this is listed under Desktop.&amp;nbsp; They might update the instructions soon.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looks like that expression starts to parse a date string for an attribute in your dataset.&amp;nbsp; There are ways to parse a string to a datetime, such as using the strptime() method, which is a built-in method of the datetime class.&amp;nbsp; Try something like this:&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;datetime.strptime(date_string, format)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;I use something similar in a database reconciliation script:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;dateToday = currentTime.strftime("%Y-%m-%d")&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 10 Oct 2022 13:31:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-error/m-p/1220346#M65805</guid>
      <dc:creator>Kara_Shindle</dc:creator>
      <dc:date>2022-10-10T13:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Python Error</title>
      <link>https://community.esri.com/t5/python-questions/python-error/m-p/1220351#M65806</link>
      <description>&lt;P&gt;Appreciate your time and help on this, but i'm still struggling. How does it know which data table (which is added to my project) and then which field within that data table to run the expression against?&lt;/P&gt;&lt;P&gt;All we are trying to do in this expression is i believe allow us to select any date. Next in the model is a SQL expression which i beleive then retrieves 365 days from that date.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="StephenSmith8847_0-1665409258715.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/53233i8065A445DBC5E5A8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="StephenSmith8847_0-1665409258715.png" alt="StephenSmith8847_0-1665409258715.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's giving me an error, is this correct?&lt;/P&gt;&lt;P&gt;Thanks again, i appreciate your patience.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 13:41:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-error/m-p/1220351#M65806</guid>
      <dc:creator>StephenSmith8847</dc:creator>
      <dc:date>2022-10-10T13:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: Python Error</title>
      <link>https://community.esri.com/t5/python-questions/python-error/m-p/1220383#M65807</link>
      <description>&lt;P&gt;Edit:&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I updated my answer to just have a replacement for the arcpy.time.ParseDateTimeString('ReportDate%') with an alternative as a part of the datetime module.&lt;/P&gt;&lt;P&gt;This calculation is just creating an expression that accepts any string formatted like "month/day/year" i.e. "10/10/2022"&lt;/P&gt;&lt;P&gt;Building this expression means that you will be able to input that date when you run the actual tool, and the date will be consumed in the "Select By Layer Attribute" tool.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For a simpler expression, you can also try the following:&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;LI-CODE lang="python"&gt;datetime.datetime.strptime('%ReportDate%', '%m/%d/%Y') - datetime.timedelta(days = 365)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Kara_Shindle_1-1665414937100.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/53250i1AE84F53EE432845/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Kara_Shindle_1-1665414937100.png" alt="Kara_Shindle_1-1665414937100.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 15:15:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-error/m-p/1220383#M65807</guid>
      <dc:creator>Kara_Shindle</dc:creator>
      <dc:date>2022-10-10T15:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: Python Error</title>
      <link>https://community.esri.com/t5/python-questions/python-error/m-p/1220387#M65808</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've just copied your expression exactly:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;datetime.datetime.strptime('%ReportDate%', '%m/%d/%Y') - datetime.timedelta(days = 365)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and i get this still:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Executing (Calculate Value): CalculateValue "datetime.datetime.strptime('01/04/2021 01:00:00', '%m/%d/%Y') - datetime.timedelta(days = 365)" # Date&lt;/PRE&gt;&lt;PRE&gt;Start Time: 10 October 2022 16:26:57&lt;/PRE&gt;&lt;PRE&gt;ERROR 000539:&lt;SPAN class=""&gt; Traceback (most recent call last):
  File "&amp;lt;expression&amp;gt;", line 1, in &amp;lt;module&amp;gt;
AttributeError: type object 'datetime.datetime' has no attribute 'datetime'&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;Failed to execute (Calculate Value).&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE&gt;Failed at 10 October 2022 16:26:57 (Elapsed Time: 0.01 seconds)&lt;BR /&gt;&lt;BR /&gt;what am i doing wrong?&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 15:28:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-error/m-p/1220387#M65808</guid>
      <dc:creator>StephenSmith8847</dc:creator>
      <dc:date>2022-10-10T15:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: Python Error</title>
      <link>https://community.esri.com/t5/python-questions/python-error/m-p/1220405#M65809</link>
      <description>&lt;P&gt;Just a style comment for you -- I usually use a separate code block, like this,&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BrianWilson7_1-1665417311635.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/53255i2B700290DDA6CB7C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BrianWilson7_1-1665417311635.png" alt="BrianWilson7_1-1665417311635.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;(I have no idea if the date compare "today &amp;gt; edit" would work - this is just to show the code block.)&lt;/P&gt;&lt;P&gt;That way I can test the code in a separate notebook, I can have import statements at the top, and I can spread the code out over several lines so it's easier to read and understand.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 15:59:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-error/m-p/1220405#M65809</guid>
      <dc:creator>Brian_Wilson</dc:creator>
      <dc:date>2022-10-10T15:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: Python Error</title>
      <link>https://community.esri.com/t5/python-questions/python-error/m-p/1220416#M65810</link>
      <description>&lt;P&gt;Ok thanks i'll try stlying like that next time, but i copied and pasted the previous posts expression and it didn't work but I can see it has worked for them?&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 16:15:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-error/m-p/1220416#M65810</guid>
      <dc:creator>StephenSmith8847</dc:creator>
      <dc:date>2022-10-10T16:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: Python Error</title>
      <link>https://community.esri.com/t5/python-questions/python-error/m-p/1220426#M65811</link>
      <description>&lt;P&gt;We are working on different Python versions - I have not updated to 3.0. so you might have different errors then I see.&lt;/P&gt;&lt;P&gt;You might try removing the first datetime in the expression, as the first part has it twice and the 2nd one has it once. i.e. like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;datetime.strptime('%ReportDate%', '%m/%d/%Y') - datetime.timedelta(days = 365)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I tested in Python, I was able to create a definition formated similar to what&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/403473"&gt;@Brian_Wilson&lt;/a&gt;&amp;nbsp; posted.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import datetime

string = '10/10/2022'

def startTime(string):
	date = datetime.datetime.strptime(string, '%m/%d/%Y')
	print(date)
	finalDate = date - datetime.timedelta(days = 365)
	print(finalDate)
	return finalDate

startTime(string)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 18:15:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-error/m-p/1220426#M65811</guid>
      <dc:creator>Kara_Shindle</dc:creator>
      <dc:date>2022-10-10T18:15:09Z</dc:date>
    </item>
    <item>
      <title>Re: Python Error</title>
      <link>https://community.esri.com/t5/python-questions/python-error/m-p/1220441#M65812</link>
      <description>&lt;P&gt;Try just datetime.strptime instead of datetime.datetime.strptime&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 17:23:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-error/m-p/1220441#M65812</guid>
      <dc:creator>Brian_Wilson</dc:creator>
      <dc:date>2022-10-10T17:23:41Z</dc:date>
    </item>
    <item>
      <title>Re: Python Error</title>
      <link>https://community.esri.com/t5/python-questions/python-error/m-p/1220455#M65813</link>
      <description>&lt;P&gt;Have you tried exporting the model out to python and just working on the geoprocess in python instead of ModelBuilder?&lt;/P&gt;&lt;P&gt;What was the geoprocess that was deprecated at Pro 3.0?&amp;nbsp; Do you know what similar geoprocess would perform the same task in Pro 3.0, if indeed the geoprocess called in the sample you are starting from has been deprecated?&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 18:01:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-error/m-p/1220455#M65813</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2022-10-10T18:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: Python Error</title>
      <link>https://community.esri.com/t5/python-questions/python-error/m-p/1220492#M65814</link>
      <description>&lt;P&gt;Thank you all so much. It's worked! I went into the ReportDate parameter, removed the hh:mm:ss leaving just the date, and after seeing your python layout i noticed it was a minus symbol, but i wanted a + symbol so as you can see below i changed it to + date.timedelta(days=365) and it worked.... would this have been the reason it wasn't working for some reason?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To confirm, the final working expression is as follows:&amp;nbsp;&lt;/P&gt;&lt;P&gt;datetime.datetime.strptime('%ReportDate%', '%d/%m/%Y') + datetime.timedelta(days = 365)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is now what i get when i run it.&lt;/P&gt;&lt;PRE&gt;Executing (Calculate Value): CalculateValue "datetime.datetime.strptime('01/01/2020', '%d/%m/%Y') + datetime.timedelta(days = 365)" # Date&lt;/PRE&gt;&lt;PRE&gt;Start Time: 10 October 2022 20:56:11&lt;/PRE&gt;&lt;PRE&gt;Value = 31/12/2020&lt;/PRE&gt;&lt;PRE&gt;Succeeded at 10 October 2022 20:56:11 (Elapsed Time: 0.01 seconds)&lt;/PRE&gt;&lt;P&gt;Thanks again everyone for your time in helping me, it's very much appreciated!&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 20:02:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-error/m-p/1220492#M65814</guid>
      <dc:creator>StephenSmith8847</dc:creator>
      <dc:date>2022-10-10T20:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: Python Error</title>
      <link>https://community.esri.com/t5/python-questions/python-error/m-p/1232593#M66090</link>
      <description>&lt;P&gt;The correct way to fix a python error&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Read the error from the beginning. The first line tells you the location of the error.&amp;nbsp;&lt;BR /&gt;Next, look at the error type. In this case, the error type is a SyntaxError.&amp;nbsp;&lt;BR /&gt;Look at the details of the error.&amp;nbsp;&lt;BR /&gt;Time to use your logic.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rachel Gomez&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2022 07:12:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-error/m-p/1232593#M66090</guid>
      <dc:creator>RachelGomez</dc:creator>
      <dc:date>2022-11-17T07:12:07Z</dc:date>
    </item>
  </channel>
</rss>

