<?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: Convert Large Tables (CSV) to FBGDB Tables in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/convert-large-tables-csv-to-fbgdb-tables/m-p/98969#M3408</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Joshua,&lt;/P&gt;&lt;P&gt;I believe you're right.&amp;nbsp; This data has been nothing but problems.&amp;nbsp; I managed to force it by adding the usecols paramater within the prd.read_csv function.&amp;nbsp; Then I started having "bad value" errors.&amp;nbsp; So I converted all of my target fields to text with a large width just the data to go in.&amp;nbsp; This worked. &amp;nbsp; However, when I changed a couple of columns (i.e. LAT and LONG) back to Double type fields it caused a "RuntimeError: The value type is incompatible with the field type error". I can't seem to catch a break.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Aug 2020 20:00:50 GMT</pubDate>
    <dc:creator>EricMahaffey1</dc:creator>
    <dc:date>2020-08-21T20:00:50Z</dc:date>
    <item>
      <title>Convert Large Tables (CSV) to FBGDB Tables</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/convert-large-tables-csv-to-fbgdb-tables/m-p/98965#M3404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've been trying all sorts of methods for converting some very large CSV files (~20 million records) to FGDB Tables.&amp;nbsp; Every method results in max RAM being exceeded (16GB @ 64-bit).&amp;nbsp; Through ArcGIS Desktop I've tried Table to Table, Copy Rows, and Load Data.&amp;nbsp; Through ArcPy I've tried the same tools, as well as Cursors.&amp;nbsp; The only thing that I think will work is reading the data in chunks (around 100,000 records at a time), and inserting those "chunks" into the table.&amp;nbsp; I've managed to use the Python Pandas library to read the data in chunks.&amp;nbsp; I just need to figure out how to write the chunks to the GDB table.&amp;nbsp; Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Aug 2020 22:41:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/convert-large-tables-csv-to-fbgdb-tables/m-p/98965#M3404</guid>
      <dc:creator>EricMahaffey1</dc:creator>
      <dc:date>2020-08-20T22:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Large Tables (CSV) to FBGDB Tables</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/convert-large-tables-csv-to-fbgdb-tables/m-p/98966#M3405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.esri.com/migrated-users/110064" target="_blank"&gt;Eric Mahaffey&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you firstly set up an empty table in the file gedoatabase containing fields named as per your CSV file, you could insert the records from the pandas dataframe into you the file geodatabase table using an &lt;A href="https://pro.arcgis.com/en/pro-app/arcpy/data-access/insertcursor-class.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;arcpy.da.InsertCursror &lt;/A&gt;- something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; pandas &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; pd
&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy

filename&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;r&lt;SPAN class="string token"&gt;'C:\path\to\file.csv'&lt;/SPAN&gt;
fc_table &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;  r&lt;SPAN class="string token"&gt;'C:\path\to\file.gdb\table'&lt;/SPAN&gt;

chunksize &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;100000&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; chunk &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; pd&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;read_csv&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;filename&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; chunksize&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;chunksize&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    keys &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;  chunk&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;keys&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;tolist&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    insert_cur &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;InsertCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;fc_table&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; keys&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; row &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; chunk&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;itertuples&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;index&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token boolean"&gt;False&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
        insert_cur&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;insertRow&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;row&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;del&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;insert_cur&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:10:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/convert-large-tables-csv-to-fbgdb-tables/m-p/98966#M3405</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-11T06:10:18Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Large Tables (CSV) to FBGDB Tables</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/convert-large-tables-csv-to-fbgdb-tables/m-p/98967#M3406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;James,&lt;/P&gt;&lt;P&gt;Thank you so much for the quick response.&amp;nbsp; I've integrated your solution into my script, and I'm getting an error "CParserError: Error tokenizing data. C error: Expected 22 fields in line 68, saw 23".&amp;nbsp; I believe it's because the CSV file does not have an OBJECTID field.&amp;nbsp; How do I tell the InsertCursor function to either skip the first field, or identify the specific fields to insert to?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Eric&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2020 15:20:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/convert-large-tables-csv-to-fbgdb-tables/m-p/98967#M3406</guid>
      <dc:creator>EricMahaffey1</dc:creator>
      <dc:date>2020-08-21T15:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Large Tables (CSV) to FBGDB Tables</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/convert-large-tables-csv-to-fbgdb-tables/m-p/98968#M3407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The insert cursor will never raise a CParserError about tokenizing data.&amp;nbsp; That error is common to the pandas read_csv function.&amp;nbsp; You have a row in your CSV file that isn't being parsed correctly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2020 15:39:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/convert-large-tables-csv-to-fbgdb-tables/m-p/98968#M3407</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2020-08-21T15:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Large Tables (CSV) to FBGDB Tables</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/convert-large-tables-csv-to-fbgdb-tables/m-p/98969#M3408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Joshua,&lt;/P&gt;&lt;P&gt;I believe you're right.&amp;nbsp; This data has been nothing but problems.&amp;nbsp; I managed to force it by adding the usecols paramater within the prd.read_csv function.&amp;nbsp; Then I started having "bad value" errors.&amp;nbsp; So I converted all of my target fields to text with a large width just the data to go in.&amp;nbsp; This worked. &amp;nbsp; However, when I changed a couple of columns (i.e. LAT and LONG) back to Double type fields it caused a "RuntimeError: The value type is incompatible with the field type error". I can't seem to catch a break.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2020 20:00:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/convert-large-tables-csv-to-fbgdb-tables/m-p/98969#M3408</guid>
      <dc:creator>EricMahaffey1</dc:creator>
      <dc:date>2020-08-21T20:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Large Tables (CSV) to FBGDB Tables</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/convert-large-tables-csv-to-fbgdb-tables/m-p/98970#M3409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Eric,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The runtime error sounds like some text in the LAT and LONG field. In the first instance I'd be catching the exception and printing out the records that are creating problems - then have a look for any common issues in the data and add a few lines of code to your script that will&amp;nbsp;fix those problems in your data values before inserting into the FGDB table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;With the addition of exception handling -&amp;nbsp;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; pandas &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; pd
&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy

filename&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;r&lt;SPAN class="string token"&gt;'C:\path\to\file.csv'&lt;/SPAN&gt;
fgdb_table &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;  r&lt;SPAN class="string token"&gt;'C:\path\to\file.gdb\table'&lt;/SPAN&gt;

chunksize &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;100000&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; chunk &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; pd&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;read_csv&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;filename&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; chunksize&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;chunksize&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    keys &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;  chunk&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;keys&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;tolist&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    insert_cur &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;InsertCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;fgdb_table&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; keys&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; row &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; chunk&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;itertuples&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;index&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token boolean"&gt;False&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
        &lt;SPAN class="keyword token"&gt;try&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
            insert_cur&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;insertRow&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;row&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
        &lt;SPAN class="keyword token"&gt;except&lt;/SPAN&gt; RuntimeError&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
            &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"ERROR - Failed to insert: {}"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;row&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;del&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;insert_cur&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you've not already done so, you may also want to add a call to &lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/data-management/truncatetable.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;arcpy.TruncateTable_management()&lt;/A&gt; at the start of script to clear out any data inserted on the previous run, and prevent data being duplicated in the FGDB table on each run of the script.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:10:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/convert-large-tables-csv-to-fbgdb-tables/m-p/98970#M3409</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-11T06:10:21Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Large Tables (CSV) to FBGDB Tables</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/convert-large-tables-csv-to-fbgdb-tables/m-p/98971#M3410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;James,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You're an absolute lifesaver!&amp;nbsp; The try except statement allows me to see what records are having an issue, and it allows the process to continue through the errors.&amp;nbsp; As suspected, it's pretty much being caused by one value that has an extra comma in it which throws the whole thing off.&amp;nbsp; Fortunately I'm able to omit this value due to only needing to use the majority of the data in each table.&amp;nbsp; Now I can move on and process all the other tables that I have to do.&amp;nbsp; Again, I can't you enough!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Eric&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2020 18:12:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/convert-large-tables-csv-to-fbgdb-tables/m-p/98971#M3410</guid>
      <dc:creator>EricMahaffey1</dc:creator>
      <dc:date>2020-08-27T18:12:50Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Large Tables (CSV) to FBGDB Tables</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/convert-large-tables-csv-to-fbgdb-tables/m-p/1048614#M25463</link>
      <description>&lt;P&gt;"&lt;SPAN&gt;CParserError: Error tokenizing data. C error"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;In most cases, it might be an issue with:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;the delimiters in your data.&lt;/LI&gt;&lt;LI&gt;confused by the headers/column of the file.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The &lt;A href="http://net-informations.com/ds/err/token.htm" target="_self"&gt;error tokenizing data&lt;/A&gt; may arise when you're using separator (for eg. comma ',') as a delimiter and you have more separator than expected (more fields in the error row than defined in the header). So you need to either remove the additional field or remove the extra separator if it's there by mistake. The better solution is to investigate the offending file and to fix it manually so you don't need to skip the error lines.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Apr 2021 05:06:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/convert-large-tables-csv-to-fbgdb-tables/m-p/1048614#M25463</guid>
      <dc:creator>quincybatten</dc:creator>
      <dc:date>2021-04-19T05:06:46Z</dc:date>
    </item>
  </channel>
</rss>

