l3uddz / traktarr

Script to add new series & movies to Sonarr/Radarr based on Trakt lists.
GNU General Public License v3.0
576 stars 52 forks source link

Support for full movie names via command line #99

Open zenjabba opened 4 years ago

zenjabba commented 4 years ago

IMDbPY seems to offer a simple way for you to bring name into imdb id

# Search for a movie (get a list of Movie objects).
s_result = ia.search_movie('The Untouchables')

# Print the long imdb canonical title and movieID of the results.
for item in s_result:
   print(item['long imdb canonical title'], item.movieID)