corriendo y con "automatismo". Api levantada
This commit is contained in:
11
app/auto.sh
Normal file
11
app/auto.sh
Normal file
@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
# auto.sh - Script que ejecuta el scrapper cada 24 horas con un bucle infinito
|
||||
|
||||
while true
|
||||
do
|
||||
# Ejecutar el script Python
|
||||
python /app/webscrapper.py
|
||||
|
||||
# Dormir por 24 horas (86400 segundos)
|
||||
sleep 86400
|
||||
done
|
Reference in New Issue
Block a user