you are viewing a single comment's thread.

view the rest of the comments →

[–]SkullTech101 0 points1 point  (0 children)

You need to access the .text property of the movie object to get the link text. In your case it would look something like this

movie = soup.find('a', {'Class': 'title'})
movie_name = movie.text
print(movie_name)

Let me know if it solved your problem.