<?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: Calling multiple PROCs from inside DO loops in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Calling-multiple-PROCs-from-inside-DO-loops/m-p/360261#M84774</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/85684"&gt;@pAckmAn&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;Instead of using macro coding you could also query the SAS dictionary tables and create and populate a macro variable with all the source datasets you need (and which exist).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"&lt;EM&gt;Multiple SET doesn't work here because I only need subset of variables from original datasets.&lt;/EM&gt;"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;That works: You can use a KEEP option on source datasets: SET mysource(keep=&amp;lt;variable list&amp;gt;);&lt;/P&gt;
&lt;P&gt;And to read from multiple datasets only use a single SET statement and just list all your datasets like:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;SET mysource1(keep=&amp;lt;variable list&amp;gt;) mysource2(keep=&amp;lt;variable list&amp;gt;);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here a code option which allows you to create the SET statement dynamically using a start and end date.&lt;/P&gt;
&lt;P&gt;The naming convention of your source datasets made things a bit more complicated than necessary - that's the reason for the regular expression and prxmatch() - but things work.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options symbolgen;

/* create sample source data */
data data2017_jan2017_data data2018_feb2018_data; 
  set sashelp.class;
run;


/* set start and end date for monthly datasets */
%let startdt=jan2017;
%let enddt=mar2018;


/* create macro variable with value containing all source datasets in date range */
/* - only datasets which actually exists will be added                           */
%let ds_list=_dummy_;
proc sql noprint;
  select cats(libname,'.',memname,"(keep=name age)") into :ds_list separated by ' '
  from dictionary.tables
  where 
    libname=&lt;FONT color="#FF0000"&gt;"WORK"&lt;/FONT&gt; 
    and prxmatch('/^data\d{4}_\w{3}\d{4}_data\s*$/oi',memname)=1
    and input(scan(memname,2,'_'),monyy7.) between input("&amp;amp;startdt",monyy7.) and input("&amp;amp;enddt",monyy7.)
    ;
quit;

/* create table want with all selected source datasets */
data want;
  length sourceDS _sourceDS $41;
  set &amp;amp;ds_list indsname=_sourceDS;
  sourceDS=_sourceDS;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;...  &lt;BR /&gt;where 
    libname="&lt;FONT color="#FF0000"&gt;WORK&lt;/FONT&gt;" &lt;BR /&gt;...&lt;/PRE&gt;
&lt;P&gt;Change libref "WORK" to the libref where your source datasets reside (i.e. ANTO) and things should work (name of libref must be in upper case).&lt;/P&gt;</description>
    <pubDate>Sun, 21 May 2017 03:26:29 GMT</pubDate>
    <dc:creator>Patrick</dc:creator>
    <dc:date>2017-05-21T03:26:29Z</dc:date>
    <item>
      <title>Calling multiple PROCs from inside DO loops</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Calling-multiple-PROCs-from-inside-DO-loops/m-p/360257#M84770</link>
      <description>&lt;P&gt;Dear SAS Community,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to compile multiple datasets into single superset - the same data for different months for many years (jan2001_data .... dec2016). Multiple SET doesn't work here because I only need subset of variables from original datasets. Thus I created a dataset which I expand using sql union with every dataset:&lt;/P&gt;&lt;PRE&gt;%macro appendData(month=, year=);
proc sql;
     create table anto.temp1 as
     select
           a.*
     from
           anto.dataaccum a
     union
     select
           b.var1,
           b.var2,
           b.var3
     from
           data&amp;amp;year..&amp;amp;month.&amp;amp;year._data b;
 
data anto.dataaccum;
     set anto.temp1;
run;
%mend;
 
%appendData(month=jan, year=2001);
......
%appendData(month=dec, year=2016);&lt;/PRE&gt;&lt;P&gt;That would have been much more efficient if I could call %appendData from inside %do loop. However, any use of ARRAY, DO or DO_OVER outside of PROC causes error. Is it possible at all? Or do I call it incorrectly?&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;%do_over(values=jan feb mar apr may jun jul aug sep oct nov dec, phrase=%appendData(month=?,year=2016));

WARNING: Apparent invocation of macro DO_OVER not resolved.

ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/PRE&gt;</description>
      <pubDate>Sun, 21 May 2017 01:38:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Calling-multiple-PROCs-from-inside-DO-loops/m-p/360257#M84770</guid>
      <dc:creator>pAckmAn</dc:creator>
      <dc:date>2017-05-21T01:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: Calling multiple PROCs from inside DO loops</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Calling-multiple-PROCs-from-inside-DO-loops/m-p/360261#M84774</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/85684"&gt;@pAckmAn&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;Instead of using macro coding you could also query the SAS dictionary tables and create and populate a macro variable with all the source datasets you need (and which exist).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"&lt;EM&gt;Multiple SET doesn't work here because I only need subset of variables from original datasets.&lt;/EM&gt;"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;That works: You can use a KEEP option on source datasets: SET mysource(keep=&amp;lt;variable list&amp;gt;);&lt;/P&gt;
&lt;P&gt;And to read from multiple datasets only use a single SET statement and just list all your datasets like:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;SET mysource1(keep=&amp;lt;variable list&amp;gt;) mysource2(keep=&amp;lt;variable list&amp;gt;);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here a code option which allows you to create the SET statement dynamically using a start and end date.&lt;/P&gt;
&lt;P&gt;The naming convention of your source datasets made things a bit more complicated than necessary - that's the reason for the regular expression and prxmatch() - but things work.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options symbolgen;

/* create sample source data */
data data2017_jan2017_data data2018_feb2018_data; 
  set sashelp.class;
run;


/* set start and end date for monthly datasets */
%let startdt=jan2017;
%let enddt=mar2018;


/* create macro variable with value containing all source datasets in date range */
/* - only datasets which actually exists will be added                           */
%let ds_list=_dummy_;
proc sql noprint;
  select cats(libname,'.',memname,"(keep=name age)") into :ds_list separated by ' '
  from dictionary.tables
  where 
    libname=&lt;FONT color="#FF0000"&gt;"WORK"&lt;/FONT&gt; 
    and prxmatch('/^data\d{4}_\w{3}\d{4}_data\s*$/oi',memname)=1
    and input(scan(memname,2,'_'),monyy7.) between input("&amp;amp;startdt",monyy7.) and input("&amp;amp;enddt",monyy7.)
    ;
quit;

/* create table want with all selected source datasets */
data want;
  length sourceDS _sourceDS $41;
  set &amp;amp;ds_list indsname=_sourceDS;
  sourceDS=_sourceDS;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;...  &lt;BR /&gt;where 
    libname="&lt;FONT color="#FF0000"&gt;WORK&lt;/FONT&gt;" &lt;BR /&gt;...&lt;/PRE&gt;
&lt;P&gt;Change libref "WORK" to the libref where your source datasets reside (i.e. ANTO) and things should work (name of libref must be in upper case).&lt;/P&gt;</description>
      <pubDate>Sun, 21 May 2017 03:26:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Calling-multiple-PROCs-from-inside-DO-loops/m-p/360261#M84774</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2017-05-21T03:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: Calling multiple PROCs from inside DO loops</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Calling-multiple-PROCs-from-inside-DO-loops/m-p/360262#M84775</link>
      <description>&lt;P&gt;This is an untested code but could work if you try&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am in the assumption to use the temp: the dataset name followed with colon in the below step and the same could be kept within the macro.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data anto.dataaccum;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set anto.temp:;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;could you please test and let me know&lt;/P&gt;</description>
      <pubDate>Sun, 21 May 2017 02:24:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Calling-multiple-PROCs-from-inside-DO-loops/m-p/360262#M84775</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2017-05-21T02:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: Calling multiple PROCs from inside DO loops</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Calling-multiple-PROCs-from-inside-DO-loops/m-p/360264#M84777</link>
      <description>&lt;P&gt;It's extremely tricky to navigate, if you are trying to pull different months for different years. &amp;nbsp;But if you are willing to give a single macro call for each year, here is a possibility. &amp;nbsp;This may not produce what your original program is intended to produce, but it is a good starting point for discussion. &amp;nbsp;The idea of selecting a.* in your current program worries me so I want to simplify it here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%macro appendData (year=, month_list=);&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;%local i next_month;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;%do i=1 %to %sysfunc(countw(&amp;amp;month_list));&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; %let next_month = scan(&amp;amp;month_list, &amp;amp;i);&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; proc sql;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; select var1 var2 var3 from data&amp;amp;year..&amp;amp;month.&amp;amp;year._data;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; quit;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; proc append data=temp base=auto.dataaccum;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;%end;&lt;/P&gt;
&lt;P&gt;%mend appendData;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%appendData (year=2017, month_list=jan feb mar apr may jun)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This still doesn't rule out using a SET statement, but I'm trying to change as little as possible in your original program at this point. &amp;nbsp;You could try to use macro language to generate this final program as well:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data auto.dataaccum;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; do until (done1);&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; set&amp;nbsp;&lt;SPAN&gt;data2017.jan2017_data (keep=var1 var2 var3) end=done1;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; output;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;end;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; do until (done2);&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; set&amp;nbsp;&lt;SPAN&gt;data2017.feb2017_data (keep=var1 var2 var3) end=done2;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; output;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;end;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; do until (done3);&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; set&amp;nbsp;&lt;SPAN&gt;data2017.mar2017_data (keep=var1 var2 var3) end=done3;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; output;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;end;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;It's just not clear at this point whether this produces the outcome you are looking for.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 21 May 2017 02:47:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Calling-multiple-PROCs-from-inside-DO-loops/m-p/360264#M84777</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2017-05-21T02:47:40Z</dc:date>
    </item>
    <item>
      <title>Re: Calling multiple PROCs from inside DO loops</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Calling-multiple-PROCs-from-inside-DO-loops/m-p/360269#M84780</link>
      <description>&lt;P&gt;Here is a datastep approach using the call execute function:&lt;/P&gt;
&lt;PRE&gt;data _null_;
  length sendtox $255;
  call execute('data anto.dataaccum; set ');
  year=2000;
  do i=1 to 192; /*total number of months*/
    if mod(i,12) eq 1 then year+1;
    sendtox=catt('data',year,'.',put(mdy(i,1,year),monname3.),year,'_data (keep=var1 var2 var3)');
    call execute(sendtox);
  end;
  call execute(';run;');
run;
&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 21 May 2017 03:07:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Calling-multiple-PROCs-from-inside-DO-loops/m-p/360269#M84780</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-05-21T03:07:38Z</dc:date>
    </item>
    <item>
      <title>Re: Calling multiple PROCs from inside DO loops</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Calling-multiple-PROCs-from-inside-DO-loops/m-p/360273#M84783</link>
      <description>&lt;P&gt;And just for fun here yet another a bit unusual approach:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* create sample source data */
data data2017_jan2017_data data2018_feb2018_data;
  set sashelp.class;
run;

/* set start and end date for monthly datasets */
%let startdt=jan2017;
%let enddt=mar2018;

/* define vars to keep */
%let keepVar=name age height;


/* create DS with source datasets in date range with required naming pattern */
data work.ds(keep=sourceDS &amp;amp;keepVar);
  length sourceDS _sourceDS $41;
  set 
    data:(obs=1) indsname=_sourceDS;

  if
    prxmatch('/^data\d{4}_\w{3}\d{4}_data\s*$/oi',scan(_sourceDS,-1,'.'))=1
    and input("&amp;amp;startdt",monyy7.) &amp;lt;= input(scan(_sourceDS,3,'._'),monyy7.)  &amp;lt;= input("&amp;amp;enddt",monyy7.)
    ;

  sourceDS=_sourceDS;
run;

/* create table want with all selected source datasets */
data want(keep=sourceDS &amp;amp;keepVar);
  set work.ds;

  _dsid=open(catx(' ',sourceDS,"(keep=&amp;amp;keepVar)"),"I");
  call set(_dsid);

  do _nobs=1 by 1;
    _rc=fetchobs(_dsid,_nobs);
    if _rc = 0 then output;
    else leave;
  end;

  _rc=close(_dsid);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 21 May 2017 05:14:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Calling-multiple-PROCs-from-inside-DO-loops/m-p/360273#M84783</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2017-05-21T05:14:26Z</dc:date>
    </item>
    <item>
      <title>Re: Calling multiple PROCs from inside DO loops</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Calling-multiple-PROCs-from-inside-DO-loops/m-p/360283#M84789</link>
      <description>&lt;P&gt;First, make a dataset with dataset names.&lt;/P&gt;
&lt;P&gt;Then do&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
set dataset_names end=done;
if _n_ = 1 then call execute('data want; set ';);
call execute(trim(ds_name) !! ' (keep=var1 var2 var3) ');
if done then call execute('; run;');
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 21 May 2017 06:54:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Calling-multiple-PROCs-from-inside-DO-loops/m-p/360283#M84789</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-05-21T06:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: Calling multiple PROCs from inside DO loops</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Calling-multiple-PROCs-from-inside-DO-loops/m-p/360464#M84873</link>
      <description>&lt;P&gt;Of course there is a catch to this: with a sufficient number of datasets to concatenate, one could exceed the maximum length of a single SAS statement (32767 characters).&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 15:07:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Calling-multiple-PROCs-from-inside-DO-loops/m-p/360464#M84873</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-05-22T15:07:48Z</dc:date>
    </item>
    <item>
      <title>Re: Calling multiple PROCs from inside DO loops</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Calling-multiple-PROCs-from-inside-DO-loops/m-p/360563#M84920</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/85684"&gt;@pAckmAn&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In addition to the useful comments sent by others, consider appending the "open=defer" option to the SET statement.&amp;nbsp; I suspect, that all the data sets you are concatenatiing have the same variables.&amp;nbsp; If so (and only if so), then instead of SAS setting up a separate&amp;nbsp;input buffer for each incoming data set (the default behavior), you can tell SAS to reuse the same buffer for each data set in turn.&amp;nbsp; Saves a lot of memory, and probably some cpu time and clock time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I.e. the SET command would look like&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ... list of data sets here ....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; open=defer;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The tradeoff - you can't have a BY statement accompany the SET statement - because that would require SAS to "look ahead" to the next record (to determine last.by status) - which in turn would require more than one buffer.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 21:29:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Calling-multiple-PROCs-from-inside-DO-loops/m-p/360563#M84920</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2017-05-22T21:29:45Z</dc:date>
    </item>
  </channel>
</rss>

