mirror of
https://github.com/Dvorinka/SpotifyRecAlg.git
synced 2026-06-03 20:13:03 +00:00
28 lines
669 B
Python
28 lines
669 B
Python
"""
|
|
This module contains functions for the server
|
|
"""
|
|
|
|
|
|
# @background
|
|
# def run_periodic_scans():
|
|
# """
|
|
# Runs periodic scans.
|
|
|
|
# Periodic scans are checks that run every few minutes
|
|
# in the background to do stuff like:
|
|
# - checking for new music
|
|
# - delete deleted entries
|
|
# - downloading artist images, and other data.
|
|
# """
|
|
# # ValidateAlbumThumbs()
|
|
# # ValidatePlaylistThumbs()
|
|
|
|
# while UserConfig().enablePeriodicScans:
|
|
|
|
# try:
|
|
# except PopulateCancelledError:
|
|
# log.error("'run_periodic_scans': Periodic scan cancelled.")
|
|
# pass
|
|
|
|
# time.sleep(UserConfig().scanInterval)
|