-
Notifications
You must be signed in to change notification settings - Fork 25
/
index.js
49 lines (42 loc) · 1.67 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
const axios = require('axios');
const cheerio = require('cheerio'); // Cheerio kütüphanesini kullanarak HTML analizi yapacağız
const fs = require('fs');
const url = 'https://mifirm.net/model/ruby.ttt'; // Hedef URL
axios.get(url)
.then(response => {
const html = response.data;
const $ = cheerio.load(html); // Sayfanın HTML yapısını analiz etmek için Cheerio kullanıyoruz
const data = [];
// Tablodaki her satırı dolaşarak verileri çıkarıyoruz
$('tbody tr').each((index, element) => {
const miuiVersion = $(element).find('td:nth-child(1)').text().trim();
const androidVersion = $(element).find('td:nth-child(2)').text().trim();
const fileSize = $(element).find('td:nth-child(3)').text().trim();
const updateAt = $(element).find('td:nth-child(4)').text().trim();
const downloaded = $(element).find('td:nth-child(5)').text().trim();
const downloadLink = $(element).find('td:nth-child(6) a').attr('href');
// Verileri obje olarak topluyoruz
const rowData = {
miuiVersion,
androidVersion,
fileSize,
updateAt,
downloaded,
downloadLink
};
data.push(rowData);
});
// JSON formatında verileri dosyaya yazma
fs.writeFile('veriler.json', JSON.stringify(data, null, 2), (error) => {
if (error) {
console.error('Dosya yazma hatası:', error);
} else {
// Elde edilen verileri JSON formatında yazdırıyoruz
console.log(JSON.stringify(data, null, 2));
console.log('Veriler "veriler.json" dosyasına kaydedildi.');
}
});
})
.catch(error => {
console.error('Hata:', error);
});