I am using twint for web crawling data form twitter. For that reason whenever I save my output file as csv, I want to name current timestamp but it is giving me an error
inport twint
c = twint.Config()
c.Search = "NationBehindState"
c.Limit = 10
c.Store_csv = True
c.Output =str(dt_string)+"g.csv"
However if I simply name any file with string in c.Output, file is created without any issue