<?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: how to pass string or array from .pyt to my dockpane (xaml.cs) in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1341797#M10603</link>
    <description>&lt;P&gt;thanks &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/327152"&gt;@MatthewDriscoll&lt;/a&gt;&amp;nbsp;for the hint. Apparantly I didn't phrase my problem correctly, because that's not what I meant. I mean how can I now access the content of the result? I mean how can I extract layer_files&amp;nbsp; layer_schemas? (for example the layer_name that is on the second position in each layer_file?) every method I try returns nonsens or void. my best try was with&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;IEnumerable&amp;lt;Tuple&amp;lt;string, string, string, bool&amp;gt;&amp;gt; parameters = result.Parameters;&lt;/LI-CODE&gt;&lt;P&gt;but I just cant figure out how to access my result values.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 26 Oct 2023 05:45:04 GMT</pubDate>
    <dc:creator>nadja</dc:creator>
    <dc:date>2023-10-26T05:45:04Z</dc:date>
    <item>
      <title>how to pass string or array from .pyt to my dockpane (xaml.cs)</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1341399#M10597</link>
      <description>&lt;P&gt;it seems like a basic question, but even with the documentation and other posts I cannot get it to work properly. I've got a Python-Toolbox in which I establish the connection to a ArcSDE using a connection file. now I would like to list the content of the ArcSDE in my dockpane (because it looks prettier). I can list the content of my dockpane in my Python-Toolbox and display them. It seems that it's also correct how I pass them back (at least there is no error message). But I don't see how I can access the returned strings and arrays. How do I pass my ArcSDE content as string or array (or anything else) to my dockpane?&lt;/P&gt;&lt;P&gt;here is what I've got in my Python Toolbox:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import arcpy
from tkinter import messagebox
from osgeo import gdal
import os
import ast

class Toolbox(object):
    def __init__(self):
        """Define the toolbox (the name of the toolbox is the name of the
        .pyt file)."""
        self.label = "Toolbox"
        self.alias = "toolbox"

        # List of tool classes associated with this toolbox
        self.tools = [ArcSDEContent]
        
def read_sde():
    if os.path.exists(os.environ['AppDAta']+"/Esri/ArcGISPro/Favorites/xxx.sde"):
      sde_connfile = os.environ['AppDAta']+"/Esri/ArcGISPro/Favorites/xxx.sde"
        conn = arcpy.ArcSDESQLExecute(sde_connfile)
        sql = "select t.name as mytype,i.name as myname,  \
            CASE \
            WHEN has_table_privilege(user,i.name,'SELECT') THEN 1 \
            ELSE 0 \
            END AS mypriv \
            FROM GDB_itemtypes t \
            right join GDB_items i \
            ON i.type = t.uuid \
            where t.name in ( \
            'Tin', \
            'Geometric Network', \
            'Survey Dataset', \
            'Schematic Dataset', \
            'Table', \
            'Feature Class', \
            'Raster Dataset', \
            'Raster Catalog', \
            'Network Dataset', \
            'Terrain', \
            'Parcel Fabric', \
            'Mosaic Dataset', \
            'Utility Network', \
            'Parcel Dataset' \
            );"
        try:
            sql_return = conn.execute(sql)
                              
            layer_files = []
            layer_schemas = []
            for i in sql_return:
              if i[2] == 0:
                continue
              layer_type = i[0]
              layer_fullname = sde_connfile + '/' + i[1]
              layer_name = i[1].split('.')[1] + '.' + i[1].split('.')[2]
              layer_shortname = i[1].split('.')[2]
              layer_schema = i[1].split('.')[1]
              if layer_schema not in layer_schemas:
                layer_schemas.append(layer_schema)
           layer_files.append([layer_name,layer_shortname,layer_schema,layer_fullname,layer_type])
            layer_schemas.sort() 
            layer_files.sort()
            return layer_files, layer_schemas  
                    
        except Exception as err:
            sql_return = False
      
    else:
      messagebox.showinfo(title="test 2", message="sde file does not exist")
       

class ArcSDEContent(object):
    def __init__(self):
        """Define the tool (tool name is the name of the class)."""
        self.label = "ArcSDE Content"
        self.description = ""
        
    def getParameterInfo(self):
        """Define parameter definitions"""
        params = []
        params.append({
            'name': 'layer_files',
            'displayName': 'Layer Files',
            'datatype': 'String',
            'parameterType': 'Derived',
            'direction': 'Output'
        })
        params.append({
            'name': 'layer_schemas',
            'displayName': 'Layer Schemas',
            'datatype': 'String',
            'parameterType': 'Derived',
            'direction': 'Output'
        })
        return params

    def isLicensed(self):
        return True

    def updateParameters(self, parameters):
        return

    def updateMessages(self, parameters):
        return

    def execute(self, parameters, messages):
      layer_files, layer_schemas = read_sde()

        # Set the output parameters with the results
      parameters[0].value = ";".join(layer_files)  # Join the list to a string
      parameters[1].value = ";".join(layer_schemas) 
 &lt;/LI-CODE&gt;&lt;P&gt;and in my dockpane.xaml.cs I've got:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;        private async void ReadArcSDE(object sender, RoutedEventArgs e)
        {
            string installPath = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location);
            string toolboxPath = System.IO.Path.Combine(installPath, "MyPythonToolbox.pyt\\ArcSDEContent");
            IGPResult result =  await Geoprocessing.ExecuteToolAsync(toolboxPath, null, null, null, null, GPExecuteToolFlags.InheritGPOptions);
        }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for any hint&lt;/P&gt;</description>
      <pubDate>Wed, 25 Oct 2023 14:39:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1341399#M10597</guid>
      <dc:creator>nadja</dc:creator>
      <dc:date>2023-10-25T14:39:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to pass string or array from .pyt to my dockpane (xaml.cs)</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1341529#M10598</link>
      <description>&lt;P&gt;At the end of your dockpane.xaml.cs add&lt;/P&gt;&lt;P&gt;return result;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Oct 2023 16:33:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1341529#M10598</guid>
      <dc:creator>MatthewDriscoll</dc:creator>
      <dc:date>2023-10-25T16:33:58Z</dc:date>
    </item>
    <item>
      <title>Re: how to pass string or array from .pyt to my dockpane (xaml.cs)</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1341797#M10603</link>
      <description>&lt;P&gt;thanks &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/327152"&gt;@MatthewDriscoll&lt;/a&gt;&amp;nbsp;for the hint. Apparantly I didn't phrase my problem correctly, because that's not what I meant. I mean how can I now access the content of the result? I mean how can I extract layer_files&amp;nbsp; layer_schemas? (for example the layer_name that is on the second position in each layer_file?) every method I try returns nonsens or void. my best try was with&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;IEnumerable&amp;lt;Tuple&amp;lt;string, string, string, bool&amp;gt;&amp;gt; parameters = result.Parameters;&lt;/LI-CODE&gt;&lt;P&gt;but I just cant figure out how to access my result values.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Oct 2023 05:45:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1341797#M10603</guid>
      <dc:creator>nadja</dc:creator>
      <dc:date>2023-10-26T05:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: how to pass string or array from .pyt to my dockpane (xaml.cs)</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1342199#M10605</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;IGPResult has property &lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic9373.html" target="_self"&gt;Values.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;It contains&amp;nbsp;&lt;SPAN&gt;output values or null if tool execution fails. It's list of strings&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Oct 2023 17:43:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1342199#M10605</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2023-10-26T17:43:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to pass string or array from .pyt to my dockpane (xaml.cs)</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1348653#M10686</link>
      <description>&lt;P&gt;I'm sorry, but I'm still stuck... I tried to make my example as easy as possible, but I don't get it to work at all...&lt;/P&gt;&lt;P&gt;in my python toolbox:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;class ArcSDEContent(object):
    def __init__(self):
        """Define the tool (tool name is the name of the class)."""
        self.label = "ArcSDE Content"
        self.description = ""
        
    def getParameterInfo(self):
        """Define parameter definitions"""
        params = []
        params.append({
            'name': 'layer_files',
            'displayName': 'Layer Files',
            'datatype': ['String'],
            'parameterType': 'Derived',
            'direction': 'Output'
        })
        return params

    def isLicensed(self):
        return True

    def updateParameters(self, parameters):
        return

    def updateMessages(self, parameters):
        return

    def execute(self, parameters, messages):
       #read_sde()
       #return
       try:
         
         #  parameters.append("test1")
         arcpy.SetParameterAsText(0, "Your output value")
         return 
       except Exception as e:
          arcpy.AddError(f"An error occurred: {str(e)}")
       
&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and in my Doxpane.xaml.cs&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;private async void ReadArcSDE(object sender, RoutedEventArgs e)
{
    string installPath = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location);
    string toolboxPath = System.IO.Path.Combine(installPath, "test.pyt\\ArcSDEContent");
    IGPResult result = await Geoprocessing.ExecuteToolAsync(toolboxPath, null, null, null, null, GPExecuteToolFlags.InheritGPOptions);

    string value = result.ReturnValue;
    ArcGIS.Desktop.Framework.Dialogs.MessageBox.Show(value, "return value");

   /* var outputParameterValue = result.Parameters;
    foreach (Tuple&amp;lt;string, string, string, bool&amp;gt; param in outputParameterValue)
    {
        string i1 = param.Item1;
        string i2 = param.Item2;
        string i3 = param.Item3;
        bool i4 = param.Item4;
        ArcGIS.Desktop.Framework.Dialogs.MessageBox.Show("parameters", "item 1:" + i1);
    }*/

      values = result.Values;
      foreach (string val in values)
      {
          ArcGIS.Desktop.Framework.Dialogs.MessageBox.Show(val ,"values val");
      }
}&lt;/LI-CODE&gt;&lt;P&gt;how can I access my value from my python script? it shouldn't be that hard...&lt;/P&gt;</description>
      <pubDate>Mon, 13 Nov 2023 14:25:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1348653#M10686</guid>
      <dc:creator>swiss_parks_network_nbernhard</dc:creator>
      <dc:date>2023-11-13T14:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to pass string or array from .pyt to my dockpane (xaml.cs)</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1348665#M10687</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/42133"&gt;@GKmieliauskas&lt;/a&gt;&amp;nbsp;is correct you need to use the IGPResult.&amp;nbsp; Below is how I access python results in the cs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;        public async Task&amp;lt;IGPResult&amp;gt; ExecuteModel()
        {

            var progDlg = new ProgressDialog("Running Geoprocessing Tool", "Cancel");
            progDlg.Show();

            var progsrc=new CancelableProgressorSource(progDlg);


            var pathPython = System.IO.Path.GetDirectoryName((new System.Uri(Assembly.GetExecutingAssembly().CodeBase)).AbsolutePath);
            pathPython = Uri.UnescapeDataString(pathPython);
            System.Diagnostics.Debug.WriteLine(pathPython);


            var tool_path = System.IO.Path.Combine(pathPython, @"YourPythonScript.pyt\Tool");

            var parameters = Geoprocessing.MakeValueArray();

            IGPResult gp_result = await Geoprocessing.ExecuteToolAsync(tool_path, parameters, null, new CancelableProgressorSource(progDlg).Progressor);


            return gp_result;

        }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Nov 2023 14:41:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1348665#M10687</guid>
      <dc:creator>MatthewDriscoll</dc:creator>
      <dc:date>2023-11-13T14:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to pass string or array from .pyt to my dockpane (xaml.cs)</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1349068#M10689</link>
      <description>&lt;P&gt;I think the issue is in line 34:&lt;/P&gt;&lt;PRE&gt;         arcpy.SetParameterAsText(0, "Your output value")&lt;/PRE&gt;&lt;P&gt;First parameters of SetParameterAsText can't be 0. As I understand your tool has 5 parameters, last parameter is your output. So, first parameter must be 4.&lt;/P&gt;&lt;P&gt;I am not sure, but I use SetParameter instead of SetParameterAsText.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 06:20:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1349068#M10689</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2023-11-14T06:20:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to pass string or array from .pyt to my dockpane (xaml.cs)</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1349115#M10691</link>
      <description>&lt;P&gt;thanks&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/327152"&gt;@MatthewDriscoll&lt;/a&gt;&amp;nbsp; for your reply. I don't see why I would need to return the gp_result from my method. I need the result in the same method later on - imagine you do sth with gp_result in "ExecuteModel". how would you access the results? As far as I understand it are you returning the gp_result to the "scope" where you call ExecuteModel.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 12:49:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1349115#M10691</guid>
      <dc:creator>swiss_parks_network_nbernhard</dc:creator>
      <dc:date>2023-11-14T12:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: how to pass string or array from .pyt to my dockpane (xaml.cs)</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1349118#M10692</link>
      <description>&lt;P&gt;thanks&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/42133"&gt;@GKmieliauskas&lt;/a&gt;, how do you access that parameter?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 13:09:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1349118#M10692</guid>
      <dc:creator>swiss_parks_network_nbernhard</dc:creator>
      <dc:date>2023-11-14T13:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: how to pass string or array from .pyt to my dockpane (xaml.cs)</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1349123#M10693</link>
      <description>&lt;P&gt;As I wrote earlier.&lt;/P&gt;&lt;LI-CODE lang="c"&gt;                var gpResult = Geoprocessing.ExecuteToolAsync(fullToolPath,                     parameters, null, null, (eventName, o) =&amp;gt; GPHelper.ProcessGPEvent(eventName, o), GPExecuteToolFlags.AddToHistory);

                gpResult.Wait();

                string errMsg = string.Empty;
                if (gpResult.Result.IsFailed)
                {
                    throw new Exception("Tool failed");
                }
                else
                {
                    var resultValues = gpResult.Result.Values;

                    if (resultValues == null)
                    {
                        throw new Exception("Nothing is returned");
                    }
                    else
                    {
                        if (resultValues.Count &amp;gt; 0)
                        {
                             // reading output parameters
                        }
                    }
                }&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 14 Nov 2023 13:32:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1349123#M10693</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2023-11-14T13:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to pass string or array from .pyt to my dockpane (xaml.cs)</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1349190#M10695</link>
      <description>&lt;P&gt;thank you&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/42133"&gt;@GKmieliauskas&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to adapt my code to your sample. my python:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;def execute(self, parameters, messages):
  try:
    string_to_pass = "Your output value"
    arcpy.SetParameter(4, string_to_pass)
    return 
  except Exception as e:
    arcpy.AddError(f"An error occurred: {str(e)}")&lt;/LI-CODE&gt;&lt;P&gt;and then in my xaml.cs:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;private async void ReadArcSDE(object sender, RoutedEventArgs e)
{
    string installPath = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location);
    string toolboxPath = System.IO.Path.Combine(installPath, "xxxx.pyt\\ArcSDEContent");
    IGPResult result = await Geoprocessing.ExecuteToolAsync(toolboxPath, null, null, null, null, GPExecuteToolFlags.InheritGPOptions);

    var resultValues = result.Values;

    foreach (string val in resultValues)
             {
                 ArcGIS.Desktop.Framework.Dialogs.MessageBox.Show(val, "values val");
             }
}&lt;/LI-CODE&gt;&lt;P&gt;it seems to work until line 7 "var resultValues" - at least until there I don't get an error message (unless I try result.Result.Values). But as soon as I try to access / print my result values (see line 9 to 12), I get "System.NullReferenceException: 'Object reference not set to an instance of an object'". where is my mistake?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 15:17:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1349190#M10695</guid>
      <dc:creator>swiss_parks_network_nbernhard</dc:creator>
      <dc:date>2023-11-14T15:17:41Z</dc:date>
    </item>
    <item>
      <title>Re: how to pass string or array from .pyt to my dockpane (xaml.cs)</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1349224#M10697</link>
      <description>&lt;P&gt;You need to check 'result' as in my last comment. Your geoprocessing tool could fail or etc. I don't have possibility to check, but it seems for your geoprocessing&amp;nbsp; calling code could be like this:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;                var gpResult = await Geoprocessing.ExecuteToolAsync(fullToolPath,                     parameters, null, null, (eventName, o) =&amp;gt; GPHelper.ProcessGPEvent(eventName, o), GPExecuteToolFlags.AddToHistory);

                string errMsg = string.Empty;
                if (gpResult.IsFailed)
                {
                    throw new Exception("Tool failed");
                }
                else
                {
                    var resultValues = gpResult.Values;

                    if (resultValues == null)
                    {
                        throw new Exception("Nothing is returned");
                    }
                    else
                    {
                        if (resultValues.Count &amp;gt; 0)
                        {
                             // reading output parameters
                        }
                    }
                }&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 14 Nov 2023 16:05:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-pass-string-or-array-from-pyt-to-my/m-p/1349224#M10697</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2023-11-14T16:05:46Z</dc:date>
    </item>
  </channel>
</rss>

