Kodi Community Forum
2 sites in one scraper - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Scrapers (https://forum.kodi.tv/forumdisplay.php?fid=60)
+--- Thread: 2 sites in one scraper (/showthread.php?tid=43083)



2 sites in one scraper - rgf21 - 2009-01-03

It is possible to use 2 sites in one scraper?

I wan't to use a main site to search for the movies (and get it's details) but if a movie isn't found there, it should be searched in imdb and get the details in imdb.


- spiff - 2009-01-03

sure, that could be pulled off. but not without a lof of c&p currently (i.e. you cannot link to the imdb scraper, you will have to have all expressions inside your). if that is fine; do the movie search in createsearchurl. in getsearchresults, if none is found, chain to a new function that handles the imdb search. in addition you would need something in getdetails to distinguish between the two (something like a regexp that moves stuff conditionally to buffer 5, then the imdb grabbing expressions take buffer 5 as input)