If you visit http://www.imdb.com/title/tt2375692/episodes?season=1 here, then you will see that season 1,episode 1's publish date is 25 Jan. 2014,
This is the code I am using to scrape.
req = urllib2.Request('http://www.imdb.com/title/tt2375692/episodes?season=1')
self.diziPage = urllib2.urlopen(req).read()
self.diziSoup = BeautifulSoup(self.diziPage,from_encoding="utf8")
After I scrape the site, everything is fine except the airdate, episode 1 's airdate comes out 20 April 2014, which is not in present when I visit, all of the rest informations comes corrent.
I thought it may be because of headers I did some experiments but that didnt work.