Beispiel #1
0
def prompt_watch_movie():

    username = input('Enter your username:'******'Enter movie title: ')

    database.watch_movie(username, title)
def prompt_watched_movie():
    """
    A function that allow a user to mark movie as watched.
    :return:
    """
    username = input('Enter a username: '******'Enter a movie ID: ')
    database.watch_movie(username, movie_id)
Beispiel #3
0
def prompt_watch_movie():
    movie_title = input("Enter movie title you've watched: ")
    database.watch_movie(movie_title)
Beispiel #4
0
def prompt_watch_movie():
    username = input("Введи имя: ")
    movie_id = input("Введите ID фильма: ")
    database.watch_movie(username, movie_id)
    print("---- \n")
Beispiel #5
0
def prompt_watch_movie():
    username = input("Username: "******"Enter movie id for the one you've watched: ")
    database.watch_movie(username, movie_id)
    os.system('clear')
Beispiel #6
0
def prompt_watch_movie():
    username = input("Enter username: "******"Enter movie title you have watched: ")
    database.watch_movie(username, movie_title)
def watch_movie():
    username = input("Username: "******"Enter id of watched movie: ")
    database.watch_movie(username, movie_id)
Beispiel #8
0
def prompt_watch_movie():
    username = input('Username: '******'Movie ID: ')
    database.watch_movie(username, movie_id)
Beispiel #9
0
def promt_watch_movie():
    username = input('Username: ')
    movie_title = input("Movie ID: ")
    database.watch_movie(username, movie_id)
Beispiel #10
0
def prompt_watch_movie():
    username = input("Username: "******"Enter movie ID you've watched: ")
    database.watch_movie(username, movie_id)
Beispiel #11
0
def prompt_watch_movie():
    username = input("Who watched the movie: ")
    movie_id = input("Enter movie id you've watched: ")
    database.watch_movie(username, movie_id)
Beispiel #12
0
def promt_watched_movies():
    username = input("Insert the username: "******"Movie ID: ")
    database.watch_movie(username, movie_id)
Beispiel #13
0
def prompt_watch_movie():
    username = input("Who watched the movie? ")
    movie_id = input("Movie ID: ")
    database.watch_movie(username, movie_id)
def prompt_watch_movie():
    username = input("Username: "******"Movie ID: ")
    database.watch_movie(movie_id, username)
Beispiel #15
0
def prompt_watch_movie():
    username = input("Enter your username: "******"Movie ID: ")
    database.watch_movie(username, movie_id)
def prompt_watch_movie():
    username = input("Username: "******"MOvie ID: ")
    database.watch_movie(username, movie_id)
Beispiel #17
0
def prompt_watched_movie():
    username = input("username: "******"Movie id: ")
    database.watch_movie(username, movie_id)