Compare commits

..

No commits in common. "5c52a12fdfb17d6e5e34a8d052704e1746f7a064" and "c4b49814fb90051b8f15dd7587b7aa1753c98ae1" have entirely different histories.

6 changed files with 4 additions and 11 deletions

View file

@ -5,6 +5,3 @@ downloader/
node_modules/
*/node_modules/
*/Containerfile
*.warc.zst
.git
scraper/debug/

BIN
bun.lockb

Binary file not shown.

View file

@ -1,5 +1,4 @@
import pMap from "p-map";
import { decodeXML } from "entities";
import { saveUrls } from "db-datos/urlHelpers.js";
export async function scrapCarrefourProducts() {
@ -32,7 +31,7 @@ async function scrapBySitemap() {
text(element) {
const txt = element.text.trim();
if (!txt) return;
urls.add(decodeXML(txt));
urls.add(txt);
},
})
.transform(new Response(xml));

View file

@ -1,5 +1,4 @@
import pMap from "p-map";
import { decodeXML } from "entities";
import { parseHTML } from "linkedom";
import { getHtml } from "../scraper/fetch.js";
import { saveUrls } from "db-datos/urlHelpers.js";
@ -91,7 +90,7 @@ async function scrapBySitemap() {
text(element) {
const txt = element.text.trim();
if (!txt) return;
urls.add(decodeXML(txt));
urls.add(txt);
},
})
.transform(new Response(xml));

View file

@ -17,7 +17,6 @@
"date-fns": "^3.0.6",
"db-datos": "workspace:^",
"drizzle-orm": "=0.29.1",
"entities": "^4.5.0",
"linkedom": "^0.16.5",
"nanoid": "^5.0.4",
"p-map": "^7.0.1",

View file

@ -11,8 +11,7 @@ export const load: PageServerLoad = async ({ url }) => {
results = db.all(
sql`select p.ean, p.name, p.image_url as imageUrl from precios_fts f
join precios p on p.ean = f.ean
where f.name match ${query}
group by p.ean;`,
where f.name match ${query};`,
);
}