<?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 Feasibility of using an external GUI to interact with ArcPro similar to using the python console pane? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/feasibility-of-using-an-external-gui-to-interact/m-p/1180866#M64730</link>
    <description>&lt;P&gt;Is it possible to interact with an open ArcPro session by means other than the GP tools or python console? I'm currently running scripts through either of those things but I got to thinking today as I was learning about tkinter whether or not there is a way press a button within a custom gui that would be able to send commands to an open ArcPro session much like pasting it manually into the console would be. We're currently dealing with an innumerable amount of unique features that could more easily be worked with if all it took was a single button press to, say, run an item-specific da.SelectByAttributes that returns that exact item from previously stored data as opposed to clicking my way through the select by attributes pane or via a GP tool or via the python console.&lt;/P&gt;</description>
    <pubDate>Wed, 08 Jun 2022 00:11:39 GMT</pubDate>
    <dc:creator>Glasnoct</dc:creator>
    <dc:date>2022-06-08T00:11:39Z</dc:date>
    <item>
      <title>Feasibility of using an external GUI to interact with ArcPro similar to using the python console pane?</title>
      <link>https://community.esri.com/t5/python-questions/feasibility-of-using-an-external-gui-to-interact/m-p/1180866#M64730</link>
      <description>&lt;P&gt;Is it possible to interact with an open ArcPro session by means other than the GP tools or python console? I'm currently running scripts through either of those things but I got to thinking today as I was learning about tkinter whether or not there is a way press a button within a custom gui that would be able to send commands to an open ArcPro session much like pasting it manually into the console would be. We're currently dealing with an innumerable amount of unique features that could more easily be worked with if all it took was a single button press to, say, run an item-specific da.SelectByAttributes that returns that exact item from previously stored data as opposed to clicking my way through the select by attributes pane or via a GP tool or via the python console.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jun 2022 00:11:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/feasibility-of-using-an-external-gui-to-interact/m-p/1180866#M64730</guid>
      <dc:creator>Glasnoct</dc:creator>
      <dc:date>2022-06-08T00:11:39Z</dc:date>
    </item>
    <item>
      <title>Re: Feasibility of using an external GUI to interact with ArcPro similar to using the python console pane?</title>
      <link>https://community.esri.com/t5/python-questions/feasibility-of-using-an-external-gui-to-interact/m-p/1180877#M64731</link>
      <description>&lt;P&gt;I think the ArcGIS Pro SDK Corehost or A Pro addin would be the vessel you’re describing. Lots of samples, but not as easy to find things &amp;nbsp;as googling ‘arcpy xyz’ or ‘arcgis js api xyz’ is.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jun 2022 01:04:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/feasibility-of-using-an-external-gui-to-interact/m-p/1180877#M64731</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2022-06-08T01:04:38Z</dc:date>
    </item>
    <item>
      <title>Re: Feasibility of using an external GUI to interact with ArcPro similar to using the python console pane?</title>
      <link>https://community.esri.com/t5/python-questions/feasibility-of-using-an-external-gui-to-interact/m-p/1180982#M64732</link>
      <description>&lt;P&gt;Add-ins aren't supported in ArcPro nor planned to be, unless I've missed something.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I looked at Corehost a bit but it looks over my head unless there's some minimally viable code I can get away with to be able to pass python through to the instance.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jun 2022 11:53:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/feasibility-of-using-an-external-gui-to-interact/m-p/1180982#M64732</guid>
      <dc:creator>Glasnoct</dc:creator>
      <dc:date>2022-06-08T11:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: Feasibility of using an external GUI to interact with ArcPro similar to using the python console pane?</title>
      <link>https://community.esri.com/t5/python-questions/feasibility-of-using-an-external-gui-to-interact/m-p/1181068#M64733</link>
      <description>&lt;P&gt;Oh, Pro has/does/will supported Add-ins... See &lt;A href="https://developers.arcgis.com/documentation/arcgis-add-ins-and-automation/arcgis-pro/#add-ins" target="_blank" rel="noopener"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;Add-ins are authored using .NET along with Esri’s &lt;EM&gt;Desktop Application Markup Language (DAML)&lt;/EM&gt;—an XML language created by Esri. DAML describes the customizations; .NET classes provide the custom behavior. The ArcGIS Pro software development kit (SDK) includes an Add-In Wizard that integrates with Microsoft Visual Studio to simplify development.&lt;/P&gt;&lt;P&gt;An alternative to this and is pure python is creating python script tools. &lt;A href="https://pro.arcgis.com/en/pro-app/2.8/help/analysis/geoprocessing/basics/create-a-python-script-tool.htm" target="_blank" rel="noopener"&gt;create-a-python-script-tool&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jun 2022 14:12:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/feasibility-of-using-an-external-gui-to-interact/m-p/1181068#M64733</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2022-06-08T14:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: Feasibility of using an external GUI to interact with ArcPro similar to using the python console pane?</title>
      <link>https://community.esri.com/t5/python-questions/feasibility-of-using-an-external-gui-to-interact/m-p/1181079#M64734</link>
      <description>&lt;P&gt;Ah, I see there are .Net add-ins. I know when I search add-ins and python the latest ESRI response on&amp;nbsp;&lt;EM&gt;python add-ins&lt;/EM&gt; is there are no plans to support them. And I already use script tools but I'm looking for an alternative for what would essentially be micro-scripts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I suppose I'll have to dig into this .Net add-in stuff but I don't know the first thing about .Net so that's going be a bear. I'm wondering if I can make an add-in that listens/receives from the python GUI and just passes it to the python env within the instance...&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jun 2022 14:30:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/feasibility-of-using-an-external-gui-to-interact/m-p/1181079#M64734</guid>
      <dc:creator>Glasnoct</dc:creator>
      <dc:date>2022-06-08T14:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: Feasibility of using an external GUI to interact with ArcPro similar to using the python console pane?</title>
      <link>https://community.esri.com/t5/python-questions/feasibility-of-using-an-external-gui-to-interact/m-p/1181099#M64735</link>
      <description>&lt;P&gt;I just thought of a possible alternative.&lt;BR /&gt;&lt;BR /&gt;- create script tool that reads from a placeholder file&lt;BR /&gt;- python GUI overwrites the button's function to the file&lt;BR /&gt;- script tool reads the line from the placeholder file and acts accordingly.&lt;BR /&gt;&lt;BR /&gt;That sounds like a decent workaround though it still involves clicking the GUI, clicking the script tool button, and clicking run. It would be nice if I could call and run the script tool via a single hotkey (like accelerators but without having to hit the run button or pull up the GP pane). Guess I could get around that with PyAutoGui.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jun 2022 14:52:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/feasibility-of-using-an-external-gui-to-interact/m-p/1181099#M64735</guid>
      <dc:creator>Glasnoct</dc:creator>
      <dc:date>2022-06-08T14:52:02Z</dc:date>
    </item>
  </channel>
</rss>

