I need to get the list of quarters between the given dates in python.
For example: start_date = March 2012 , end_date = June 2013
Expected output:
['March 2012', 'June 2012', 'September 2012', 'December 2012', 'March 2013', 'June 2013']
I checked other threads like generate time series by quarter, increment by one quarter but my requirement is little different. I need it in the exact same format as mentioned above.