<?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: arcpy.AddToolbox - how to specify relative path for multiple ArcGIS versions in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129514#M10052</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excellent.&amp;nbsp; Thanks Freddie.&amp;nbsp; And I can see I'll be able to pull the path from that too.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2015 00:12:07 GMT</pubDate>
    <dc:creator>RebeccaStrauch__GISP</dc:creator>
    <dc:date>2015-11-25T00:12:07Z</dc:date>
    <item>
      <title>arcpy.AddToolbox - how to specify relative path for multiple ArcGIS versions</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129511#M10049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a script that requires me to use arcpy.AddToolbox, which I currently have set up for 10.3&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;arcpy.AddToolbox(r"C:\Program Files (x86)\ArcGIS\Desktop10.3\ArcToolbox\Toolboxes\Spatial Analyst Tools.tbx")
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I query the version and make the path relative so it will work for other versions, e.g. 10.2 or 10.4 (eventually).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW, I thought&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
arcpy.CheckOutExtension("spatial")
from arcpy.sa import *
&lt;/PRE&gt;&lt;P&gt; would be enough for me to not have to add the toolbox, but that didn't work.&amp;nbsp; If anyone knows why, I'd be curious.&amp;nbsp; Without the full toolbox, it was crashing on&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.ExtractValuesToPoints_sa(randomTemp, elevRaster, randomPtSet, "NONE", "VALUE_ONLY")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cross-post &lt;A href="https://community.esri.com/group/1519" target="_blank"&gt;python snippets&lt;/A&gt;​&amp;nbsp; &lt;A href="https://community.esri.com/space/2030" target="_blank"&gt;Developers&lt;/A&gt;​&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:18:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129511#M10049</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2021-12-11T07:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.AddToolbox - how to specify relative path for multiple ArcGIS versions</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129512#M10050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;GetInstallInfo&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A href="http://desktop.arcgis.com/en/desktop/latest/analyze/arcpy-functions/getinstallinfo.htm" title="http://desktop.arcgis.com/en/desktop/latest/analyze/arcpy-functions/getinstallinfo.htm"&gt;http://desktop.arcgis.com/en/desktop/latest/analyze/arcpy-functions/getinstallinfo.htm&lt;/A&gt; &lt;A href="https://pro.arcgis.com/en/pro-app/arcpy/functions/getinstallinfo.htm" title="https://pro.arcgis.com/en/pro-app/arcpy/functions/getinstallinfo.htm"&gt;&lt;BR /&gt;&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2015-11-24_1606.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/147977_2015-11-24_1606.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2015 00:07:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129512#M10050</guid>
      <dc:creator>FreddieGibson</dc:creator>
      <dc:date>2015-11-25T00:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.AddToolbox - how to specify relative path for multiple ArcGIS versions</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129513#M10051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For the raster question, what happens if you call the function directly?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
from arcpy.sa import *
arcpy.env.workspace = "C:/sapyexamples/data"
&lt;STRONG&gt;arcpy.CheckOutExtension("Spatial")&lt;/STRONG&gt;
ExtractValuesToPoints("rec_sites.shp", "elevation", "C:/sapyexamples/output/outValPnts", "INTERPOLATE", "VALUE_ONLY")&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:18:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129513#M10051</guid>
      <dc:creator>FreddieGibson</dc:creator>
      <dc:date>2021-12-11T07:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.AddToolbox - how to specify relative path for multiple ArcGIS versions</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129514#M10052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excellent.&amp;nbsp; Thanks Freddie.&amp;nbsp; And I can see I'll be able to pull the path from that too.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2015 00:12:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129514#M10052</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-11-25T00:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.AddToolbox - how to specify relative path for multiple ArcGIS versions</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129515#M10053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I received an error when I try that.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image" height="162" src="https://community.esri.com/legacyfs/online/147984_pastedImage_0.png" style="width: 561px; height: 161.966px;" width="561" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2015 00:14:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129515#M10053</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-11-25T00:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.AddToolbox - how to specify relative path for multiple ArcGIS versions</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129516#M10054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rebecca, sorry to add to the confusion rather than give an answer... but here goes.&lt;/P&gt;&lt;P&gt;Do you store your scripts and toolboxes in an esri/arcmap folder? even for conventional toolboxes (not python toolboxes or add-ins)?&amp;nbsp; The reason I ask, is because I gave up on calling "arcpy.LoadThisToolbox" stuff explicitly because of such issues and I also stopped from X import Y at about the same time.&amp;nbsp; I found that if I could just import arcpy and then refer arcpy.SomeTool_sa or arcpy.SomeTool_management without problem.&amp;nbsp; I have noticed a slightly different approach sneaking into the posts by esri staff lately which produces the same result but may be a suggestion for the future path to take&amp;nbsp; ie&amp;nbsp; ... arcpy.management.SomeTool( blah blah) .&amp;nbsp; So to date, I put my toolboxes and their associated scripts in a folder and load the toolbox from there.&amp;nbsp; This has worked for me with tools that I use since 9.3 to 10.3.1 (only tested a few in Pro 1.1.1).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2015 00:18:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129516#M10054</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-11-25T00:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.AddToolbox - how to specify relative path for multiple ArcGIS versions</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129517#M10055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;but get install version isn't backward compatible is it? obviously to the start of arcpy?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2015 00:19:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129517#M10055</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-11-25T00:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.AddToolbox - how to specify relative path for multiple ArcGIS versions</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129518#M10056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="92.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/147978_92.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2015 00:47:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129518#M10056</guid>
      <dc:creator>FreddieGibson</dc:creator>
      <dc:date>2015-11-25T00:47:11Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.AddToolbox - how to specify relative path for multiple ArcGIS versions</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129519#M10057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Dan.&amp;nbsp; I like the thought of accessing the few tools I need in a "lighter" manner, and that might have been what Freddie was aiming for too.&amp;nbsp; I'll have to give your suggestion a little more thought, but for now, I'm just trying to have something so I can move on.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is part of the addin I'm creating from my AML/Avenue days, with some added features.&amp;nbsp; I've been the only one using it in the past, but trying to make it more flexible so I can train others.&amp;nbsp; Chances are the user will have the latest version, but you never know.&amp;nbsp;&amp;nbsp; I typically store my custom scripts and custom toolbar within the addin build structure.&amp;nbsp; I could copy the Tools I need directly into the custom toolbar I guess, and grab it from that maybe?&amp;nbsp; I'm not sure if that is what you are suggesting or not.&amp;nbsp; But in any case, it needs to be available to the addin. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As for you other comment about it being whether&amp;nbsp; arcpy.GetInstallInfo()["Version"] is backwards compatible...I'll have to test that.&amp;nbsp; But I think it will work for what I need for now (10.3)...and it looks like it's been available since at least 10.1.&amp;nbsp; I'm sure there would be other missing tools or issues if used with a version prioir to that....and actually I never liked the random points from a few version back....created random, then sorted them from north-to-south.....defeated the purpose for us. But that has been fixed now.&amp;nbsp; &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FYI - this is the final code I added to grab the toolbox for this 10.3 installation anyway.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;myDir = arcpy.GetInstallInfo()["InstallDir"]
toolboxPath = arcpy.os.path.join(myDir, "ArcToolbox\Toolboxes\Spatial Analyst Tools.tbx")
arcpy.AddMessage("toolbox {}".format(toolboxPath))
arcpy.AddToolbox(toolboxPath)&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case it helps anyone else.&amp;nbsp; Not the only way to do it, but it works for me. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:18:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129519#M10057</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2021-12-11T07:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.AddToolbox - how to specify relative path for multiple ArcGIS versions</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129520#M10058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good to know....for backwards compatibility.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2015 00:50:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129520#M10058</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-11-25T00:50:22Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.AddToolbox - how to specify relative path for multiple ArcGIS versions</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129521#M10059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When importing arcpy the default systems toolboxes are already loaded (i.e. the toolboxes located at &amp;lt;ArcGIS Install Path&amp;gt;\ArcToolbox\Toolboxes. This was a new functionality introduce at 10.0 with arcpy. Prior to this, when creating the gp object you would need to load each toolbox that prior to using it via a call to gp.AddToolbox. When using a custom toolbox you'd need to call AddToolbox at 9.3 or earlier and ImportToolbox at 10.0 or higher.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem you're having with the spatial analyst tools are now part of their own module in the arcpy site package. You would call them as functions in the same manner as when you using the arcpy.mapping or arcpy.na modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Importing arcpy&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A href="http://desktop.arcgis.com/en/desktop/latest/analyze/python/importing-arcpy.htm" title="http://desktop.arcgis.com/en/desktop/latest/analyze/python/importing-arcpy.htm"&gt;http://desktop.arcgis.com/en/desktop/latest/analyze/python/importing-arcpy.htm&lt;/A&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would assume that the error you're seeing is because you're calling ExtractValuesToPoints_sa and there is no function available with this name. You would either need to call arcpy.sa.ExtractValuesToPoints or if you import all of the functions from the sa module (i.e. import * from sa) you would use only the function name ExtractValuesToPoints. &lt;STRONG&gt;(Note the missing "_sa" part. This was intentionally left out because it isn't part of the function name)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2015 00:56:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129521#M10059</guid>
      <dc:creator>FreddieGibson</dc:creator>
      <dc:date>2015-11-25T00:56:07Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.AddToolbox - how to specify relative path for multiple ArcGIS versions</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129522#M10060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I need to write scripts that are backwards compatible with 9.X I always start by writing the script using the arcgisscripting to create the dispatch object and quickly check the install version. I will limit my use of arcpy in the code so that I can reduce the amount of redundancy. If there is a functionality that I need to use that is only available in 10.X and the users machine shows a valid version I'll quickly import arcpy and execute that task.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The biggest problem you'll see when writing a script that is compatible with 9.X is going to be the change in case for functions\methods. 9.X functions used PascalCase, whereas 10.X functions use camelCase. For example, if you're using a cursor at 9.X you'd need to call row.GetValue, whereas arcpy would require that you call row.getValue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2015 01:03:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129522#M10060</guid>
      <dc:creator>FreddieGibson</dc:creator>
      <dc:date>2015-11-25T01:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.AddToolbox - how to specify relative path for multiple ArcGIS versions</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129523#M10061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK.&amp;nbsp; that worked too, without loading the toolbox, an shaved about 8 seconds off the process (34secs to 26 seconds for the script), so I'll going to switch the "correct answer" to the above although it is all very help ful and there is of course more than one way to handle it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, instead of my code&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;OL class="dp-py" start="1"&gt;&lt;OL class="dp-py" start="1"&gt;&lt;LI&gt;myDir = arcpy.GetInstallInfo()[&lt;SPAN class="string"&gt;"InstallDir"]&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;toolboxPath = arcpy.os.path.join(myDir, &lt;SPAN class="string"&gt;"ArcToolbox\Toolboxes\Spatial Analyst Tools.tbx")&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;arcpy.AddMessage(&lt;SPAN class="string"&gt;"toolbox {}".format(toolboxPath))&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;arcpy.AddToolbox(toolboxPath)&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;#...&lt;/LI&gt;arcpy.ExtractValuesToPoints_sa(randomTemp, elevRaster, randomPtSet, "NONE", "VALUE_ONLY")&lt;/OL&gt;&lt;/OL&gt;&lt;OL class="dp-py" start="1"&gt;&lt;LI&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm&amp;nbsp; switching to&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
from arcpy.sa import *
#...
arcpy.sa.ExtractValuesToPoints(randomTemp, elevRaster, randomPtSet, "NONE", "VALUE_ONLY")
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both work, and the version/path check may come in handy for other things, but the second solution is what I will go with for now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT:&amp;nbsp; fixed typo in second code block.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:18:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129523#M10061</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2021-12-11T07:18:35Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.AddToolbox - how to specify relative path for multiple ArcGIS versions</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129524#M10062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Freddie.&amp;nbsp; Yes the pascal vs camel case caused a load of issues but was easy to fix.&amp;nbsp; It is nice to know that getinstallversion simply returns a string so I can back-to-the-future some of my older toolsets in the future and branch them off to newer versions of code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2015 01:12:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-addtoolbox-how-to-specify-relative-path-for/m-p/129524#M10062</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-11-25T01:12:03Z</dc:date>
    </item>
  </channel>
</rss>

