Is it okay to send parameters in scrapy?

 def parse_item(self,response):
        item = pencilnewsItem()
        title_list=response.xpath("//div[@class="article_content" ]/h3/a/text()").extract()
        link_list=response.xpath("//div[@class="article_content" ]/h3/a/@href").extract()
        for link in link_list:
            item["link"]=link
            yield scrapy.request(url=link,callback=self.parse_time_url(),dont_filter=True,meta=item)
    def parse_time_url(self,response):
        item=response.meta["item"]
        item["time"]=response.xpath("//div[@class= "article_create_time" ]/span/text()").extract()

        yield item
Mar.20,2021
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3defe-2c3de.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3defe-2c3de.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?