Kodi Community Forum

Full Version: Use imdb scraper library in a python addon
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,
I am writing a little script which needs to fetch some data from imdb. I know the scrapers can do this stuff perfectly well so I am trying to use their functions.

I added the import to my addon.xml:
Code:
<import addon="metadata.common.imdb.com" version="2.8.5"/>

But how can I access the available functions? They aren't written in python, is it even possible to use?
I want to use GetIMDBAKATitlesById and GetIMDBRatingById if this matters.
nope, you'd have to write your own functions in python to fetch that data from imdb.
Okay, thank you for the quick response!