Exemplo n.º 1
0
def prompt_watch_movie():

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

    database.watch_movie(username, title)
Exemplo n.º 2
0
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)
Exemplo n.º 3
0
def prompt_watch_movie():
    movie_title = input("Enter movie title you've watched: ")
    database.watch_movie(movie_title)
Exemplo n.º 4
0
def prompt_watch_movie():
    username = input("Введи имя: ")
    movie_id = input("Введите ID фильма: ")
    database.watch_movie(username, movie_id)
    print("---- \n")
Exemplo n.º 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')
Exemplo n.º 6
0
def prompt_watch_movie():
    username = input("Enter username: "******"Enter movie title you have watched: ")
    database.watch_movie(username, movie_title)
Exemplo n.º 7
0
def watch_movie():
    username = input("Username: "******"Enter id of watched movie: ")
    database.watch_movie(username, movie_id)
Exemplo n.º 8
0
def prompt_watch_movie():
    username = input('Username: '******'Movie ID: ')
    database.watch_movie(username, movie_id)
Exemplo n.º 9
0
def promt_watch_movie():
    username = input('Username: ')
    movie_title = input("Movie ID: ")
    database.watch_movie(username, movie_id)
Exemplo n.º 10
0
def prompt_watch_movie():
    username = input("Username: "******"Enter movie ID you've watched: ")
    database.watch_movie(username, movie_id)
Exemplo n.º 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)
Exemplo n.º 12
0
def promt_watched_movies():
    username = input("Insert the username: "******"Movie ID: ")
    database.watch_movie(username, movie_id)
Exemplo n.º 13
0
def prompt_watch_movie():
    username = input("Who watched the movie? ")
    movie_id = input("Movie ID: ")
    database.watch_movie(username, movie_id)
Exemplo n.º 14
0
def prompt_watch_movie():
    username = input("Username: "******"Movie ID: ")
    database.watch_movie(movie_id, username)
Exemplo n.º 15
0
def prompt_watch_movie():
    username = input("Enter your username: "******"Movie ID: ")
    database.watch_movie(username, movie_id)
Exemplo n.º 16
0
def prompt_watch_movie():
    username = input("Username: "******"MOvie ID: ")
    database.watch_movie(username, movie_id)
Exemplo n.º 17
0
def prompt_watched_movie():
    username = input("username: "******"Movie id: ")
    database.watch_movie(username, movie_id)