I am using scrapy to scrape data from a website .And I am getting data in this format. e.g { 'Date': '03/06/2020', 'LTV': '90', } { 'Date': '03/06/2020', 'LTV': '80', }
{
'Date': '03/06/2020',
'LTV': '70',
}
...I want to change this Sequence. I want LTV ->70 , 80, 90, in this sequence. First come LTV 70 array then 80 and So on.
Note : I am using Scrapy framework.