Files
timelapse-raspi/sync_offline_data.py
Kerboul 610d220c3f Refactor and enhance timelapse capture system
- Removed obsolete script `script_SANSDEMARRAGE.sh`.
- Added new `Camera.py` and `Connexion.py` files for camera handling and socket communication.
- Implemented `First_Try.py` for initial camera preview testing.
- Created `Humidity.py` for humidity sensor data acquisition.
- Developed `Send_data_stocked.py` for managing and sending stored data.
- Introduced `Time_Lapse_Connection.py` and `Time_Lapse_NoConnection.py` for connected and offline modes.
- Added `get_from_server.py` for retrieving camera status from the server.
- Updated `sync_offline_data.py` for synchronizing offline data.
- Created `timelapse.service` for managing the timelapse service on Raspberry Pi.
- Established package structure with `__init__.py` and `api_client.py` for API interactions.
- Enhanced `capture.py` for managing image captures and data storage.
- Configured `config.py` for centralized configuration management.
- Developed `sensors.py` for handling environmental sensors and camera operations.
- Implemented `timelapse_offline.py` and `timelapse_online.py` for capturing images in offline and online modes.
2025-04-27 16:45:00 +02:00

40 lines
1.1 KiB
Python

#!/usr/bin/env python3
# coding: utf-8
"""
Script pour la synchronisation des données stockées en mode hors ligne.
Remplace l'ancien Send_data_stocked.py
"""
import os
import sys
import logging
from timelapse.config import config
from timelapse.capture import timelapse_manager
def main():
"""
Fonction principale pour la synchronisation des données hors ligne.
"""
logging.info("-------------------------------------------------------------------")
logging.info("Démarrage de la synchronisation des données hors ligne")
try:
# Synchroniser les captures hors ligne
sync_count = timelapse_manager.sync_offline_captures()
if sync_count > 0:
logging.info(f"Synchronisation réussie de {sync_count} captures")
else:
logging.info("Aucune capture à synchroniser")
except Exception as e:
logging.error(f"Erreur lors de la synchronisation des données: {e}")
sys.exit(1)
logging.info("Synchronisation terminée")
if __name__ == "__main__":
main()