0
I’m making a bot in python for twitter that posts news about Latin America, at the time of making the system that detects whether a news is new or not, I will save the news that has already been posted in a file (which for now is a .txt) to compare later with news from the next GET. I have this text file:
[{'pais': 'Argentina', 'titulo': 'Santistas veem vitória como resposta a críticos e exaltam Sampaoli', 'link': 'https://esportes.estadao.com.br/noticias/futebol,santistas-veem-vitoria-como-resposta-a-criticos-e-exaltam-sampaoli,70002696776'}, {'pais': 'Bolívia', 'titulo': 'Cobertura de água e esgoto no Brasil é pior que no Iraque', 'link': 'https://economia.estadao.com.br/noticias/geral,cobertura-de-agua-e-esgoto-no-brasil-e-pior-que-no-iraque,70002695633'}, {'pais': 'Brasil', 'titulo': 'Rodada dos Estaduais é marcada por homenagens à tragédia de Brumadinho', 'link': 'https://esportefera.com.br/noticias/futebol,rodada-dos-estaduais-e-marcada-por-homenagens-a-tragedia-de-brumadinho,70002696787'}, {'pais': 'Chile', 'titulo': '‘Não acredito na possibilidade de uma guerra civil na Venezuela’', 'link': 'https://internacional.estadao.com.br/noticias/geral,nao-acredito-na-possibilidade-de-uma-guerra-civil,70002695486'}]
And I want to turn it into a list of dictionaries so I can compare the old links to the new ones. The question is: how to do this change in python?
Using the json library simply to turn strings into lists is irrational!
– Vinicius Mesel