<?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: Python script to a script tool in ArcGIS in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/python-script-to-a-script-tool-in-arcgis/m-p/793257#M1657</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;Thanks for the reply &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&amp;nbsp;Yes i have added the folder as a parameter in the tool with direction defined as output and required. Also i have the folder called Out_Fold in the Stak1108 main folder. I am adding the error message here from the tool and the screenshot of my Add script tool. "Failed script Lab3S...Traceback (most recent call last):File "H:\Stak1108\Stack10.py", line 20, in &amp;lt;module&amp;gt;Stak123.save(r"H:/Stak1108/Out_Fold/Stak123")RuntimeError: &lt;/SPAN&gt;ERROR 999998: Unexpected Error"&lt;IMG alt="Screenshot of tool details" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/503131_Screenshot_Geonet.JPG" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Aug 2020 10:04:32 GMT</pubDate>
    <dc:creator>Deepa</dc:creator>
    <dc:date>2020-08-12T10:04:32Z</dc:date>
    <item>
      <title>Python script to a script tool in ArcGIS</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/python-script-to-a-script-tool-in-arcgis/m-p/793255#M1655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I am new to Python and my question may be very basic &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to convert my python code to a script tool in ArcGIS. The code used is written below and it worked fine and got the&amp;nbsp;output raster named Stak123. But when i make this code into a script tool, i want the output name to be decided by the user who runs the tool. To solve this I was thinking if i add an output folder (Out_Fold) as GetParameterAsText and then in the tool i just put any new name in the output folder for the output raster. But when i ran it&amp;nbsp; in ArcGIS as a tool I&amp;nbsp;got the message it is completed but could not find the output raster. How to fix this?&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color: #0033b3;"&gt;import &lt;/SPAN&gt;arcpy
&lt;SPAN style="color: #0033b3;"&gt;import &lt;/SPAN&gt;os
&lt;SPAN style="color: #0033b3;"&gt;import &lt;/SPAN&gt;sys
&lt;SPAN style="color: #0033b3;"&gt;from &lt;/SPAN&gt;arcpy &lt;SPAN style="color: #0033b3;"&gt;import &lt;/SPAN&gt;env
&lt;SPAN style="color: #0033b3;"&gt;from &lt;/SPAN&gt;arcpy.sa &lt;SPAN style="color: #0033b3;"&gt;import &lt;/SPAN&gt;*
arcpy.env.overwriteOutput = &lt;SPAN style="color: #000080;"&gt;True
&lt;/SPAN&gt;arcpy.CheckOutExtension(&lt;SPAN style="color: #067d17;"&gt;"Spatial"&lt;/SPAN&gt;)
env.workspace = &lt;SPAN style="color: #067d17;"&gt;r"H:\Stak1108"
&lt;/SPAN&gt;arcpy.env.cellSize = &lt;SPAN style="color: #067d17;"&gt;"MINOF"
# Assigned paramater as text for the tool
&lt;/SPAN&gt;Elevation = arcpy.GetParameterAsText(&lt;SPAN style="color: #1750eb;"&gt;0&lt;/SPAN&gt;)
Out_Fold = arcpy.GetParameterAsText(&lt;SPAN style="color: #1750eb;"&gt;4&lt;/SPAN&gt;)
Raster1 = Raster(&lt;SPAN style="color: #067d17;"&gt;"Elevation"&lt;/SPAN&gt;)
# The conditionals were applied in the input rasters
Stak123 = Con(Raster1 = 1,3)........
#Saving the output
Stak123.save(&lt;SPAN style="color: #067d17;"&gt;r"H:/Stak1108/Out_Fold/Stak123"&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Deepa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 09:07:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/python-script-to-a-script-tool-in-arcgis/m-p/793255#M1655</guid>
      <dc:creator>Deepa</dc:creator>
      <dc:date>2021-12-12T09:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to a script tool in ArcGIS</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/python-script-to-a-script-tool-in-arcgis/m-p/793256#M1656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Out_fold should be defined as a 'folder' in the tool's parameters and make it required. The person can then navigate to the folder.&lt;/P&gt;&lt;P&gt;If the folder doesn't exist, you would have to create one in your code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2020 00:22:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/python-script-to-a-script-tool-in-arcgis/m-p/793256#M1656</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2020-08-12T00:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to a script tool in ArcGIS</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/python-script-to-a-script-tool-in-arcgis/m-p/793257#M1657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;Thanks for the reply &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&amp;nbsp;Yes i have added the folder as a parameter in the tool with direction defined as output and required. Also i have the folder called Out_Fold in the Stak1108 main folder. I am adding the error message here from the tool and the screenshot of my Add script tool. "Failed script Lab3S...Traceback (most recent call last):File "H:\Stak1108\Stack10.py", line 20, in &amp;lt;module&amp;gt;Stak123.save(r"H:/Stak1108/Out_Fold/Stak123")RuntimeError: &lt;/SPAN&gt;ERROR 999998: Unexpected Error"&lt;IMG alt="Screenshot of tool details" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/503131_Screenshot_Geonet.JPG" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2020 10:04:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/python-script-to-a-script-tool-in-arcgis/m-p/793257#M1657</guid>
      <dc:creator>Deepa</dc:creator>
      <dc:date>2020-08-12T10:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to a script tool in ArcGIS</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/python-script-to-a-script-tool-in-arcgis/m-p/793258#M1658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try changing the direction to input.&amp;nbsp; The folder location is provided by the user, as input.&amp;nbsp; It is not generated by the script, which would be output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2020 15:56:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/python-script-to-a-script-tool-in-arcgis/m-p/793258#M1658</guid>
      <dc:creator>RandyBurton</dc:creator>
      <dc:date>2020-08-12T15:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to a script tool in ArcGIS</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/python-script-to-a-script-tool-in-arcgis/m-p/793259#M1659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes i changed the Output folder direction as input. But then i am unable to&amp;nbsp;give the&amp;nbsp;name of the output i want in the tool. I have attached the image here.&lt;IMG __jive_id="503184" alt="Screenshot of Tool" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/503184_Final.JPG" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2020 16:07:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/python-script-to-a-script-tool-in-arcgis/m-p/793259#M1659</guid>
      <dc:creator>Deepa</dc:creator>
      <dc:date>2020-08-12T16:07:40Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to a script tool in ArcGIS</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/python-script-to-a-script-tool-in-arcgis/m-p/793260#M1660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps a folder input field and a save raster (string) input field.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Folder selection" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/503250_raster_1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Completed form" class="jive-emoji jive-image image-2 j-img-original" src="https://community.esri.com/legacyfs/online/503251_raster_2.png" /&gt;&lt;/P&gt;&lt;P&gt;A simple demo script:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; os

folder &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GetParameterAsText&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;# Input, Data Type 'Folder'&lt;/SPAN&gt;
raster &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GetParameterAsText&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;# Input, Data Type 'String'&lt;/SPAN&gt;

arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;AddMessage&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Folder: {}"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;folder&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;AddMessage&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Raster: {}"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;raster&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;# save location&lt;/SPAN&gt;
save_raster &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;folder&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; raster&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;AddMessage&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Save Location: {}"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;save_raster&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="string token"&gt;'''
Output:
Executing: GetFolder C:\Temp\Rasters Stak123
Start Time: Wed Aug 12 19:14:29 2020
Running script GetFolder...
Folder: C:\Temp\Rasters
Raster: Stak123
Save Location: C:\Temp\Rasters\Stak123
Completed script GetFolder...
Succeeded at Wed Aug 12 19:14:29 2020 (Elapsed Time: 0.00 seconds)
'''&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 09:07:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/python-script-to-a-script-tool-in-arcgis/m-p/793260#M1660</guid>
      <dc:creator>RandyBurton</dc:creator>
      <dc:date>2021-12-12T09:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to a script tool in ArcGIS</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/python-script-to-a-script-tool-in-arcgis/m-p/793261#M1661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, i tried like you explained. It runs and tool says it is completed successfully but i cant find the output. This is the code i used &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;. All i see is the Try(output raster from the code saved in the folder called Fresh). I dont find the new name(Final) which i gave in the tool in a different output folder(Old).&amp;nbsp; Also i made the direction as input for the folder and added raster as a string in the tool parameters.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="503338" alt="Screenshot of Tool output" class="jive-emoji image-1 jive-image j-img-original" src="/legacyfs/online/503338_Tool name.JPG" /&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color: #0033b3;"&gt;import &lt;/SPAN&gt;arcpy
&lt;SPAN style="color: #0033b3;"&gt;import &lt;/SPAN&gt;os
&lt;SPAN style="color: #0033b3;"&gt;import &lt;/SPAN&gt;sys
&lt;SPAN style="color: #0033b3;"&gt;from &lt;/SPAN&gt;arcpy &lt;SPAN style="color: #0033b3;"&gt;import &lt;/SPAN&gt;env
&lt;SPAN style="color: #0033b3;"&gt;from &lt;/SPAN&gt;arcpy.sa &lt;SPAN style="color: #0033b3;"&gt;import &lt;/SPAN&gt;*
arcpy.CheckOutExtension(&lt;SPAN style="color: #067d17;"&gt;"Spatial"&lt;/SPAN&gt;)
env.workspace = &lt;SPAN style="color: #067d17;"&gt;r"H:\Stak1108"
&lt;/SPAN&gt;arcpy.env.cellSize = &lt;SPAN style="color: #067d17;"&gt;"MINOF"
&lt;/SPAN&gt;arcpy.env.overwriteOutput = &lt;SPAN style="color: #000080;"&gt;True
#The parameters for tool
&lt;/SPAN&gt;...... = arcpy.GetParameterAsText(&lt;SPAN style="color: #1750eb;"&gt;0&lt;/SPAN&gt;)
.....
folder = arcpy.GetParameterAsText(&lt;SPAN style="color: #1750eb;"&gt;4&lt;/SPAN&gt;)
raster = arcpy.GetParameterAsText(&lt;SPAN style="color: #1750eb;"&gt;5&lt;/SPAN&gt;)
# The Add messages
arcpy.AddMessage(&lt;SPAN style="color: #067d17;"&gt;"Folder: {}"&lt;/SPAN&gt;.format(folder))
arcpy.AddMessage(&lt;SPAN style="color: #067d17;"&gt;"Raster: {}"&lt;/SPAN&gt;.format(raster))
save_raster = os.path.join(folder, raster)
arcpy.AddMessage(&lt;SPAN style="color: #067d17;"&gt;"Save Location: {}"&lt;/SPAN&gt;.format(save_raster))
Raster1 = Raster(&lt;SPAN style="color: #067d17;"&gt;.....)&lt;/SPAN&gt;
Try = Con(Raster4 == &lt;SPAN style="color: #1750eb;"&gt;1&lt;/SPAN&gt;,&lt;SPAN style="color: #1750eb;"&gt;5&lt;/SPAN&gt;)......
Try.save(&lt;SPAN style="color: #067d17;"&gt;r"H:\Stak1108\Fresh\Try"&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 09:07:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/python-script-to-a-script-tool-in-arcgis/m-p/793261#M1661</guid>
      <dc:creator>Deepa</dc:creator>
      <dc:date>2021-12-12T09:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to a script tool in ArcGIS</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/python-script-to-a-script-tool-in-arcgis/m-p/793262#M1662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try changing the last line from&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;Try&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;save&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;r&lt;SPAN class="string token"&gt;"H:\Stak1108\Fresh\Try"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Have it use the locations specified by "save_raster" with this:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;Try&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;save&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;save_raster&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 09:07:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/python-script-to-a-script-tool-in-arcgis/m-p/793262#M1662</guid>
      <dc:creator>RandyBurton</dc:creator>
      <dc:date>2021-12-12T09:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to a script tool in ArcGIS</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/python-script-to-a-script-tool-in-arcgis/m-p/793263#M1663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This worked like a charm &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&amp;nbsp;&lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;Thanks for helping me from the scratch!&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Aug 2020 22:02:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/python-script-to-a-script-tool-in-arcgis/m-p/793263#M1663</guid>
      <dc:creator>Deepa</dc:creator>
      <dc:date>2020-08-13T22:02:36Z</dc:date>
    </item>
  </channel>
</rss>

