We have a local website that tracks the number of people using a certain license. I have create a scraper with that should run every hour. The only issue I have it's creating data that looks like this.
active_users,date,time
35,22/03/2022,11:38:30.397745
active_users,date,time
36,22/03/2022,11:44:04.753589
the issue I find is that every time scrapy crawl users
is ran it adds that header. I know scrapy has CsvItemExporter()
that can remove the header but I'm not too sure how to use it.
I just need the output csv to look like
active_users,date,time
35,22/03/2022,11:38:30.397745
36,22/03/2022,11:44:04.753589