rename main code directory
This commit is contained in:
16
bookwyrm/routine_book_tasks.py
Normal file
16
bookwyrm/routine_book_tasks.py
Normal file
@ -0,0 +1,16 @@
|
||||
''' Routine tasks for keeping your library tidy '''
|
||||
from datetime import timedelta
|
||||
from django.utils import timezone
|
||||
from fedireads import books_manager
|
||||
from fedireads import models
|
||||
|
||||
def sync_book_data():
|
||||
''' update books with any changes to their canonical source '''
|
||||
expiry = timezone.now() - timedelta(days=1)
|
||||
books = models.Edition.objects.filter(
|
||||
sync=True,
|
||||
last_sync_date__lte=expiry
|
||||
).all()
|
||||
for book in books:
|
||||
# TODO: create background tasks
|
||||
books_manager.update_book(book)
|
Reference in New Issue
Block a user