Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tanatelha committed Apr 29, 2024
1 parent 127f9d9 commit 886e008
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions script-reportagens.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/// -------- Código para reportagens irem para a página automaticamente

/// 1. Fazer uma função assincrona para carregar e processar o arquivo CSV
async function iniciar() {

try {
// Ler o csv
const dados = await d3.csv("dados_reportagens.csv");

// Iterar sobre cada linha do CSV
dados.forEach(linha => {
// Acessar o valor da coluna 'manchete' e imprimir
console.log(linha.manchete);
});


} catch (error) {
console.error('Erro ao ler o arquivo CSV:', error);
}
}

// Chamar a função iniciar para iniciar o processo
iniciar();

0 comments on commit 886e008

Please sign in to comment.