kandianying 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ef5af9b6956c413dca064d4ac988dd0285e531d4
4
- data.tar.gz: 06c29e1cc855bdf9d520eb131e0211faf6787ee7
3
+ metadata.gz: 9c8543cbbbdef138447df2a0c72440176f541236
4
+ data.tar.gz: 3e54ddd7955b093e1f6141604c07eda379f49dd1
5
5
  SHA512:
6
- metadata.gz: 3986b9646ad203d984951c061b3ed7513580ddc0375a9ca68e6bfaf2ef33795e4fd7cfefa4e7f2e6ce78b01f396e443cabeb3aea5fabbf2e5a998a6bd90f5823
7
- data.tar.gz: e2c711e58bac4a6e33c08b74eed729e13afd7ea481e87597f9649b4bcc73ddea40c19672760a5c8cb570e10f64d72aa8b9a056448babb1aed159d6b75ec4396e
6
+ metadata.gz: a71a2984902e8c134f41742a95ef0f573c7fbdb4304395802c2a7444289d54f58cd244bbf4c92457b6402750ca9f65ba0583e2a523f3bf2cd5a07cc2111848f9
7
+ data.tar.gz: 2fa04974fd39eaca35e50b42d19dc00bcb57bc9ca8d800070456908ca5aec840807414c1ac76dc2082b89e115a40209ab57c6d837bf1c19a0b5277706f1d61e2
data/.gitignore CHANGED
@@ -1,2 +1,3 @@
1
1
  *.gem
2
2
  Gemfile.lock
3
+ *_upload_not.rb
data/.travis.yml CHANGED
@@ -9,5 +9,7 @@ matrix:
9
9
  allow_failures:
10
10
  - rvm: jruby-head
11
11
  - rvm: 1.9.3
12
+ notifications:
13
+ slack: soa-2015:kyVe3CqcC9MHxQdS3y4SyD07
12
14
  # uncomment this line if your project needs to run something other than `rake`:
13
15
  # script: bundle exec rspec spec
data/README.md CHANGED
@@ -26,8 +26,18 @@ require 'kandianying'
26
26
 
27
27
  vieshow_movie = HsinChuMovie::Vieshow.new(<theater_id>)
28
28
  vieshow_movie.movie_names # Returns array of film names
29
- vieshow_movie.movie_table # Returns JSON array of film names, dates, time
30
- vieshow_movie.to_json # Puts JSON array of movie_table
29
+ vieshow_movie.movie_table # Returns Hash containing film names, dates, times
30
+ vieshow_movie.to_json # Returns JSON array of movie_table
31
+
32
+ # <film_name> is a string that is any part of the name of film.
33
+ vieshow_movie.film_times(film_name)
34
+ # Returns Hash containing film viewing dates and times.
35
+
36
+ # <date_time> is string of the type 'MONTH DATE TIME' such as 'November 5 22:00'.
37
+ # Abbreviations such as 'Nov 5 22:00' would suffice.
38
+ # If the date is the same as the query date, you can simply use the time '22:00'
39
+ vieshow_movie.films_after_time(date_time)
40
+ # Returns hash containing films on display after given time with start times
31
41
  ```
32
42
 
33
43
  ## License
data/bin/kandianying CHANGED
@@ -1,19 +1,20 @@
1
1
  #!/usr/bin/env ruby
2
2
  require_relative '../lib/kandianying'
3
3
  VIESHOW_CODES = ('1'..'14').to_a.map { |e| e.length == 1 ? "0#{e}" : e }
4
+ ID_OUT_OUT_RANGE = 'Please use a cinema code between \'1\' and \'14\' inclusive'
4
5
 
5
6
  if ARGV[0] == 'vieshow'
6
7
  ARGV[1] = "0#{ARGV[1]}" if ARGV[1].length == 1
7
8
  if VIESHOW_CODES.include? ARGV[1]
8
9
  cinema = HsinChuMovie::Vieshow.new(ARGV[1])
9
- puts cinema.cinema_name
10
- cinema.movie_table.each do |_, movies|
11
- movies.each do |movie, times|
10
+ cinema.movie_table.each do |cinema_name, movies|
11
+ puts cinema_name
12
+ movies.each do |movie, date_times|
12
13
  puts movie
13
- times.each { |k, v| puts k + "\t" + v }
14
+ date_times.each { |date, times| puts date + "\t" + times.join(', ') }
14
15
  end
15
16
  end
16
17
  else
17
- puts 'Please use a cinema code between \'1\' and \'14\''
18
+ puts ID_OUT_OUT_RANGE
18
19
  end
19
20
  end
@@ -1,5 +1,5 @@
1
1
  # Versioning
2
2
  module KanDianYing
3
- VERSION = '0.0.6'
4
- DATE = '2015-10-28'
3
+ VERSION = '0.0.7'
4
+ DATE = '2015-11-04'
5
5
  end
@@ -1,27 +1,16 @@
1
1
  require 'open-uri'
2
2
  require 'nokogiri'
3
3
  require 'json'
4
+ require_relative './vieshow_scrape'
5
+ require_relative './vieshow_search'
4
6
 
5
7
  # Scraper for VieShow
6
8
  module VieShow
7
- VIESHOW_URL = 'http://sales.vscinemas.com.tw/ticketing/visPrintShowTimes'\
8
- '.aspx?visCinemaID=00'
9
- VIESHOW_COOKIE_SETTINGS = 'AspxAutoDetectCookieSupport=1'
10
- VIESHOW_BASE_XPATH = 'PrintShowTimes'
11
- VIESHOW_CLASSES_XPATH = %w(Film Day Session)
12
- VIESHOW_TABLE_XPATH = "//*[@class=\'#{VIESHOW_BASE_XPATH}Table\']//td"
13
- VIESHOW_DATA_XPATH = VIESHOW_CLASSES_XPATH.map do |scrape_class|
14
- "@class=\'#{VIESHOW_BASE_XPATH}#{scrape_class}\'"
15
- end.join(' or ')
16
- VIESHOW_FULL_XPATH = VIESHOW_TABLE_XPATH + '[' + VIESHOW_DATA_XPATH + ']'
17
- VIESHOW_CINEMA_CODES = ('1'..'14').to_a.map do |e|
18
- e.length == 1 ? "0#{e}" : e
19
- end
20
- VIESHOW_CINEMA_NAME_XPATH = "//*[contains(@class, 'PrintCinemaName')]"
21
9
  INITIALIZE_ERROR = 'id out of range'
22
10
 
23
11
  # Class for Vieshow films
24
12
  class Vieshow
13
+ include VieshowScrape, VieshowSearch
25
14
  # initialize movie_table with ID
26
15
  def initialize(vis_cinema_id)
27
16
  vis_cinema_id = vis_cinema_id.to_s
@@ -38,34 +27,6 @@ module VieShow
38
27
  # fetch movie_table
39
28
  attr_reader :movie_table, :cinema_name
40
29
 
41
- def visit_vieshow(vis_cinema_id)
42
- url = VIESHOW_URL + vis_cinema_id
43
- open_doc = open(url, 'Cookie' => VIESHOW_COOKIE_SETTINGS)
44
- Nokogiri::HTML(open_doc)
45
- end
46
-
47
- # make movie_table like the structure {"name"=>[[day,time],"name2".....}
48
- def make_movie_table
49
- current_movie = ''
50
- @table.each do |td|
51
- current_movie = movie_conditions(td, current_movie)
52
- end
53
- @movie_table.each { |k, v| movie_table[k] = v.to_h }
54
- end
55
-
56
- # make make_movie_table simple
57
- def movie_conditions(td, current_movie)
58
- case td.first[1]
59
- when 'PrintShowTimesFilm'
60
- current_movie = td.text
61
- when 'PrintShowTimesDay'
62
- @movie_table[current_movie] << [td.text]
63
- when 'PrintShowTimesSession'
64
- @movie_table[current_movie][-1] << td.text
65
- end
66
- current_movie
67
- end
68
-
69
30
  # get all movies' names
70
31
  def movie_names
71
32
  @movie_table.values[0].keys
@@ -0,0 +1,49 @@
1
+ # Helper module to scrape Vieshow
2
+ module VieshowScrape
3
+ VIESHOW_URL = 'http://sales.vscinemas.com.tw/ticketing/visPrintShowTimes'\
4
+ '.aspx?visCinemaID=00'
5
+ LANGUAGE_PARAM = '&visLang='
6
+ LANGUAGES = %w(1, 2)
7
+ VIESHOW_COOKIE_SETTINGS = 'AspxAutoDetectCookieSupport=1'
8
+ VIESHOW_BASE_XPATH = 'PrintShowTimes'
9
+ VIESHOW_CLASSES_XPATH = %w(Film Day Session)
10
+ VIESHOW_TABLE_XPATH = "//*[@class=\'#{VIESHOW_BASE_XPATH}Table\']//td"
11
+ VIESHOW_DATA_XPATH = VIESHOW_CLASSES_XPATH.map do |scrape_class|
12
+ "@class=\'#{VIESHOW_BASE_XPATH}#{scrape_class}\'"
13
+ end.join(' or ')
14
+ VIESHOW_FULL_XPATH = VIESHOW_TABLE_XPATH + '[' + VIESHOW_DATA_XPATH + ']'
15
+ VIESHOW_CINEMA_CODES = ('1'..'14').to_a.map do |e|
16
+ e.length == 1 ? "0#{e}" : e
17
+ end
18
+ VIESHOW_CINEMA_NAME_XPATH = "//*[contains(@class, 'PrintCinemaName')]"
19
+
20
+ def visit_vieshow(vis_cinema_id)
21
+ # Include langauge settings in morning when film data is stable.
22
+ # Add an extra parameter to this method
23
+ url = VIESHOW_URL + vis_cinema_id
24
+ open_doc = open(url, 'Cookie' => VIESHOW_COOKIE_SETTINGS)
25
+ Nokogiri::HTML(open_doc)
26
+ end
27
+
28
+ # make movie_table like the structure {"name"=>[[day,time],"name2".....}
29
+ def make_movie_table
30
+ current_movie = ''
31
+ @table.each do |td|
32
+ current_movie = movie_conditions(td, current_movie)
33
+ end
34
+ @movie_table.each { |k, v| movie_table[k] = v.to_h }
35
+ end
36
+
37
+ # make make_movie_table simple
38
+ def movie_conditions(td, current_movie)
39
+ case td.first[1]
40
+ when 'PrintShowTimesFilm'
41
+ current_movie = td.text
42
+ when 'PrintShowTimesDay'
43
+ @movie_table[current_movie] << [td.text]
44
+ when 'PrintShowTimesSession'
45
+ @movie_table[current_movie][-1] << td.text.split(', ')
46
+ end
47
+ current_movie
48
+ end
49
+ end
@@ -0,0 +1,49 @@
1
+ # Helper module to search for films
2
+ module VieshowSearch
3
+ NO_FILM = 'Film currently not on show'
4
+ AN_HOUR = 1 / 24.to_f
5
+ TIMEZONE = '+8'
6
+ MIDNIGHT = %w(00 01 02 03)
7
+
8
+ def find_film(film_name)
9
+ film_name = film_name.downcase
10
+ movie_names.select { |name| name if name.downcase.include? film_name }
11
+ end
12
+
13
+ def film_times(film_name, temp_table = {})
14
+ find_film(film_name).each do |film|
15
+ temp_table[film] = movie_table.values[0][film]
16
+ end
17
+ temp_table
18
+ end
19
+
20
+ def films_on_day(datetime, temp_table = {})
21
+ search_datetime = DateTime.parse("#{datetime}#{TIMEZONE}")
22
+ movie_table.values[0].each do |name, date_time|
23
+ date_time.each do |date, times|
24
+ if DateTime.parse(date).to_date == search_datetime.to_date
25
+ temp_table[name] = { date => times }
26
+ end
27
+ end
28
+ end
29
+ temp_table
30
+ end
31
+
32
+ def time_after(date, times, time_preferrence)
33
+ times.select do |time|
34
+ time if (MIDNIGHT.include? time[0..1]) ||
35
+ (DateTime.parse("#{date}#{time}#{TIMEZONE}") >= time_preferrence)
36
+ end
37
+ end
38
+
39
+ def films_after_time(datetime, temp_table = {})
40
+ search_datetime = DateTime.parse("#{datetime}#{TIMEZONE}") - AN_HOUR
41
+ films_on_day(datetime).each do |name, date_time|
42
+ date_time.each do |date, times|
43
+ time_array = time_after(date, times, search_datetime)
44
+ temp_table[name] = { date => time_array } unless time_array.empty?
45
+ end
46
+ end
47
+ temp_table
48
+ end
49
+ end
@@ -27,17 +27,17 @@ http_interactions:
27
27
  Server:
28
28
  - Microsoft-IIS/7.5
29
29
  Set-Cookie:
30
- - ASP.NET_SessionId=pughsh2sd2js0255s4yvxlik; path=/; HttpOnly
31
- - visSessionID=db9d015bc079429f904574c90d80a496; expires=Sat, 28-Nov-2015 03:56:55
30
+ - ASP.NET_SessionId=vyl23l55ayawavmdth1h0iy5; path=/; HttpOnly
31
+ - visSessionID=d2ab1ace0dd542178e8123afde13a548; expires=Thu, 03-Dec-2015 11:16:38
32
32
  GMT; path=/
33
33
  X-Aspnet-Version:
34
34
  - 2.0.50727
35
35
  X-Powered-By:
36
36
  - ASP.NET
37
37
  Date:
38
- - Wed, 28 Oct 2015 03:56:54 GMT
38
+ - Tue, 03 Nov 2015 11:16:38 GMT
39
39
  Content-Length:
40
- - '14023'
40
+ - '15476'
41
41
  body:
42
42
  encoding: UTF-8
43
43
  string: "\r\n<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">\r\n<HTML>\r\n\t<HEAD>\r\n\t\t<title>\r\n\t\t\t***Vieshow
@@ -61,65 +61,89 @@ http_interactions:
61
61
  Class=\"ImagePrintShowTimes\" border=\"0\" /></a></td>\r\n\t</tr><tr>\r\n\t\t<td><span
62
62
  class=\"PrintSelectionLabel\">Cinema:</span></td><td><span class=\"PrintCinemaName\">VS
63
63
  Cinemas Hsinchu FE21</span></td>\r\n\t</tr><tr>\r\n\t\t<td colspan=\"2\"><span
64
- class=\"PrintDateRange\">Showtimes for, Oct 28 Wed - Nov 12 Thu</span></td>\r\n\t</tr>\r\n</table></td>\r\n\t\t
64
+ class=\"PrintDateRange\">Showtimes for, Nov 3 Tue - Nov 12 Thu</span></td>\r\n\t</tr>\r\n</table></td>\r\n\t\t
65
65
  \ </tr>\r\n\t\t <tr>\r\n\t\t <td colspan=2></td>\r\n\t\t
66
66
  \ </tr>\r\n\t\t </table>\r\n\t\t\t\r\n\t\t\t<table id=\"tblShowTimes\"
67
67
  class=\"PrintShowTimesTable\" border=\"0\" width=\"640\">\r\n\t<tr>\r\n\t\t<td
68
68
  width=\"145\"></td><td width=\"495\"></td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesFilm\"
69
69
  colspan=\"2\">(4DX)THE LAST WITCH HUNTER (PG)</td>\r\n\t</tr><tr>\r\n\t\t<td
70
- class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Oct 28 Wed</td><td
71
- class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">12:45, 14:50,
72
- 16:55, 19:00, 21:10, 23:15</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
73
- valign=\"top\" colspan=\"1\">Oct 29 Thu</td><td class=\"PrintShowTimesSession\"
74
- valign=\"top\" colspan=\"1\">10:40, 12:45, 14:50, 16:55, 19:00, 21:10, 23:15</td>\r\n\t</tr><tr>\r\n\t\t<td
70
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 3 Tue</td><td
71
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">20:55, 23:05</td>\r\n\t</tr><tr>\r\n\t\t<td
72
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 4 Wed</td><td
73
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">10:30, 12:35,
74
+ 14:40, 16:45, 18:50, 20:55, 23:05</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
75
+ valign=\"top\" colspan=\"1\">Nov 5 Thu</td><td class=\"PrintShowTimesSession\"
76
+ valign=\"top\" colspan=\"1\">10:15, 12:20, 14:30, 16:40, 18:50, 21:05, 23:15</td>\r\n\t</tr><tr>\r\n\t\t<td
75
77
  colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesFilm\"
76
78
  colspan=\"2\">(DIG C)THE LITTLE PRINCE (G)</td>\r\n\t</tr><tr>\r\n\t\t<td
77
- class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Oct 28 Wed</td><td
78
- class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">15:00, 19:10</td>\r\n\t</tr><tr>\r\n\t\t<td
79
- class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Oct 29 Thu</td><td
80
- class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">10:50, 15:00,
81
- 19:10</td>\r\n\t</tr><tr>\r\n\t\t<td colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td
82
- class=\"PrintShowTimesFilm\" colspan=\"2\">(DIG E)THE LITTLE PRINCE (G)</td>\r\n\t</tr><tr>\r\n\t\t<td
83
- class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Oct 28 Wed</td><td
84
- class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">12:55, 17:05,
85
- 21:15, 23:20</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\" valign=\"top\"
86
- colspan=\"1\">Oct 29 Thu</td><td class=\"PrintShowTimesSession\" valign=\"top\"
87
- colspan=\"1\">12:55, 17:05, 21:15, 23:20</td>\r\n\t</tr><tr>\r\n\t\t<td colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td
88
- class=\"PrintShowTimesFilm\" colspan=\"2\">(DIG)ANOTHER WOMAN (P)</td>\r\n\t</tr><tr>\r\n\t\t<td
89
- class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Oct 28 Wed</td><td
90
- class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">15:40, 17:40,
91
- 19:35, 00:10</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\" valign=\"top\"
92
- colspan=\"1\">Oct 29 Thu</td><td class=\"PrintShowTimesSession\" valign=\"top\"
93
- colspan=\"1\">11:00, 15:40, 17:40, 19:35, 00:10</td>\r\n\t</tr><tr>\r\n\t\t<td
79
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 4 Wed</td><td
80
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">10:45, 17:15</td>\r\n\t</tr><tr>\r\n\t\t<td
81
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 5 Thu</td><td
82
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">14:05</td>\r\n\t</tr><tr>\r\n\t\t<td
94
83
  colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesFilm\"
95
- colspan=\"2\">(DIG)BLACK MASS (R)</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
96
- valign=\"top\" colspan=\"1\">Oct 28 Wed</td><td class=\"PrintShowTimesSession\"
97
- valign=\"top\" colspan=\"1\">13:30, 16:00, 18:20, 20:40, 23:00</td>\r\n\t</tr><tr>\r\n\t\t<td
98
- class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Oct 29 Thu</td><td
99
- class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">11:10, 13:30,
100
- 16:00, 18:20, 20:40, 23:00</td>\r\n\t</tr><tr>\r\n\t\t<td colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td
101
- class=\"PrintShowTimesFilm\" colspan=\"2\">(DIG)BRIDGE OF SPIES (P)</td>\r\n\t</tr><tr>\r\n\t\t<td
102
- class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Oct 28 Wed</td><td
103
- class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">13:00, 17:30,
104
- 21:30</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\" valign=\"top\"
105
- colspan=\"1\">Oct 29 Thu</td><td class=\"PrintShowTimesSession\" valign=\"top\"
106
- colspan=\"1\">13:00, 17:30, 21:30</td>\r\n\t</tr><tr>\r\n\t\t<td colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td
107
- class=\"PrintShowTimesFilm\" colspan=\"2\">(DIG)CRIMSON PEAK (R)</td>\r\n\t</tr><tr>\r\n\t\t<td
108
- class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Oct 28 Wed</td><td
109
- class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">12:50, 15:10,
110
- 16:50, 21:35, 23:55</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
111
- valign=\"top\" colspan=\"1\">Oct 29 Thu</td><td class=\"PrintShowTimesSession\"
112
- valign=\"top\" colspan=\"1\">12:50, 15:10, 16:50, 21:35, 23:55</td>\r\n\t</tr><tr>\r\n\t\t<td
84
+ colspan=\"2\">(DIG E)THE LITTLE PRINCE (G)</td>\r\n\t</tr><tr>\r\n\t\t<td
85
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 3 Tue</td><td
86
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">19:20</td>\r\n\t</tr><tr>\r\n\t\t<td
87
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 4 Wed</td><td
88
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">15:10, 19:20</td>\r\n\t</tr><tr>\r\n\t\t<td
89
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 5 Thu</td><td
90
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">09:50, 20:15</td>\r\n\t</tr><tr>\r\n\t\t<td
113
91
  colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesFilm\"
114
- colspan=\"2\">(DIG)PAN (P)</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
115
- valign=\"top\" colspan=\"1\">Oct 28 Wed</td><td class=\"PrintShowTimesSession\"
116
- valign=\"top\" colspan=\"1\">14:10</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
117
- valign=\"top\" colspan=\"1\">Oct 29 Thu</td><td class=\"PrintShowTimesSession\"
118
- valign=\"top\" colspan=\"1\">14:10</td>\r\n\t</tr><tr>\r\n\t\t<td colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td
119
- class=\"PrintShowTimesFilm\" colspan=\"2\">(DIG)SPECTRE (PG)</td>\r\n\t</tr><tr>\r\n\t\t<td
92
+ colspan=\"2\">(DIG)ANOTHER WOMAN (P)</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
93
+ valign=\"top\" colspan=\"1\">Nov 3 Tue</td><td class=\"PrintShowTimesSession\"
94
+ valign=\"top\" colspan=\"1\">21:45</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
95
+ valign=\"top\" colspan=\"1\">Nov 4 Wed</td><td class=\"PrintShowTimesSession\"
96
+ valign=\"top\" colspan=\"1\">14:10, 18:00, 21:45</td>\r\n\t</tr><tr>\r\n\t\t<td
120
97
  class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 5 Thu</td><td
121
- class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">10:45, 13:30,
122
- 16:15, 19:00, 21:45, 00:30</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
98
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">10:10, 16:10,
99
+ 22:20</td>\r\n\t</tr><tr>\r\n\t\t<td colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td
100
+ class=\"PrintShowTimesFilm\" colspan=\"2\">(DIG)BLACK MASS (R)</td>\r\n\t</tr><tr>\r\n\t\t<td
101
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 3 Tue</td><td
102
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">23:30</td>\r\n\t</tr><tr>\r\n\t\t<td
103
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 4 Wed</td><td
104
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">12:50, 23:30</td>\r\n\t</tr><tr>\r\n\t\t<td
105
+ colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesFilm\"
106
+ colspan=\"2\">(DIG)BRIDGE OF SPIES (P)</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
107
+ valign=\"top\" colspan=\"1\">Nov 3 Tue</td><td class=\"PrintShowTimesSession\"
108
+ valign=\"top\" colspan=\"1\">21:00, 23:45</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
109
+ valign=\"top\" colspan=\"1\">Nov 4 Wed</td><td class=\"PrintShowTimesSession\"
110
+ valign=\"top\" colspan=\"1\">21:00, 23:45</td>\r\n\t</tr><tr>\r\n\t\t<td colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td
111
+ class=\"PrintShowTimesFilm\" colspan=\"2\">(DIG)BURNT (P)</td>\r\n\t</tr><tr>\r\n\t\t<td
112
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 3 Tue</td><td
113
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">21:10, 23:10</td>\r\n\t</tr><tr>\r\n\t\t<td
114
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 4 Wed</td><td
115
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">11:00, 13:00,
116
+ 15:00, 17:00, 19:00, 21:10, 23:10</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
117
+ valign=\"top\" colspan=\"1\">Nov 5 Thu</td><td class=\"PrintShowTimesSession\"
118
+ valign=\"top\" colspan=\"1\">10:30, 15:00, 19:30, 21:30, 23:30</td>\r\n\t</tr><tr>\r\n\t\t<td
119
+ colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesFilm\"
120
+ colspan=\"2\">(DIG)CRIMSON PEAK (R)</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
121
+ valign=\"top\" colspan=\"1\">Nov 3 Tue</td><td class=\"PrintShowTimesSession\"
122
+ valign=\"top\" colspan=\"1\">00:00</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
123
+ valign=\"top\" colspan=\"1\">Nov 4 Wed</td><td class=\"PrintShowTimesSession\"
124
+ valign=\"top\" colspan=\"1\">00:00</td>\r\n\t</tr><tr>\r\n\t\t<td colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td
125
+ class=\"PrintShowTimesFilm\" colspan=\"2\">(DIG)ONE JOURNEY ONE MISSION (G)</td>\r\n\t</tr><tr>\r\n\t\t<td
126
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 3 Tue</td><td
127
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">20:00</td>\r\n\t</tr><tr>\r\n\t\t<td
128
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 4 Wed</td><td
129
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">10:40, 16:10,
130
+ 20:00</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\" valign=\"top\"
131
+ colspan=\"1\">Nov 5 Thu</td><td class=\"PrintShowTimesSession\" valign=\"top\"
132
+ colspan=\"1\">12:40, 17:10</td>\r\n\t</tr><tr>\r\n\t\t<td colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td
133
+ class=\"PrintShowTimesFilm\" colspan=\"2\">(DIG)SICARIO (R)</td>\r\n\t</tr><tr>\r\n\t\t<td
134
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 3 Tue</td><td
135
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">20:30, 22:50</td>\r\n\t</tr><tr>\r\n\t\t<td
136
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 4 Wed</td><td
137
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">11:10, 13:30,
138
+ 15:50, 18:10, 20:30, 22:50</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
139
+ valign=\"top\" colspan=\"1\">Nov 5 Thu</td><td class=\"PrintShowTimesSession\"
140
+ valign=\"top\" colspan=\"1\">12:30, 17:00, 21:40, 00:15</td>\r\n\t</tr><tr>\r\n\t\t<td
141
+ colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesFilm\"
142
+ colspan=\"2\">(DIG)SPECTRE (PG15)</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
143
+ valign=\"top\" colspan=\"1\">Nov 5 Thu</td><td class=\"PrintShowTimesSession\"
144
+ valign=\"top\" colspan=\"1\">10:00, 10:45, 11:25, 12:05, 12:45, 13:30, 14:10,
145
+ 14:50, 15:30, 16:15, 16:55, 17:35, 18:15, 19:00, 19:40, 20:20, 21:00, 21:45,
146
+ 22:25, 23:05, 23:45, 00:30</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
123
147
  valign=\"top\" colspan=\"1\">Nov 6 Fri</td><td class=\"PrintShowTimesSession\"
124
148
  valign=\"top\" colspan=\"1\">10:45, 13:30, 16:15, 19:00, 21:45, 00:30</td>\r\n\t</tr><tr>\r\n\t\t<td
125
149
  class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 7 Sat</td><td
@@ -138,58 +162,59 @@ http_interactions:
138
162
  valign=\"top\" colspan=\"1\">Nov 12 Thu</td><td class=\"PrintShowTimesSession\"
139
163
  valign=\"top\" colspan=\"1\">10:45, 13:30, 16:15, 19:00, 21:45, 00:30</td>\r\n\t</tr><tr>\r\n\t\t<td
140
164
  colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesFilm\"
165
+ colspan=\"2\">(DIG)STRAIGHT OUTTA COMPTON (R)</td>\r\n\t</tr><tr>\r\n\t\t<td
166
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 3 Tue</td><td
167
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">21:05, 23:50</td>\r\n\t</tr><tr>\r\n\t\t<td
168
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 4 Wed</td><td
169
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">10:50, 15:35,
170
+ 18:20, 21:05, 23:50</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
171
+ valign=\"top\" colspan=\"1\">Nov 5 Thu</td><td class=\"PrintShowTimesSession\"
172
+ valign=\"top\" colspan=\"1\">09:55, 14:25, 18:55, 00:00</td>\r\n\t</tr><tr>\r\n\t\t<td
173
+ colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesFilm\"
141
174
  colspan=\"2\">(DIG)THE GREEN INFERNO (R)</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
142
- valign=\"top\" colspan=\"1\">Oct 28 Wed</td><td class=\"PrintShowTimesSession\"
143
- valign=\"top\" colspan=\"1\">12:40, 22:05, 00:05</td>\r\n\t</tr><tr>\r\n\t\t<td
144
- class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Oct 29 Thu</td><td
145
- class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">10:45, 12:40,
146
- 22:05, 00:05</td>\r\n\t</tr><tr>\r\n\t\t<td colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td
175
+ valign=\"top\" colspan=\"1\">Nov 3 Tue</td><td class=\"PrintShowTimesSession\"
176
+ valign=\"top\" colspan=\"1\">21:30</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
177
+ valign=\"top\" colspan=\"1\">Nov 4 Wed</td><td class=\"PrintShowTimesSession\"
178
+ valign=\"top\" colspan=\"1\">13:35, 21:30</td>\r\n\t</tr><tr>\r\n\t\t<td colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td
147
179
  class=\"PrintShowTimesFilm\" colspan=\"2\">(DIG)THE INTERN (P)</td>\r\n\t</tr><tr>\r\n\t\t<td
148
- class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Oct 28 Wed</td><td
149
- class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">16:20, 18:40,
150
- 21:00, 23:30</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\" valign=\"top\"
151
- colspan=\"1\">Oct 29 Thu</td><td class=\"PrintShowTimesSession\" valign=\"top\"
152
- colspan=\"1\">11:50, 16:20, 18:40, 21:00, 23:30</td>\r\n\t</tr><tr>\r\n\t\t<td
153
- colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesFilm\"
154
- colspan=\"2\">(DIG)THE LAST WITCH HUNTER (PG)</td>\r\n\t</tr><tr>\r\n\t\t<td
155
- class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Oct 28 Wed</td><td
156
- class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">13:45, 15:50,
157
- 17:55, 20:00, 22:10, 00:15</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
158
- valign=\"top\" colspan=\"1\">Oct 29 Thu</td><td class=\"PrintShowTimesSession\"
159
- valign=\"top\" colspan=\"1\">11:40, 13:45, 15:50, 17:55, 20:00, 22:10, 00:15</td>\r\n\t</tr><tr>\r\n\t\t<td
160
- colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesFilm\"
161
- colspan=\"2\">(DIG)THE MARTIAN (P)</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
162
- valign=\"top\" colspan=\"1\">Oct 28 Wed</td><td class=\"PrintShowTimesSession\"
163
- valign=\"top\" colspan=\"1\">14:00, 16:40, 19:30, 22:20</td>\r\n\t</tr><tr>\r\n\t\t<td
164
- class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Oct 29 Thu</td><td
165
- class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">11:20, 14:00,
166
- 16:40, 19:30, 22:20</td>\r\n\t</tr><tr>\r\n\t\t<td colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td
180
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 3 Tue</td><td
181
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">23:40</td>\r\n\t</tr><tr>\r\n\t\t<td
182
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 4 Wed</td><td
183
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">14:00, 18:40,
184
+ 23:40</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\" valign=\"top\"
185
+ colspan=\"1\">Nov 5 Thu</td><td class=\"PrintShowTimesSession\" valign=\"top\"
186
+ colspan=\"1\">13:15, 17:40</td>\r\n\t</tr><tr>\r\n\t\t<td colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td
187
+ class=\"PrintShowTimesFilm\" colspan=\"2\">(DIG)THE LAST WITCH HUNTER (PG)</td>\r\n\t</tr><tr>\r\n\t\t<td
188
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 3 Tue</td><td
189
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">19:55, 22:00,
190
+ 00:10</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\" valign=\"top\"
191
+ colspan=\"1\">Nov 4 Wed</td><td class=\"PrintShowTimesSession\" valign=\"top\"
192
+ colspan=\"1\">11:30, 13:40, 15:45, 17:50, 19:55, 22:00, 00:10</td>\r\n\t</tr><tr>\r\n\t\t<td
193
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 5 Thu</td><td
194
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">11:10, 15:35,
195
+ 20:00, 22:10, 00:20</td>\r\n\t</tr><tr>\r\n\t\t<td colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td
196
+ class=\"PrintShowTimesFilm\" colspan=\"2\">(DIG)THE MARTIAN (P)</td>\r\n\t</tr><tr>\r\n\t\t<td
197
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 3 Tue</td><td
198
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">21:20</td>\r\n\t</tr><tr>\r\n\t\t<td
199
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 4 Wed</td><td
200
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">11:20, 16:20,
201
+ 21:20</td>\r\n\t</tr><tr>\r\n\t\t<td colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td
167
202
  class=\"PrintShowTimesFilm\" colspan=\"2\">(DIG)WANSEI BACK HOME (G)</td>\r\n\t</tr><tr>\r\n\t\t<td
168
- class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Oct 28 Wed</td><td
169
- class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">14:40</td>\r\n\t</tr><tr>\r\n\t\t<td
170
- class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Oct 29 Thu</td><td
171
- class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">10:30, 14:40,
172
- 19:25</td>\r\n\t</tr><tr>\r\n\t\t<td colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td
173
- class=\"PrintShowTimesFilm\" colspan=\"2\">(DIG)ZINNIA FLOWER (P)</td>\r\n\t</tr><tr>\r\n\t\t<td
174
- class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Oct 28 Wed</td><td
175
- class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">20:10</td>\r\n\t</tr><tr>\r\n\t\t<td
176
- class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Oct 29 Thu</td><td
177
- class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">20:10</td>\r\n\t</tr><tr>\r\n\t\t<td
178
- colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesFilm\"
179
- colspan=\"2\">(GC DIG)BRIDGE OF SPIES (P)</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
180
- valign=\"top\" colspan=\"1\">Oct 28 Wed</td><td class=\"PrintShowTimesSession\"
181
- valign=\"top\" colspan=\"1\">14:55, 23:25</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
182
- valign=\"top\" colspan=\"1\">Oct 29 Thu</td><td class=\"PrintShowTimesSession\"
183
- valign=\"top\" colspan=\"1\">14:55, 23:25</td>\r\n\t</tr><tr>\r\n\t\t<td colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td
184
- class=\"PrintShowTimesFilm\" colspan=\"2\">(GC DIG)CRIMSON PEAK (R)</td>\r\n\t</tr><tr>\r\n\t\t<td
185
- class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Oct 28 Wed</td><td
186
- class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">12:20, 17:50</td>\r\n\t</tr><tr>\r\n\t\t<td
187
- class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Oct 29 Thu</td><td
188
- class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">12:20, 17:50</td>\r\n\t</tr><tr>\r\n\t\t<td
189
- colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesFilm\"
190
- colspan=\"2\">(GC DIG)SPECTRE (PG)</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
191
- valign=\"top\" colspan=\"1\">Nov 5 Thu</td><td class=\"PrintShowTimesSession\"
192
- valign=\"top\" colspan=\"1\">10:50, 13:50, 16:50, 19:50, 22:50</td>\r\n\t</tr><tr>\r\n\t\t<td
203
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 4 Wed</td><td
204
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">12:00, 16:30,
205
+ 19:10</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\" valign=\"top\"
206
+ colspan=\"1\">Nov 5 Thu</td><td class=\"PrintShowTimesSession\" valign=\"top\"
207
+ colspan=\"1\">11:55, 18:05</td>\r\n\t</tr><tr>\r\n\t\t<td colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td
208
+ class=\"PrintShowTimesFilm\" colspan=\"2\">(GC DIG)BURNT (P)</td>\r\n\t</tr><tr>\r\n\t\t<td
209
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 3 Tue</td><td
210
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">20:50, 23:10</td>\r\n\t</tr><tr>\r\n\t\t<td
211
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 4 Wed</td><td
212
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">11:30, 13:50,
213
+ 16:10, 18:30, 20:50, 23:10</td>\r\n\t</tr><tr>\r\n\t\t<td colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td
214
+ class=\"PrintShowTimesFilm\" colspan=\"2\">(GC DIG)SPECTRE (PG15)</td>\r\n\t</tr><tr>\r\n\t\t<td
215
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 5 Thu</td><td
216
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">10:50, 12:10,
217
+ 13:50, 15:10, 16:50, 18:10, 19:50, 21:10, 22:50, 00:10</td>\r\n\t</tr><tr>\r\n\t\t<td
193
218
  class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 6 Fri</td><td
194
219
  class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">10:50, 13:50,
195
220
  16:50, 19:50, 22:50</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
@@ -209,17 +234,11 @@ http_interactions:
209
234
  class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">10:50, 13:50,
210
235
  16:50, 19:50, 22:50</td>\r\n\t</tr><tr>\r\n\t\t<td colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td
211
236
  class=\"PrintShowTimesFilm\" colspan=\"2\">(GC DIG)THE LAST WITCH HUNTER (PG)</td>\r\n\t</tr><tr>\r\n\t\t<td
212
- class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Oct 28 Wed</td><td
213
- class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">13:50, 19:20,
214
- 21:40, 00:00</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\" valign=\"top\"
215
- colspan=\"1\">Oct 29 Thu</td><td class=\"PrintShowTimesSession\" valign=\"top\"
216
- colspan=\"1\">11:30, 13:50, 19:20, 21:40, 00:00</td>\r\n\t</tr><tr>\r\n\t\t<td
217
- colspan=\"2\"></td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesFilm\"
218
- colspan=\"2\">(GC DIG)THE MARTIAN (P)</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
219
- valign=\"top\" colspan=\"1\">Oct 28 Wed</td><td class=\"PrintShowTimesSession\"
220
- valign=\"top\" colspan=\"1\">16:15, 20:20</td>\r\n\t</tr><tr>\r\n\t\t<td class=\"PrintShowTimesDay\"
221
- valign=\"top\" colspan=\"1\">Oct 29 Thu</td><td class=\"PrintShowTimesSession\"
222
- valign=\"top\" colspan=\"1\">16:15, 20:20</td>\r\n\t</tr>\r\n</table>\r\n\t\t\t</form>\r\n\t</body>\r\n</HTML>\r\n"
237
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 3 Tue</td><td
238
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">19:45, 22:15</td>\r\n\t</tr><tr>\r\n\t\t<td
239
+ class=\"PrintShowTimesDay\" valign=\"top\" colspan=\"1\">Nov 4 Wed</td><td
240
+ class=\"PrintShowTimesSession\" valign=\"top\" colspan=\"1\">12:15, 14:45,
241
+ 17:15, 19:45, 22:15</td>\r\n\t</tr>\r\n</table>\r\n\t\t\t</form>\r\n\t</body>\r\n</HTML>\r\n"
223
242
  http_version:
224
- recorded_at: Wed, 28 Oct 2015 03:57:17 GMT
243
+ recorded_at: Tue, 03 Nov 2015 11:17:02 GMT
225
244
  recorded_with: VCR 2.9.3