First tests for imdb module

This commit is contained in:
2023-01-20 13:02:32 -05:00
parent 13bdc201f0
commit cbe4abfb5f
3 changed files with 16 additions and 2 deletions

View File

@ -2,10 +2,10 @@ import logging
from typing import Optional
from django.utils import timezone
import imdb
from imdb import Cinemagoer
from videos.models import Video
imdb_client = imdb.Cinemagoer()
imdb_client = Cinemagoer()
logger = logging.getLogger(__name__)