Files
aii-monorepo/ejercicios/beautifulsoup/ej1/src/config.py
2026-02-16 02:40:41 +01:00

6 lines
200 B
Python

from pathlib import Path
URL = "https://www.vinissimus.com/es/vinos/tinto/?cursor="
DATA_DIR = Path(__file__).parent.parent / "data"
CSV_PATH = DATA_DIR / "books.csv"
DB_PATH = DATA_DIR / "books.bd"