added support for movie search
This commit is contained in:
parent
3117bac8a9
commit
29f0e73c0b
18 changed files with 198 additions and 32 deletions
8
movie_db/movie_db.py
Normal file
8
movie_db/movie_db.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
from abc import ABC
|
||||
|
||||
class MovieDB(ABC):
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
def search(self, query, options=None):
|
||||
pass
|
Loading…
Add table
Add a link
Reference in a new issue