Example #1
0
        static void Main(string[] args)
        {
            // ---------------------------------------------------------------
            //testearBaseDeDatos();
            // ---------------------------------------------------------------

            // ---------------------------------------------------------------
            //testearPelicula ("https://www.pelispedia.tv/pelicula/ibiza/");
            //testearPelicula("https://www.pelispedia.tv/pelicula/entre-sombras/", "Entre Sombras");
            // ---------------------------------------------------------------

            // ---------------------------------------------------------------
            IWebScrapper scrapper = new ScrapPelispedia();

            scrapper.onLog   += Scrapper_onLog;
            scrapper.onMovie += Scrapper_onMovie;

            scrapper.scrapMovies();
            // ---------------------------------------------------------------

            Console.ReadKey();
        }