<?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: ArcGIs API for Python - Export Item Parameters in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-for-python-export-item-parameters/m-p/793388#M1666</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Earl,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I though that query syntax was only for javascript. That worked and does exactly what I want. Thank you very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Feb 2019 00:31:25 GMT</pubDate>
    <dc:creator>GregThistle</dc:creator>
    <dc:date>2019-02-28T00:31:25Z</dc:date>
    <item>
      <title>ArcGIs API for Python - Export Item Parameters</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-for-python-export-item-parameters/m-p/793386#M1664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to export a layer into a CSV file from a quertied ArcGIs Online layer, and then delete those same features afterwards. My code is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import arcgis&lt;BR /&gt;from arcgis.gis import GIS&lt;BR /&gt;gis = GIS("https://arcgis.com", "User", "Password")&lt;BR /&gt;from arcgis.gis import *&lt;BR /&gt;import os&lt;BR /&gt;icy_conditions = gis.content.get('7b812b022e00426b8f5c14448aa55b73')&lt;BR /&gt;icy_layers = icy_conditions.layers&lt;BR /&gt;icy_reports = icy_layers[0]&lt;BR /&gt;output_file = icy_conditions.export(title=icy_reports,export_format="CSV",&lt;STRONG&gt;parameters=icy_reports.query(where="Status='3'")&lt;/STRONG&gt;)&lt;BR /&gt;output_file.download(r'filepath')&lt;BR /&gt;icy_reports.delete_features(where="Status='3'")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know the delete features works at the end, but I am having trouble getting the query in the parameters section of the export item function (show in cold). There is documentation on how to do this using the JavaScript API, but no example on how to do this in python. I've done a lot of guessing and checking and cannot get the syntax right. Could anyone please offer some help?&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2019 23:51:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-for-python-export-item-parameters/m-p/793386#M1664</guid>
      <dc:creator>GregThistle</dc:creator>
      <dc:date>2019-02-27T23:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIs API for Python - Export Item Parameters</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-for-python-export-item-parameters/m-p/793387#M1665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Greg,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The&amp;nbsp;&lt;EM&gt;paramaeters&lt;/EM&gt; argument (or more accurately the REST operation being called:&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/rest/users-groups-and-items/export-item.htm" title="https://developers.arcgis.com/rest/users-groups-and-items/export-item.htm"&gt;Export Item—ArcGIS REST API: Users, groups, and content | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;) is expecting a JSON object is what's going here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like this will work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new, courier, monospace;"&gt;item.export(title="test",export_format="CSV",parameters={"layers" :[{"id" : 0, "where" : "year_ &amp;gt; 1990"}]})&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For you, I'm not sure but I'll assume the export is from layer 0:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;icy_conditions.export(title=icy_reports,export_format="CSV",&lt;STRONG&gt;parameters=&lt;SPAN style="font-family: courier new, courier, monospace;"&gt;{"layers" :[{"id" : 0, "where" : "Status = '3'"}]}&lt;/SPAN&gt;&lt;/STRONG&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Earl&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Feb 2019 00:21:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-for-python-export-item-parameters/m-p/793387#M1665</guid>
      <dc:creator>EarlMedina</dc:creator>
      <dc:date>2019-02-28T00:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIs API for Python - Export Item Parameters</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-for-python-export-item-parameters/m-p/793388#M1666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Earl,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I though that query syntax was only for javascript. That worked and does exactly what I want. Thank you very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Feb 2019 00:31:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-for-python-export-item-parameters/m-p/793388#M1666</guid>
      <dc:creator>GregThistle</dc:creator>
      <dc:date>2019-02-28T00:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIs API for Python - Export Item Parameters</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-for-python-export-item-parameters/m-p/793389#M1667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am attempting to do that same thing, but am getting an exception:&lt;BR /&gt;My code:&lt;BR /&gt;itm = gis.content.get("1ec7cba5f3984de4bfa32321a07b8a64")&lt;BR /&gt;itm.export(title="PS_CSV",export_format="CSV",parameters={"layers":[{"id":0}]})&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The exception:&lt;/P&gt;&lt;PRE style="color: #000000; background-color: #ffffff; border: 0px; font-size: 14px; padding: 1px 0px;"&gt;&lt;SPAN class="" style="color: #b22b31; font-weight: bold;"&gt;Exception&lt;/SPAN&gt;                                 Traceback (most recent call last)&lt;SPAN class="" style="color: #007427; font-weight: bold;"&gt;&amp;lt;ipython-input-32-143f02afd855&amp;gt;&lt;/SPAN&gt; in &lt;SPAN class="" style="color: #60c6c8;"&gt;&amp;lt;module&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="" style="color: #007427; font-weight: bold;"&gt;----&amp;gt; 1&lt;/SPAN&gt;&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt; &lt;/SPAN&gt;itm&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;.&lt;/SPAN&gt;export&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;(&lt;/SPAN&gt;title&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0065ca; font-weight: bold;"&gt;"PS_CSV"&lt;/SPAN&gt;&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;,&lt;/SPAN&gt;export_format&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0065ca; font-weight: bold;"&gt;"CSV"&lt;/SPAN&gt;&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;,&lt;/SPAN&gt;parameters&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;{&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0065ca; font-weight: bold;"&gt;"layers"&lt;/SPAN&gt;&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;:&lt;/SPAN&gt;&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;[&lt;/SPAN&gt;&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;{&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0065ca; font-weight: bold;"&gt;"id"&lt;/SPAN&gt;&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;:&lt;/SPAN&gt;&lt;SPAN class="" style="color: #258f8f; font-weight: bold;"&gt;0&lt;/SPAN&gt;&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;}&lt;/SPAN&gt;&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;]&lt;/SPAN&gt;&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;}&lt;/SPAN&gt;&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;)&lt;/SPAN&gt;&lt;SPAN class="" style="color: #00a250;"&gt;      2&lt;/SPAN&gt; &lt;SPAN class="" style="color: #00a250;"&gt;      3&lt;/SPAN&gt; &lt;SPAN class="" style="color: #b22b31; font-weight: bold;"&gt;#itm.export(title="PS_CSV",export_format="CSV")&lt;/SPAN&gt;&lt;SPAN class="" style="color: #007427; font-weight: bold;"&gt;C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\gis\__init__.py&lt;/SPAN&gt; in &lt;SPAN class="" style="color: #60c6c8;"&gt;export&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0065ca; font-weight: bold;"&gt;(self, title, export_format, parameters, wait, enforce_fld_vis)&lt;/SPAN&gt;&lt;SPAN class="" style="color: #00a250;"&gt;   7339&lt;/SPAN&gt;                                             job_type="export")&lt;SPAN class="" style="color: #00a250;"&gt;   7340&lt;/SPAN&gt;                 &lt;SPAN class="" style="color: #007427; font-weight: bold;"&gt;if&lt;/SPAN&gt; status&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;[&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0065ca; font-weight: bold;"&gt;'status'&lt;/SPAN&gt;&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;]&lt;/SPAN&gt; &lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;==&lt;/SPAN&gt; &lt;SPAN class="" style="color: #0065ca; font-weight: bold;"&gt;'failed'&lt;/SPAN&gt;&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;:&lt;/SPAN&gt;&lt;SPAN class="" style="color: #007427; font-weight: bold;"&gt;-&amp;gt; 7341&lt;/SPAN&gt;&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;                     &lt;/SPAN&gt;&lt;SPAN class="" style="color: #007427; font-weight: bold;"&gt;raise&lt;/SPAN&gt; Exception&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0065ca; font-weight: bold;"&gt;"Could not export item: %s"&lt;/SPAN&gt; &lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;%&lt;/SPAN&gt; self&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;.&lt;/SPAN&gt;itemid&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;)&lt;/SPAN&gt;&lt;SPAN class="" style="color: #00a250;"&gt;   7342&lt;/SPAN&gt;                 &lt;SPAN class="" style="color: #007427; font-weight: bold;"&gt;elif&lt;/SPAN&gt; status&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;[&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0065ca; font-weight: bold;"&gt;'status'&lt;/SPAN&gt;&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;]&lt;/SPAN&gt;&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;.&lt;/SPAN&gt;lower&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;==&lt;/SPAN&gt; &lt;SPAN class="" style="color: #0065ca; font-weight: bold;"&gt;"completed"&lt;/SPAN&gt;&lt;SPAN class="" style="color: #b27d12; font-weight: bold;"&gt;:&lt;/SPAN&gt;&lt;SPAN class="" style="color: #00a250;"&gt;   7343&lt;/SPAN&gt;                     &lt;SPAN class="" style="color: #007427; font-weight: bold;"&gt;return&lt;/SPAN&gt; export_item &lt;SPAN class="" style="color: #b22b31; font-weight: bold;"&gt;Exception&lt;/SPAN&gt;: Could not export item: 1ec7cba5f3984de4bfa32321a07b8a64&lt;/PRE&gt;&lt;P&gt;Any ideas on why I am not able to export this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2020 22:19:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-for-python-export-item-parameters/m-p/793389#M1667</guid>
      <dc:creator>BrandonJameson</dc:creator>
      <dc:date>2020-04-15T22:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIs API for Python - Export Item Parameters</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-for-python-export-item-parameters/m-p/793390#M1668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you get this issue resolved?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am also receiving a "Could not export item: %s" % self.itemid" error message when trying to export content from my ArcGIS Portal v10.6.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2020 08:07:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-for-python-export-item-parameters/m-p/793390#M1668</guid>
      <dc:creator>ChrisBuckmaster2</dc:creator>
      <dc:date>2020-05-27T08:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIs API for Python - Export Item Parameters</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-for-python-export-item-parameters/m-p/793391#M1669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just to add more examples here, I wanted to export all of the layers and tables from one of my feature services and after testing exporting just the layers, just the tables, and then trying to do so at the same time, found that by just exporting the tables, the layers were included. Following is the successful syntax used:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;output_file = observations.export(title="Observations", export_format="File Geodatabase", parameters= {"tables":[{"id":4},{"id":5},{"id":6},{"id":7},{"id":8},{"id":9},{"id":10}]})&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then, downloading:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;output_file.download(work_dir)&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2020 12:55:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-for-python-export-item-parameters/m-p/793391#M1669</guid>
      <dc:creator>WhitneyWeber</dc:creator>
      <dc:date>2020-07-14T12:55:28Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIs API for Python - Export Item Parameters</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-for-python-export-item-parameters/m-p/793392#M1670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was struggling with getting the query syntax correct with dates. The following works&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;observations.export(title="ObservationsWhere5", export_format="File Geodatabase", parameters={"layers" :[{"id" : 0, "where" : "CreationDate &amp;gt; '7/1/2020'"}]})&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2020 20:24:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-for-python-export-item-parameters/m-p/793392#M1670</guid>
      <dc:creator>WhitneyWeber</dc:creator>
      <dc:date>2020-07-16T20:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIs API for Python - Export Item Parameters</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-for-python-export-item-parameters/m-p/793393#M1671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay, so does anyone know how to export layers and tables? The following syntax exports the layers successfully, respecting the where_clause, but the tables do not export. I'm guessing I need something other than a comma in between the layers[] and tables[]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;output_file = observations.export(title="Observations", export_format="File Geodatabase", parameters={"layers" :[{"id" : 0, "where" : where_clause},{"id" : 1, "where" : where_clause},{"id" : 2, "where" : where_clause},{"id" : 3, "where" : where_clause}], "tables":[{"id":4},{"id":5},{"id":6},{"id":7},{"id":8},{"id":9},{"id":10}]})&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I use the following syntax, both the layers and tables export successfully, but the where_clause is ignored:&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;output_file = observations.export(title="ObservationsTables", export_format="File Geodatabase", parameters= {"tables":[{"id":4, "where" : where_clause},{"id":5, "where" : where_clause},{"id":6, "where" : where_clause},{"id":7, "where" : where_clause},{"id":8, "where" : where_clause},{"id":9, "where" : where_clause},{"id":10, "where" : where_clause}]})&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P&gt;Turns out I was over complicating the issue - all can be done within "layers", whether layers or tables, so the proper syntax is:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;output_file = observations.export(title="ObservationsTables", export_format="File Geodatabase", parameters= {"layers":[{"id":0, "where" : where_clause},{"id":1, "where" : where_clause},{"id":2, "where" : where_clause},{"id":3, "where" : where_clause},{"id":4, "where" : where_clause},{"id":5, "where" : where_clause},{"id":6, "where" : where_clause},{"id":7, "where" : where_clause},{"id":8, "where" : where_clause},{"id":9, "where" : where_clause},{"id":10, "where" : where_clause}]})&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or, simplified:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;param = {"layers" :[{"id" : 0, "where" : where_clause}, {"id" : 1, "where" : where_clause}, {"id" : 2, "where" : where_clause}, {"id" : 3, "where" : where_clause}, {"id" : 4, "where" : where_clause}, {"id" : 5, "where" : where_clause}, {"id" : 6, "where" : where_clause}, {"id" : 7, "where" : where_clause}, {"id" : 8, "where" : where_clause}, {"id" : 9, "where" : where_clause}, {"id" : 10, "where" : where_clause}]}&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;output_file = observations.export(title="Observations", export_format="File Geodatabase", parameters=param)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks to Calvin Kwon, Esri, for the solution!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2020 19:43:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-for-python-export-item-parameters/m-p/793393#M1671</guid>
      <dc:creator>WhitneyWeber</dc:creator>
      <dc:date>2020-07-23T19:43:35Z</dc:date>
    </item>
  </channel>
</rss>

