<?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 Using ArcGIS Online Credentials in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747104#M57748</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't believe you will be able to export a feature service to an excel table using the Table to Excel tool.&amp;nbsp; What you could do is export the feature service to a local File Geodatabase and then export the feature class to excel.&amp;nbsp; &lt;A _jive_internal="true" href="https://community.esri.com/docs/DOC-6496"&gt;Here &lt;/A&gt;is a tool you can use to export the feature service.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Aug 2016 19:58:09 GMT</pubDate>
    <dc:creator>JakeSkinner</dc:creator>
    <dc:date>2016-08-09T19:58:09Z</dc:date>
    <item>
      <title>Python Script Using ArcGIS Online Credentials</title>
      <link>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747099#M57743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;I have a basic python script that takes a hosted feature service from ArcGIS Online and converts it to an excel (.xls) file.&amp;nbsp; The only problem is, I need to sign-in to ArcGIS Online within ArcMap to get the script to run, since the feature service is only shared with my organization.&amp;nbsp; Is there any way to store my credentials within the script so that it will run on a daily basis without me having to sign-in on ArcMap every time?&amp;nbsp; Any help is greatly appreciated.&amp;nbsp; Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2016 13:41:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747099#M57743</guid>
      <dc:creator>ISP_graynic</dc:creator>
      <dc:date>2016-08-09T13:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Using ArcGIS Online Credentials</title>
      <link>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747100#M57744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We are not running in ArcGIS Desktop, but we execute a python script from Windows Task Scheduler that updates a hosted Feature Service on our AGOL org account.&amp;nbsp; I suppose you'd just need to grab the token by making calls against the REST API.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It'd help to see what your script is doing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We used the majority of this &lt;A href="https://blogs.esri.com/esri/arcgis/2014/01/24/updating-your-hosted-feature-service-for-10-2/"&gt;https://blogs.esri.com/esri/arcgis/2014/01/24/updating-your-hosted-feature-service-for-10-2/&lt;/A&gt; article to implement.&amp;nbsp; Again, it's just authenticating directly with the ArcGIS.com REST API.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2016 14:09:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747100#M57744</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2016-08-09T14:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Using ArcGIS Online Credentials</title>
      <link>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747101#M57745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nicholas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can generate a token using the following script:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import urllib, urllib2, json

username = "abcd"
password = "1234"

&lt;SPAN&gt;tokenURL = '&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fwww.arcgis.com%2Fsharing%2Frest%2FgenerateToken" target="_blank"&gt;https://www.arcgis.com/sharing/rest/generateToken&lt;/A&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;
&lt;SPAN&gt;params = {'f': 'pjson', 'username': username, 'password': password, 'referer': '&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fwww.arcgis.com" target="_blank"&gt;http://www.arcgis.com&lt;/A&gt;&lt;SPAN&gt;'}&lt;/SPAN&gt;
req = urllib2.Request(tokenURL, urllib.urlencode(params))
response = urllib2.urlopen(req)
data = json.load(response)
token = data['token']&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can then append the token onto the feature service URL.&amp;nbsp; Ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN&gt;damageAssessmentURL = '&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fservices.arcgis.com%2FFz6BBJUji5USDM%2Farcgis%2Frest%2Fservices%2FDamage_Assessment%2FFeatureServer%2F0%2Fquery" target="_blank"&gt;http://services.arcgis.com/Fz6BBJUji5USDM/arcgis/rest/services/Damage_Assessment/FeatureServer/0/query&lt;/A&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;
where = "PropertyType = 'Single Dwelling Houses'"
params = {'f': 'pjson', 'where': where, 'returnCountOnly': 'true', 'token': token}
req = urllib2.Request(damageAssessmentURL, urllib.urlencode(params))
response = urllib2.urlopen(req)
data = json.load(response)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:46:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747101#M57745</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2021-12-12T07:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Using ArcGIS Online Credentials</title>
      <link>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747102#M57746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: bold; font-style: inherit; font-family: inherit;"&gt;Here is the simple code below that I am trying to generate and add the token too. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #3d3d3d;"&gt;import arcpy, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #3d3d3d;"&gt;SE_Test_xls = "I:\\Documents\\SE_Test.xls"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #3d3d3d;"&gt;# Process: Table To Excel&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #3d3d3d;"&gt;arcpy.TableToExcel_conversion(SpecialEvents, SE_Test_xls, "NAME", "CODE")&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2016 19:29:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747102#M57746</guid>
      <dc:creator>ISP_graynic</dc:creator>
      <dc:date>2016-08-09T19:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Using ArcGIS Online Credentials</title>
      <link>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747103#M57747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the help James.&amp;nbsp; My script is a real basic model I exported from Model Builder as a python script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Import arcpy module&lt;/P&gt;&lt;P&gt;import arcpy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Local variables:&lt;/P&gt;&lt;P&gt;SpecialEvents = "SpecialEvents\\SpecialEvents"&lt;/P&gt;&lt;P&gt;SE_Test_xls = "I:\\Documents\\SE_Test.xls"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Process: Table To Excel&lt;/P&gt;&lt;P&gt;arcpy.TableToExcel_conversion(SpecialEvents, SE_Test_xls, "NAME", "CODE")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have replied to Jake's response with what I am trying based on his comment, but don't believe I am doing it right.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2016 19:38:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747103#M57747</guid>
      <dc:creator>ISP_graynic</dc:creator>
      <dc:date>2016-08-09T19:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Using ArcGIS Online Credentials</title>
      <link>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747104#M57748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't believe you will be able to export a feature service to an excel table using the Table to Excel tool.&amp;nbsp; What you could do is export the feature service to a local File Geodatabase and then export the feature class to excel.&amp;nbsp; &lt;A _jive_internal="true" href="https://community.esri.com/docs/DOC-6496"&gt;Here &lt;/A&gt;is a tool you can use to export the feature service.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2016 19:58:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747104#M57748</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2016-08-09T19:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Using ArcGIS Online Credentials</title>
      <link>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747105#M57749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Jake. Is an ArcGIS Standard License needed for this script to run?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2016 20:17:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747105#M57749</guid>
      <dc:creator>ISP_graynic</dc:creator>
      <dc:date>2016-08-09T20:17:33Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Using ArcGIS Online Credentials</title>
      <link>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747106#M57750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually, only if you are downloading attachments.&amp;nbsp; I'll need to update this tool to reflect this.&amp;nbsp; You can do this by opening up the .py file and deleting lines 4-9.&amp;nbsp; It should then work as long as you are not extracting attachments.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2016 20:27:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747106#M57750</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2016-08-09T20:27:17Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Using ArcGIS Online Credentials</title>
      <link>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747107#M57751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Awesome.&amp;nbsp; It still said it was successful but was aborting because it wasn't a Standard License.&amp;nbsp; When I took those lines out it works perfectly.&amp;nbsp; Thank you so much for the help.&amp;nbsp; This tool is great!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2016 20:44:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747107#M57751</guid>
      <dc:creator>ISP_graynic</dc:creator>
      <dc:date>2016-08-09T20:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Using ArcGIS Online Credentials</title>
      <link>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747108#M57752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have one more question for you Jake.&amp;nbsp; I got the script to work without downloading attachments.&amp;nbsp; But when I run it to download attachments, I get the following error.&amp;nbsp; I checked the feature class and the "GlobalID_Str" gets created, but it sounds like it's having trouble finding it.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Traceback (most recent call last):&lt;/P&gt;&lt;P&gt;&amp;nbsp; File "C:\Users\Downloads\TEST Attachments.py", line 194, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for row in cursor:&lt;/P&gt;&lt;P&gt;RuntimeError: A column was specified that does not exist.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Aug 2016 16:31:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747108#M57752</guid>
      <dc:creator>ISP_graynic</dc:creator>
      <dc:date>2016-08-12T16:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Using ArcGIS Online Credentials</title>
      <link>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747109#M57753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would have to take a look at the service to see what's going on.&amp;nbsp; If you want, you can share the service to a group in AGOL and invite my user account (jskinner_CountySandbox) to it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Aug 2016 16:34:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747109#M57753</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2016-08-12T16:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Using ArcGIS Online Credentials</title>
      <link>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747110#M57754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, thanks.&amp;nbsp; I have invited you to a group to check out the service.&amp;nbsp; When I remove the code below from the script, the script will run and it downloads the attachments and puts them in a folder, but the GlobalID_Str field is empty as well as the entire attachment table created is empty.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for key in dict:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; with arcpy.da.UpdateCursor(fc, [OID, "GlobalID_Str"], OID + " = " + str(key)) as cursor:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for row in cursor:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; row[1] = dict[key]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cursor.updateRow(row)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Aug 2016 16:43:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747110#M57754</guid>
      <dc:creator>ISP_graynic</dc:creator>
      <dc:date>2016-08-12T16:43:42Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Using ArcGIS Online Credentials</title>
      <link>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747111#M57755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You OBJECTID field in AGOL is OBJECTID_1, but when you download the data it's converted back to OBJECTID.&amp;nbsp; &lt;BR /&gt;You can change the code to fix this.&amp;nbsp; Open the .py file in a text editor and under line 340 add the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14710293645438133" data-renderedposition="86_8_1332_16" jivemacro_uid="_14710293645438133"&gt;&lt;P&gt;OID = "OBJECTID"&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Screen1.PNG" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/215342_Screen1.PNG" style="width: 620px; height: 128px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Aug 2016 19:16:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747111#M57755</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2016-08-12T19:16:06Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Using ArcGIS Online Credentials</title>
      <link>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747112#M57756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there anyway to specify the output name of the file where the attachments are stored? &amp;nbsp;Right now each image is&amp;nbsp;being output as a separate folders&amp;nbsp;using a variation of the GlobalID for a name. &amp;nbsp;I'd like to have it output with just the file name. &amp;nbsp;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/216418_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2016 21:27:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747112#M57756</guid>
      <dc:creator>ISP_graynic</dc:creator>
      <dc:date>2016-08-15T21:27:05Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Using ArcGIS Online Credentials</title>
      <link>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747113#M57757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The folder with the global id name is needed in order to successfully join the attachments to the feature class.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2016 12:40:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-using-arcgis-online-credentials/m-p/747113#M57757</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2016-08-16T12:40:30Z</dc:date>
    </item>
  </channel>
</rss>

