E intentando seguir el tutorial para anadir un nuevo sitio web en pelisalacarta pero no intiendo muy bien la parte de crear la lista de peliculas .
lo que stoy intentando es añadir
que no tiene las peliculas en un table y td que los tiene en div.cinemax.rs
E utilizado como ejemplo el de unsoloclic que si que es muy parecido. E conseguido que me entre en el nuevo sitio, me insena las peliculas en la primera pagina.
Si me puede alguien echear una mano con como poner pagina siguente y si hay dos posibilidades de video solo me coje la por defecto y la segunda no.
Voy a poner de momento lo que he echo.
Código: Seleccionar todo
def mainlist(item):
logger.info("[filmenoi.py] mainlist")
item.url="http://cinemaxx.rs/newvideos.html";
return novedades(item)
def novedades(item):
logger.info("[filmenoi.py] novedades")
itemlist = []
# Descarga la página
data = scrapertools.cachePage(item.url)
#patron = '<div class="home_posts">[^<]+'
#patron += '<h2 class="title"><a href="([^"]+)" rel="bookmark" title="[^"]+">([^<]+)</a></h2>[^<]+'
#patron += '<div class="home_posts_shadow"></div>[^<]+'
#patron += '<div class="home_posts_thumbnail">[^<]+'
#patron += '<a[^<].*?+<img.*?src="([^"]+).*?"'
#patron = '<ul class="pm-ul-browse-videos thumbnails" id="pm-grid">[^<]+'
patron = '<li>[^<]+'
patron += '<div class="pm-li-video">[^<]+'
patron += '.*?<a href="([^"]+)".*?[^<]+<img src="([^"]+)" alt="([^"]+)".*?</li>'
matches = re.compile(patron,re.DOTALL).findall(data)
if DEBUG: scrapertools.printMatches(matches)
for scrapedurl,scrapedthumbnail,scrapedtitle in matches:
scrapedplot = ""
#if (DEBUG): logger.info("title=["+scrapedtitle+"], url=["+scrapedurl+"], thumbnail=["+scrapedthumbnail+"]")
if (DEBUG): logger.info("url=["+scrapedurl+"], thumbnail=["+scrapedthumbnail+"], title=["+scrapedtitle+"]")
itemlist.append( Item(channel=__channel__, action="findvideos", title=scrapedtitle , url=scrapedurl , thumbnail=scrapedthumbnail , plot=scrapedplot , folder=True) )
'''
<a href="http://unsoloclic.info/page/2/" >« Peliculas anteriores</a>
<a href="http://www.filme-net.com/page/2" class="inactive">2</a>
'''
patron = '<li[^<]+<a href="([^"]+)"class="[^<]">2</a></li>'
matches = re.compile(patron,re.DOTALL).findall(data)
if DEBUG: scrapertools.printMatches(matches)
for match in matches:
scrapedtitle = ">> Página siguiente"
scrapedplot = ""
scrapedurl = urlparse.urljoin(item.url,match)
scrapedthumbnail = ""
if (DEBUG): logger.info("url=["+scrapedurl+"], thumbnail=["+scrapedthumbnail+"], title=["+scrapedtitle+"]")
itemlist.append( Item(channel=__channel__, action="novedades", title=scrapedtitle , url=scrapedurl , thumbnail=scrapedthumbnail , plot=scrapedplot , folder=True) )
return itemlist
Aver si alguien se anima y me da unas pistas.
A continuacion os adjunto lo que sale en el log cuando pulso en la nueva entrada:
Código: Seleccionar todo
11:14:45 T:9452 NOTICE: Thread XBPyThread start, auto delete: false
11:14:45 T:9452 NOTICE: -->Python Interpreter Initialized<--
11:14:45 T:9452 NOTICE: PLATFORM_NAME=xbmceden
11:14:45 T:9452 NOTICE: [config.py] xbmceden config
11:14:45 T:9452 NOTICE: [config.py] runtime path = C:\Users\bogdan\AppData\Roaming\XBMC\addons\plugin.video.pelisalacarta
11:14:45 T:9452 NOTICE: [config.py] data path = C:\Users\bogdan\AppData\Roaming\XBMC\userdata\addon_data\plugin.video.pelisalacarta\
11:14:45 T:9452 NOTICE: [config.py] temp path = C:\Users\bogdan\AppData\Roaming\XBMC\cache\test
11:14:45 T:9452 NOTICE: [default.py] pelisalacarta init...
11:14:45 T:9452 NOTICE: [launcher.py] run
11:14:45 T:9452 NOTICE: verify_directories_created
11:14:45 T:9452 NOTICE: [launcher.py] extract_parameters
11:14:45 T:9452 NOTICE: [launcher.py] sys.argv=['plugin://plugin.video.pelisalacarta/', '36', '?action=mainlist&category=filmenoi&channel=filmenoi']
11:14:45 T:9452 NOTICE: get_params
11:14:45 T:9452 NOTICE: get_params ?action=mainlist&category=filmenoi&channel=filmenoi
11:14:45 T:9452 NOTICE: get_params command=action=mainlist
11:14:45 T:9452 NOTICE: get_params command=category=filmenoi
11:14:45 T:9452 NOTICE: get_params command=channel=filmenoi
11:14:45 T:9452 NOTICE: get_params {'action': 'mainlist', 'category': 'filmenoi', 'channel': 'filmenoi'}
11:14:45 T:9452 NOTICE: [launcher.py] params={'action': 'mainlist', 'category': 'filmenoi', 'channel': 'filmenoi'}
11:14:45 T:9452 NOTICE: [launcher.py] fanart=, channel_name=filmenoi, title=, fulltitle=, url=, thumbnail=, plot=, action=mainlist, server=, extra=, subtitle=, category=filmenoi, show=, password=
11:14:45 T:9452 NOTICE: [scrapertools.py] init
11:14:45 T:9452 NOTICE: [scrapertools.py] CACHE_PATH=
11:14:45 T:9452 NOTICE: thumbnail_type=2
11:14:45 T:9452 NOTICE: [updater.py] get_platform=xbmceden
11:14:45 T:9452 NOTICE: [updater.py] get_system_platform=windows
11:14:45 T:9452 NOTICE: [updater.py] updatechannel('filmenoi')
11:14:45 T:9452 NOTICE: [updater.py] remote_channel_url=http://xbmc-tvalacarta.googlecode.com/svn/trunk/pelisalacarta/pelisalacarta/channels/filmenoi.py
11:14:45 T:9452 NOTICE: [updater.py] remote_version_url=http://xbmc-tvalacarta.googlecode.com/svn/trunk/pelisalacarta/pelisalacarta/channels/filmenoi.xml
11:14:45 T:9452 NOTICE: [updater.py] local_channel_path=C:\Users\bogdan\AppData\Roaming\XBMC\addons\plugin.video.pelisalacarta\pelisalacarta\channels\filmenoi.py
11:14:45 T:9452 NOTICE: [updater.py] local_version_path=C:\Users\bogdan\AppData\Roaming\XBMC\addons\plugin.video.pelisalacarta\pelisalacarta\channels\filmenoi.xml
11:14:45 T:9452 NOTICE: [updater.py] local_compiled_path=C:\Users\bogdan\AppData\Roaming\XBMC\addons\plugin.video.pelisalacarta\pelisalacarta\channels\filmenoi.pyo
11:14:45 T:9452 NOTICE: [scrapertools.py] cachePage url=http://xbmc-tvalacarta.googlecode.com/svn/trunk/pelisalacarta/pelisalacarta/channels/filmenoi.xml
11:14:45 T:9452 NOTICE: [scrapertools.py] MODO_CACHE=2 (no cachear)
11:14:45 T:9452 NOTICE: [scrapertools.py] downloadpage
11:14:45 T:9452 NOTICE: [scrapertools.py] url=http://xbmc-tvalacarta.googlecode.com/svn/trunk/pelisalacarta/pelisalacarta/channels/filmenoi.xml
11:14:45 T:9452 NOTICE: [scrapertools.py] post=None
11:14:45 T:9452 NOTICE: [scrapertools.py] ficherocookies=C:\Users\bogdan\AppData\Roaming\XBMC\userdata\addon_data\plugin.video.pelisalacarta\cookies.dat
11:14:45 T:9452 NOTICE: [scrapertools.py] Importando cookielib
11:14:45 T:9452 NOTICE: [scrapertools.py] cookielib disponible
11:14:45 T:9452 NOTICE: [scrapertools.py] cambio en politicas
11:14:45 T:9452 NOTICE: [scrapertools.py] Hay cookies
11:14:45 T:9452 NOTICE: [scrapertools.py] Leyendo fichero cookies
11:14:45 T:9452 NOTICE: [scrapertools.py] opener usando urllib2 (cookielib)
11:14:45 T:9452 NOTICE: [scrapertools.py] petición GET
11:14:45 T:9452 NOTICE: [scrapertools.py] ---------------------------
11:14:45 T:9452 NOTICE: [scrapertools.py] header User-Agent=Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; es-ES; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12
11:14:45 T:9452 NOTICE: [scrapertools.py] ---------------------------
11:14:45 T:9452 NOTICE: [scrapertools.py] Peticion sin timeout
11:14:45 T:9452 NOTICE: Traceback (most recent call last):
File "C:\Users\bogdan\AppData\Roaming\XBMC\addons\plugin.video.pelisalacarta\core\scrapertools.py", line 436, in downloadpage
handle=urlopen(req)
File "C:\Program Files\XBMC\system\python\Lib\urllib2.py", line 126, in urlopen
return _opener.open(url, data, timeout)
File "C:\Program Files\XBMC\system\python\Lib\urllib2.py", line 397, in open
response = meth(req, response)
File "C:\Program Files\XBMC\system\python\Lib\urllib2.py", line 510, in http_response
'http', request, response, code, msg, hdrs)
File "C:\Program Files\XBMC\system\python\Lib\urllib2.py", line 435, in error
return self._call_chain(*args)
File "C:\Program Files\XBMC\system\python\Lib\urllib2.py", line 369, in _call_chain
result = func(*args)
File "C:\Program Files\XBMC\system\python\Lib\urllib2.py", line 518, in http_error_default
raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
HTTPError: HTTP Error 404: Not Found
11:14:45 T:9452 NOTICE: [updater.py] remote_data=<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /svn/trunk/pelisalacarta/pelisalacarta/channels/filmenoi.xml was not found on this server.</p>
</body></html>
11:14:45 T:9452 NOTICE: [updater.py] remote_version=0
11:14:45 T:9452 NOTICE: [updater.py] local_data=<?xml version="1.0" encoding="UTF-8" standalone="true"?>
-<version>
<name>filmenoi</name>
<tag>2</tag>
<date>23/12/2013</date>
<changes>Primera version</changes>
</version>
11:14:45 T:9452 NOTICE: [updater.py] local_version=2
11:14:45 T:9452 NOTICE: [launcher.py] regular_channel_path=C:\Users\bogdan\AppData\Roaming\XBMC\addons\plugin.video.pelisalacarta\pelisalacarta\channels\filmenoi.py
11:14:45 T:9452 NOTICE: [launcher.py] core_channel_path=C:\Users\bogdan\AppData\Roaming\XBMC\addons\plugin.video.pelisalacarta\core\filmenoi.py
11:14:45 T:9452 NOTICE: [launcher.py] running channel pelisalacarta.channels.filmenoi C:\Users\bogdan\AppData\Roaming\XBMC\addons\plugin.video.pelisalacarta\pelisalacarta\channels\filmenoi.pyo
11:14:45 T:9452 NOTICE: [launcher.py] multiplatform channel
11:14:45 T:9452 NOTICE: [launcher.py] executing channel 'mainlist' method
11:14:45 T:9452 NOTICE: [filmenoi.py] mainlist
11:14:45 T:9452 NOTICE: [filmenoi.py] novedades
11:14:45 T:9452 NOTICE: [scrapertools.py] cachePage url=http://cinemaxx.rs/newvideos.html
11:14:45 T:9452 NOTICE: [scrapertools.py] MODO_CACHE=2 (no cachear)
11:14:45 T:9452 NOTICE: [scrapertools.py] downloadpage
11:14:45 T:9452 NOTICE: [scrapertools.py] url=http://cinemaxx.rs/newvideos.html
11:14:45 T:9452 NOTICE: [scrapertools.py] post=None
11:14:45 T:9452 NOTICE: [scrapertools.py] ficherocookies=C:\Users\bogdan\AppData\Roaming\XBMC\userdata\addon_data\plugin.video.pelisalacarta\cookies.dat
11:14:45 T:9452 NOTICE: [scrapertools.py] Importando cookielib
11:14:45 T:9452 NOTICE: [scrapertools.py] cookielib disponible
11:14:45 T:9452 NOTICE: [scrapertools.py] cambio en politicas
11:14:45 T:9452 NOTICE: [scrapertools.py] Hay cookies
11:14:45 T:9452 NOTICE: [scrapertools.py] Leyendo fichero cookies
11:14:45 T:9452 NOTICE: [scrapertools.py] opener usando urllib2 (cookielib)
11:14:45 T:9452 NOTICE: [scrapertools.py] petición GET
11:14:45 T:9452 NOTICE: [scrapertools.py] ---------------------------
11:14:45 T:9452 NOTICE: [scrapertools.py] header User-Agent=Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; es-ES; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12
11:14:45 T:9452 NOTICE: [scrapertools.py] ---------------------------
11:14:45 T:9452 NOTICE: [scrapertools.py] Peticion sin timeout
11:14:45 T:9452 NOTICE: [scrapertools.py] ...hecha
11:14:45 T:9452 NOTICE: [scrapertools.py] Grabando cookies...
11:14:45 T:9452 NOTICE: [scrapertools.py] ...hecho
11:14:45 T:9452 NOTICE: [scrapertools.py] normal
11:14:46 T:9452 NOTICE: [scrapertools.py] Respuesta
11:14:46 T:9452 NOTICE: [scrapertools.py] ---------------------------
11:14:46 T:9452 NOTICE: [scrapertools.py] x-powered-by=PHP/5.3.22
11:14:46 T:9452 NOTICE: [scrapertools.py] transfer-encoding=chunked
11:14:46 T:9452 NOTICE: [scrapertools.py] expires=Thu, 19 Nov 1981 08:52:00 GMT
11:14:46 T:9452 NOTICE: [scrapertools.py] server=cloudflare-nginx
11:14:46 T:9452 NOTICE: [scrapertools.py] connection=close
11:14:46 T:9452 NOTICE: [scrapertools.py] pragma=no-cache
11:14:46 T:9452 NOTICE: [scrapertools.py] cache-control=no-store, no-cache, must-revalidate, post-check=0, pre-check=0
11:14:46 T:9452 NOTICE: [scrapertools.py] date=Wed, 25 Dec 2013 10:14:46 GMT
11:14:46 T:9452 NOTICE: [scrapertools.py] cf-ray=e24c42c7f0f08de
11:14:46 T:9452 NOTICE: [scrapertools.py] content-type=text/html; charset=utf-8
11:14:46 T:9452 NOTICE: [scrapertools.py] ---------------------------
11:14:46 T:9452 NOTICE: [scrapertools.py] Descargado en 1 segundos
11:14:46 T:9452 NOTICE: [scrapertools.py] 0 ('http://cinemaxx.rs/we-are-what-we-are-2013-video_5e3de56fa.html', 'http://cinemaxx.rs/uploads/thumbs/5e3de56fa-1.jpg', 'We Are What We Are (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 1 ('http://cinemaxx.rs/thor-the-dark-world-2013-video_f1bac9739.html', 'http://cinemaxx.rs/uploads/thumbs/f1bac9739-1.jpg', 'Thor: The Dark World (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 2 ('http://cinemaxx.rs/the-hunger-games-catching-fire-2013-video_d39175f7b.html', 'http://cinemaxx.rs/uploads/thumbs/d39175f7b-1.jpg', 'The Hunger Games: Catching Fire (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 3 ('http://cinemaxx.rs/solo-i-2013-video_a9a322620.html', 'http://cinemaxx.rs/uploads/thumbs/a9a322620-1.jpg', 'Solo (I) (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 4 ('http://cinemaxx.rs/saving-santa-2013-video_dc12e550f.html', 'http://cinemaxx.rs/uploads/thumbs/dc12e550f-1.jpg', 'Saving Santa (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 5 ('http://cinemaxx.rs/open-grave-2013-video_e9d9f5159.html', 'http://cinemaxx.rs/uploads/thumbs/e9d9f5159-1.jpg', 'Open Grave (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 6 ('http://cinemaxx.rs/how-i-live-now-2013-video_aecbcc058.html', 'http://cinemaxx.rs/uploads/thumbs/aecbcc058-1.jpg', 'How I Live Now (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 7 ('http://cinemaxx.rs/gravity-2013-video_cbe9b5cb4.html', 'http://cinemaxx.rs/uploads/thumbs/cbe9b5cb4-1.jpg', 'Gravity (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 8 ('http://cinemaxx.rs/frozen-2013-video_27b87f249.html', 'http://cinemaxx.rs/uploads/thumbs/27b87f249-1.jpg', 'Frozen (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 9 ('http://cinemaxx.rs/free-birds-2013-video_e36da1473.html', 'http://cinemaxx.rs/uploads/thumbs/e36da1473-1.jpg', 'Free Birds (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 10 ('http://cinemaxx.rs/escape-plan-2013-video_8cf22d077.html', 'http://cinemaxx.rs/uploads/thumbs/8cf22d077-1.jpg', 'Escape Plan (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 11 ('http://cinemaxx.rs/enders-game-2013-video_d552f0a19.html', 'http://cinemaxx.rs/uploads/thumbs/d552f0a19-1.jpg', "Ender's Game (2013)")
11:14:46 T:9452 NOTICE: [scrapertools.py] 12 ('http://cinemaxx.rs/captain-phillips-2013-video_d24693e09.html', 'http://cinemaxx.rs/uploads/thumbs/d24693e09-1.jpg', 'Captain Phillips (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 13 ('http://cinemaxx.rs/abandoned-mine-2013-video_4ab4fd2b5.html', 'http://cinemaxx.rs/uploads/thumbs/4ab4fd2b5-1.jpg', 'Abandoned Mine (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 14 ('http://cinemaxx.rs/the-way-way-back-2013-video_cb9887990.html', 'http://cinemaxx.rs/uploads/thumbs/cb9887990-1.jpg', 'The Way, Way Back (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 15 ('http://cinemaxx.rs/the-to-do-list-2013-video_6506039b8.html', 'http://cinemaxx.rs/uploads/thumbs/6506039b8-1.jpg', 'The To Do List (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 16 ('http://cinemaxx.rs/the-taking-2013-video_7b442bfd1.html', 'http://cinemaxx.rs/uploads/thumbs/7b442bfd1-1.jpg', 'The Taking (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 17 ('http://cinemaxx.rs/the-necessary-death-of-charlie-countryman-2013-video_04003fd7a.html', 'http://cinemaxx.rs/uploads/thumbs/04003fd7a-1.jpg', 'The Necessary Death of Charlie Countryman (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 18 ('http://cinemaxx.rs/the-mortal-instruments-city-of-bones-2013-video_40e6a39ce.html', 'http://cinemaxx.rs/uploads/thumbs/40e6a39ce-1.jpg', 'The Mortal Instruments: City of Bones (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 19 ('http://cinemaxx.rs/the-hot-flashes-2013-video_f30d8e99e.html', 'http://cinemaxx.rs/uploads/thumbs/f30d8e99e-1.jpg', 'The Hot Flashes (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 20 ('http://cinemaxx.rs/the-haunting-of-helena-2012-video_1159ffc8f.html', 'http://cinemaxx.rs/uploads/thumbs/1159ffc8f-1.jpg', 'The Haunting of Helena (2012)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 21 ('http://cinemaxx.rs/the-deadly-game-2013-video_7182c873f.html', 'http://cinemaxx.rs/uploads/thumbs/7182c873f-1.jpg', 'The Deadly Game (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 22 ('http://cinemaxx.rs/the-hunger-games-catching-fire-2013-video_d9f7b10bb.html', 'http://cinemaxx.rs/uploads/thumbs/d9f7b10bb-1.jpg', 'The Hunger Games: Catching Fire (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 23 ('http://cinemaxx.rs/prince-avalanche-2013-video_26d674f0f.html', 'http://cinemaxx.rs/uploads/thumbs/26d674f0f-1.jpg', 'Prince Avalanche (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 24 ('http://cinemaxx.rs/nightscape-2012-video_29bbff38a.html', 'http://cinemaxx.rs/uploads/thumbs/29bbff38a-1.jpg', 'Nightscape (2012)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 25 ('http://cinemaxx.rs/killing-heat-2012-video_42fe2f0c5.html', 'http://cinemaxx.rs/uploads/thumbs/42fe2f0c5-1.jpg', 'Killing Heat (2012)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 26 ('http://cinemaxx.rs/i-hope-they-serve-beer-in-hell-2009-video_1f22ae6fd.html', 'http://cinemaxx.rs/uploads/thumbs/1f22ae6fd-1.jpg', 'I Hope They Serve Beer in Hell (2009)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 27 ('http://cinemaxx.rs/excuse-me-for-living-2012-video_4628686b8.html', 'http://cinemaxx.rs/uploads/thumbs/4628686b8-1.jpg', 'Excuse Me for Living (2012)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 28 ('http://cinemaxx.rs/complicity-2012-video_1c3b61b3f.html', 'http://cinemaxx.rs/uploads/thumbs/1c3b61b3f-1.jpg', 'Complicity (2012)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 29 ('http://cinemaxx.rs/breakup-at-a-wedding-2013-video_35c94adc3.html', 'http://cinemaxx.rs/uploads/thumbs/35c94adc3-1.jpg', 'Breakup at a Wedding (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 30 ('http://cinemaxx.rs/best-man-down-2012-video_78918ad68.html', 'http://cinemaxx.rs/uploads/thumbs/78918ad68-1.jpg', 'Best Man Down (2012)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 31 ('http://cinemaxx.rs/battle-of-the-year-the-dream-team-2013-video_9b3505fae.html', 'http://cinemaxx.rs/uploads/thumbs/9b3505fae-1.jpg', 'Battle of the Year: The Dream Team (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 32 ('http://cinemaxx.rs/atonement-2007-video_3541ce1e3.html', 'http://cinemaxx.rs/uploads/thumbs/3541ce1e3-1.jpg', 'Atonement (2007)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 33 ('http://cinemaxx.rs/all-is-bright-2013-video_9ab3a91de.html', 'http://cinemaxx.rs/uploads/thumbs/9ab3a91de-1.jpg', 'All Is Bright (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 34 ('http://cinemaxx.rs/traitor-2008-video_0b32c9b6f.html', 'http://cinemaxx.rs/uploads/thumbs/0b32c9b6f-1.jpg', 'Traitor (2008)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 35 ('http://cinemaxx.rs/this-is-our-time-2013-video_37c653e6e.html', 'http://cinemaxx.rs/uploads/thumbs/37c653e6e-1.jpg', 'This Is Our Time (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 36 ('http://cinemaxx.rs/the-onion-movie-2008-video_d42ba57f8.html', 'http://cinemaxx.rs/uploads/thumbs/d42ba57f8-1.jpg', 'The Onion Movie (2008)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 37 ('http://cinemaxx.rs/the-motel-life-2012-video_0269496ea.html', 'http://cinemaxx.rs/uploads/thumbs/0269496ea-1.jpg', 'The Motel Life (2012)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 38 ('http://cinemaxx.rs/the-black-dahlia-haunting-2012-video_3eb0e59aa.html', 'http://cinemaxx.rs/uploads/thumbs/3eb0e59aa-1.jpg', 'The Black Dahlia Haunting (2012)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 39 ('http://cinemaxx.rs/standing-up-2013-video_3aa355c64.html', 'http://cinemaxx.rs/uploads/thumbs/3aa355c64-1.jpg', 'Standing Up (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 40 ('http://cinemaxx.rs/she-made-them-do-it-tv-2013-video_89d4aa78d.html', 'http://cinemaxx.rs/uploads/thumbs/89d4aa78d-1.jpg', 'She Made Them Do It - TV (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 41 ('http://cinemaxx.rs/shadowlands-1993-video_cab3721ad.html', 'http://cinemaxx.rs/uploads/thumbs/cab3721ad-1.jpg', 'Shadowlands (1993)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 42 ('http://cinemaxx.rs/prisoners-2013-video_757fe5e93.html', 'http://cinemaxx.rs/uploads/thumbs/757fe5e93-1.jpg', 'Prisoners (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 43 ('http://cinemaxx.rs/percy-jackson-sea-of-monsters-2013-video_e071e0526.html', 'http://cinemaxx.rs/uploads/thumbs/e071e0526-1.jpg', 'Percy Jackson: Sea of Monsters (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 44 ('http://cinemaxx.rs/nothing-left-to-fear-2013-video_fa9a3f076.html', 'http://cinemaxx.rs/uploads/thumbs/fa9a3f076-1.jpg', 'Nothing Left to Fear (2013)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 45 ('http://cinemaxx.rs/my-life-in-ruins-2009-video_bc9d60412.html', 'http://cinemaxx.rs/uploads/thumbs/bc9d60412-1.jpg', 'My Life in Ruins (2009)')
11:14:46 T:9452 NOTICE: [scrapertools.py] 46 ('http://cinemaxx.rs/mr-morgans-last-love-2013-video_33d46f4bf.html', 'http://cinemaxx.rs/uploads/thumbs/33d46f4bf-1.jpg', "Mr. Morgan's Last Love (2013)")
11:14:46 T:9452 NOTICE: [scrapertools.py] 47 ('http://cinemaxx.rs/just-married-2003-video_348e535f7.html', 'http://cinemaxx.rs/uploads/thumbs/348e535f7-1.jpg', 'Just Married (2003)')
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/we-are-what-we-are-2013-video_5e3de56fa.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/5e3de56fa-1.jpg], title=[We Are What We Are (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/thor-the-dark-world-2013-video_f1bac9739.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/f1bac9739-1.jpg], title=[Thor: The Dark World (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/the-hunger-games-catching-fire-2013-video_d39175f7b.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/d39175f7b-1.jpg], title=[The Hunger Games: Catching Fire (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/solo-i-2013-video_a9a322620.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/a9a322620-1.jpg], title=[Solo (I) (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/saving-santa-2013-video_dc12e550f.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/dc12e550f-1.jpg], title=[Saving Santa (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/open-grave-2013-video_e9d9f5159.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/e9d9f5159-1.jpg], title=[Open Grave (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/how-i-live-now-2013-video_aecbcc058.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/aecbcc058-1.jpg], title=[How I Live Now (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/gravity-2013-video_cbe9b5cb4.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/cbe9b5cb4-1.jpg], title=[Gravity (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/frozen-2013-video_27b87f249.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/27b87f249-1.jpg], title=[Frozen (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/free-birds-2013-video_e36da1473.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/e36da1473-1.jpg], title=[Free Birds (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/escape-plan-2013-video_8cf22d077.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/8cf22d077-1.jpg], title=[Escape Plan (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/enders-game-2013-video_d552f0a19.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/d552f0a19-1.jpg], title=[Ender's Game (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/captain-phillips-2013-video_d24693e09.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/d24693e09-1.jpg], title=[Captain Phillips (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/abandoned-mine-2013-video_4ab4fd2b5.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/4ab4fd2b5-1.jpg], title=[Abandoned Mine (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/the-way-way-back-2013-video_cb9887990.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/cb9887990-1.jpg], title=[The Way, Way Back (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/the-to-do-list-2013-video_6506039b8.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/6506039b8-1.jpg], title=[The To Do List (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/the-taking-2013-video_7b442bfd1.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/7b442bfd1-1.jpg], title=[The Taking (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/the-necessary-death-of-charlie-countryman-2013-video_04003fd7a.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/04003fd7a-1.jpg], title=[The Necessary Death of Charlie Countryman (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/the-mortal-instruments-city-of-bones-2013-video_40e6a39ce.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/40e6a39ce-1.jpg], title=[The Mortal Instruments: City of Bones (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/the-hot-flashes-2013-video_f30d8e99e.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/f30d8e99e-1.jpg], title=[The Hot Flashes (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/the-haunting-of-helena-2012-video_1159ffc8f.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/1159ffc8f-1.jpg], title=[The Haunting of Helena (2012)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/the-deadly-game-2013-video_7182c873f.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/7182c873f-1.jpg], title=[The Deadly Game (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/the-hunger-games-catching-fire-2013-video_d9f7b10bb.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/d9f7b10bb-1.jpg], title=[The Hunger Games: Catching Fire (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/prince-avalanche-2013-video_26d674f0f.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/26d674f0f-1.jpg], title=[Prince Avalanche (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/nightscape-2012-video_29bbff38a.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/29bbff38a-1.jpg], title=[Nightscape (2012)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/killing-heat-2012-video_42fe2f0c5.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/42fe2f0c5-1.jpg], title=[Killing Heat (2012)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/i-hope-they-serve-beer-in-hell-2009-video_1f22ae6fd.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/1f22ae6fd-1.jpg], title=[I Hope They Serve Beer in Hell (2009)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/excuse-me-for-living-2012-video_4628686b8.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/4628686b8-1.jpg], title=[Excuse Me for Living (2012)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/complicity-2012-video_1c3b61b3f.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/1c3b61b3f-1.jpg], title=[Complicity (2012)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/breakup-at-a-wedding-2013-video_35c94adc3.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/35c94adc3-1.jpg], title=[Breakup at a Wedding (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/best-man-down-2012-video_78918ad68.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/78918ad68-1.jpg], title=[Best Man Down (2012)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/battle-of-the-year-the-dream-team-2013-video_9b3505fae.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/9b3505fae-1.jpg], title=[Battle of the Year: The Dream Team (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/atonement-2007-video_3541ce1e3.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/3541ce1e3-1.jpg], title=[Atonement (2007)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/all-is-bright-2013-video_9ab3a91de.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/9ab3a91de-1.jpg], title=[All Is Bright (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/traitor-2008-video_0b32c9b6f.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/0b32c9b6f-1.jpg], title=[Traitor (2008)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/this-is-our-time-2013-video_37c653e6e.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/37c653e6e-1.jpg], title=[This Is Our Time (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/the-onion-movie-2008-video_d42ba57f8.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/d42ba57f8-1.jpg], title=[The Onion Movie (2008)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/the-motel-life-2012-video_0269496ea.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/0269496ea-1.jpg], title=[The Motel Life (2012)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/the-black-dahlia-haunting-2012-video_3eb0e59aa.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/3eb0e59aa-1.jpg], title=[The Black Dahlia Haunting (2012)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/standing-up-2013-video_3aa355c64.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/3aa355c64-1.jpg], title=[Standing Up (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/she-made-them-do-it-tv-2013-video_89d4aa78d.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/89d4aa78d-1.jpg], title=[She Made Them Do It - TV (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/shadowlands-1993-video_cab3721ad.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/cab3721ad-1.jpg], title=[Shadowlands (1993)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/prisoners-2013-video_757fe5e93.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/757fe5e93-1.jpg], title=[Prisoners (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/percy-jackson-sea-of-monsters-2013-video_e071e0526.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/e071e0526-1.jpg], title=[Percy Jackson: Sea of Monsters (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/nothing-left-to-fear-2013-video_fa9a3f076.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/fa9a3f076-1.jpg], title=[Nothing Left to Fear (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/my-life-in-ruins-2009-video_bc9d60412.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/bc9d60412-1.jpg], title=[My Life in Ruins (2009)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/mr-morgans-last-love-2013-video_33d46f4bf.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/33d46f4bf-1.jpg], title=[Mr. Morgan's Last Love (2013)]
11:14:46 T:9452 NOTICE: url=[http://cinemaxx.rs/just-married-2003-video_348e535f7.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/348e535f7-1.jpg], title=[Just Married (2003)]
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "We Are What We Are (2013)" , "http://cinemaxx.rs/we-are-what-we-are-2013-video_5e3de56fa.html" , "http://cinemaxx.rs/uploads/thumbs/5e3de56fa-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Thor: The Dark World (2013)" , "http://cinemaxx.rs/thor-the-dark-world-2013-video_f1bac9739.html" , "http://cinemaxx.rs/uploads/thumbs/f1bac9739-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Hunger Games: Catching Fire (2013)" , "http://cinemaxx.rs/the-hunger-games-catching-fire-2013-video_d39175f7b.html" , "http://cinemaxx.rs/uploads/thumbs/d39175f7b-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Solo (I) (2013)" , "http://cinemaxx.rs/solo-i-2013-video_a9a322620.html" , "http://cinemaxx.rs/uploads/thumbs/a9a322620-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Saving Santa (2013)" , "http://cinemaxx.rs/saving-santa-2013-video_dc12e550f.html" , "http://cinemaxx.rs/uploads/thumbs/dc12e550f-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Open Grave (2013)" , "http://cinemaxx.rs/open-grave-2013-video_e9d9f5159.html" , "http://cinemaxx.rs/uploads/thumbs/e9d9f5159-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "How I Live Now (2013)" , "http://cinemaxx.rs/how-i-live-now-2013-video_aecbcc058.html" , "http://cinemaxx.rs/uploads/thumbs/aecbcc058-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Gravity (2013)" , "http://cinemaxx.rs/gravity-2013-video_cbe9b5cb4.html" , "http://cinemaxx.rs/uploads/thumbs/cbe9b5cb4-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Frozen (2013)" , "http://cinemaxx.rs/frozen-2013-video_27b87f249.html" , "http://cinemaxx.rs/uploads/thumbs/27b87f249-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Free Birds (2013)" , "http://cinemaxx.rs/free-birds-2013-video_e36da1473.html" , "http://cinemaxx.rs/uploads/thumbs/e36da1473-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Escape Plan (2013)" , "http://cinemaxx.rs/escape-plan-2013-video_8cf22d077.html" , "http://cinemaxx.rs/uploads/thumbs/8cf22d077-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Ender's Game (2013)" , "http://cinemaxx.rs/enders-game-2013-video_d552f0a19.html" , "http://cinemaxx.rs/uploads/thumbs/d552f0a19-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Captain Phillips (2013)" , "http://cinemaxx.rs/captain-phillips-2013-video_d24693e09.html" , "http://cinemaxx.rs/uploads/thumbs/d24693e09-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Abandoned Mine (2013)" , "http://cinemaxx.rs/abandoned-mine-2013-video_4ab4fd2b5.html" , "http://cinemaxx.rs/uploads/thumbs/4ab4fd2b5-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Way, Way Back (2013)" , "http://cinemaxx.rs/the-way-way-back-2013-video_cb9887990.html" , "http://cinemaxx.rs/uploads/thumbs/cb9887990-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The To Do List (2013)" , "http://cinemaxx.rs/the-to-do-list-2013-video_6506039b8.html" , "http://cinemaxx.rs/uploads/thumbs/6506039b8-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Taking (2013)" , "http://cinemaxx.rs/the-taking-2013-video_7b442bfd1.html" , "http://cinemaxx.rs/uploads/thumbs/7b442bfd1-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Necessary Death of Charlie Countryman (2013)" , "http://cinemaxx.rs/the-necessary-death-of-charlie-countryman-2013-video_04003fd7a.html" , "http://cinemaxx.rs/uploads/thumbs/04003fd7a-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Mortal Instruments: City of Bones (2013)" , "http://cinemaxx.rs/the-mortal-instruments-city-of-bones-2013-video_40e6a39ce.html" , "http://cinemaxx.rs/uploads/thumbs/40e6a39ce-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Hot Flashes (2013)" , "http://cinemaxx.rs/the-hot-flashes-2013-video_f30d8e99e.html" , "http://cinemaxx.rs/uploads/thumbs/f30d8e99e-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Haunting of Helena (2012)" , "http://cinemaxx.rs/the-haunting-of-helena-2012-video_1159ffc8f.html" , "http://cinemaxx.rs/uploads/thumbs/1159ffc8f-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Deadly Game (2013)" , "http://cinemaxx.rs/the-deadly-game-2013-video_7182c873f.html" , "http://cinemaxx.rs/uploads/thumbs/7182c873f-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Hunger Games: Catching Fire (2013)" , "http://cinemaxx.rs/the-hunger-games-catching-fire-2013-video_d9f7b10bb.html" , "http://cinemaxx.rs/uploads/thumbs/d9f7b10bb-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Prince Avalanche (2013)" , "http://cinemaxx.rs/prince-avalanche-2013-video_26d674f0f.html" , "http://cinemaxx.rs/uploads/thumbs/26d674f0f-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Nightscape (2012)" , "http://cinemaxx.rs/nightscape-2012-video_29bbff38a.html" , "http://cinemaxx.rs/uploads/thumbs/29bbff38a-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Killing Heat (2012)" , "http://cinemaxx.rs/killing-heat-2012-video_42fe2f0c5.html" , "http://cinemaxx.rs/uploads/thumbs/42fe2f0c5-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "I Hope They Serve Beer in Hell (2009)" , "http://cinemaxx.rs/i-hope-they-serve-beer-in-hell-2009-video_1f22ae6fd.html" , "http://cinemaxx.rs/uploads/thumbs/1f22ae6fd-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Excuse Me for Living (2012)" , "http://cinemaxx.rs/excuse-me-for-living-2012-video_4628686b8.html" , "http://cinemaxx.rs/uploads/thumbs/4628686b8-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Complicity (2012)" , "http://cinemaxx.rs/complicity-2012-video_1c3b61b3f.html" , "http://cinemaxx.rs/uploads/thumbs/1c3b61b3f-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Breakup at a Wedding (2013)" , "http://cinemaxx.rs/breakup-at-a-wedding-2013-video_35c94adc3.html" , "http://cinemaxx.rs/uploads/thumbs/35c94adc3-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Best Man Down (2012)" , "http://cinemaxx.rs/best-man-down-2012-video_78918ad68.html" , "http://cinemaxx.rs/uploads/thumbs/78918ad68-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Battle of the Year: The Dream Team (2013)" , "http://cinemaxx.rs/battle-of-the-year-the-dream-team-2013-video_9b3505fae.html" , "http://cinemaxx.rs/uploads/thumbs/9b3505fae-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Atonement (2007)" , "http://cinemaxx.rs/atonement-2007-video_3541ce1e3.html" , "http://cinemaxx.rs/uploads/thumbs/3541ce1e3-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "All Is Bright (2013)" , "http://cinemaxx.rs/all-is-bright-2013-video_9ab3a91de.html" , "http://cinemaxx.rs/uploads/thumbs/9ab3a91de-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Traitor (2008)" , "http://cinemaxx.rs/traitor-2008-video_0b32c9b6f.html" , "http://cinemaxx.rs/uploads/thumbs/0b32c9b6f-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "This Is Our Time (2013)" , "http://cinemaxx.rs/this-is-our-time-2013-video_37c653e6e.html" , "http://cinemaxx.rs/uploads/thumbs/37c653e6e-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Onion Movie (2008)" , "http://cinemaxx.rs/the-onion-movie-2008-video_d42ba57f8.html" , "http://cinemaxx.rs/uploads/thumbs/d42ba57f8-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Motel Life (2012)" , "http://cinemaxx.rs/the-motel-life-2012-video_0269496ea.html" , "http://cinemaxx.rs/uploads/thumbs/0269496ea-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Black Dahlia Haunting (2012)" , "http://cinemaxx.rs/the-black-dahlia-haunting-2012-video_3eb0e59aa.html" , "http://cinemaxx.rs/uploads/thumbs/3eb0e59aa-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Standing Up (2013)" , "http://cinemaxx.rs/standing-up-2013-video_3aa355c64.html" , "http://cinemaxx.rs/uploads/thumbs/3aa355c64-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "She Made Them Do It - TV (2013)" , "http://cinemaxx.rs/she-made-them-do-it-tv-2013-video_89d4aa78d.html" , "http://cinemaxx.rs/uploads/thumbs/89d4aa78d-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Shadowlands (1993)" , "http://cinemaxx.rs/shadowlands-1993-video_cab3721ad.html" , "http://cinemaxx.rs/uploads/thumbs/cab3721ad-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Prisoners (2013)" , "http://cinemaxx.rs/prisoners-2013-video_757fe5e93.html" , "http://cinemaxx.rs/uploads/thumbs/757fe5e93-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Percy Jackson: Sea of Monsters (2013)" , "http://cinemaxx.rs/percy-jackson-sea-of-monsters-2013-video_e071e0526.html" , "http://cinemaxx.rs/uploads/thumbs/e071e0526-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Nothing Left to Fear (2013)" , "http://cinemaxx.rs/nothing-left-to-fear-2013-video_fa9a3f076.html" , "http://cinemaxx.rs/uploads/thumbs/fa9a3f076-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "My Life in Ruins (2009)" , "http://cinemaxx.rs/my-life-in-ruins-2009-video_bc9d60412.html" , "http://cinemaxx.rs/uploads/thumbs/bc9d60412-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Mr. Morgan's Last Love (2013)" , "http://cinemaxx.rs/mr-morgans-last-love-2013-video_33d46f4bf.html" , "http://cinemaxx.rs/uploads/thumbs/33d46f4bf-1.jpg" , "")" , "")"
11:14:46 T:9452 NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Just Married (2003)" , "http://cinemaxx.rs/just-married-2003-video_348e535f7.html" , "http://cinemaxx.rs/uploads/thumbs/348e535f7-1.jpg" , "")" , "")"
11:14:46 T:2136 NOTICE: Thread Background Loader start, auto delete: false
PS Ya lo se que no es un sitio con peliculas españolas, pero es con peliculas en VO que es lo que yo busco.
