fandango 1.0.0 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +0 -1
- data/.irbrc +2 -3
- data/.ruby-version +1 -0
- data/.travis.yml +2 -2
- data/Gemfile +2 -0
- data/Gemfile.lock +37 -0
- data/README.md +45 -22
- data/Rakefile +2 -2
- data/fandango.gemspec +3 -3
- data/lib/fandango.rb +13 -35
- data/lib/fandango/api.rb +14 -0
- data/lib/fandango/api/movies_near.rb +36 -0
- data/lib/fandango/api/theater_showtimes.rb +47 -0
- data/lib/fandango/movie.rb +34 -18
- data/lib/fandango/showtime.rb +18 -0
- data/lib/fandango/theater.rb +44 -35
- data/lib/fandango/version.rb +1 -1
- data/spec/api/movies_near.spec.rb +30 -0
- data/spec/api/theater_showtimes.spec.rb +36 -0
- data/spec/movie.spec.rb +17 -18
- data/spec/showtime.spec.rb +21 -0
- data/spec/spec_helper.rb +5 -10
- data/spec/support/fixture_helpers.rb +14 -0
- data/spec/support/fixtures/movies_near_me_73142.rss +185 -1
- data/spec/support/fixtures/{movies_near_me_73142.yaml → movies_near_me_73142.yml} +70 -70
- data/spec/support/fixtures/showtimes_amcquailspringsmall24_aaktw_2016_08_01.html +7264 -0
- data/spec/support/fixtures/theater_showtimes_amcquailspringsmall24.yml +203 -0
- data/spec/support/fixtures/theater_showtimes_amcquailspringsmall24_tomorrow.yml +190 -0
- data/spec/support/minitest.rb +9 -0
- data/spec/support/vcr.rb +6 -0
- data/spec/support/vcr_cassettes/theater_showtimes_amcquailspringsmall24.yml +10974 -0
- data/spec/support/vcr_cassettes/theater_showtimes_amcquailspringsmall24_tomorrow.yml +10759 -0
- data/spec/theater.spec.rb +58 -12
- metadata +79 -48
- data/.rvmrc +0 -1
- data/lib/fandango/parser.rb +0 -39
- data/spec/fandango.spec.rb +0 -41
- data/spec/parser.spec.rb +0 -12
- data/spec/support/fixtures/item.html +0 -1
- data/spec/support/helpers.rb +0 -25
data/lib/fandango/version.rb
CHANGED
@@ -0,0 +1,30 @@
|
|
1
|
+
require_relative '../spec_helper'
|
2
|
+
require 'support/vcr'
|
3
|
+
require 'support/fixture_helpers'
|
4
|
+
|
5
|
+
module Fandango
|
6
|
+
describe MoviesNear do
|
7
|
+
|
8
|
+
include FixtureHelpers
|
9
|
+
|
10
|
+
it 'returns Theaters and Movies playing at each' do
|
11
|
+
VCR.use_cassette 'movies_near_me_73142' do
|
12
|
+
result = Fandango.movies_near(73142)
|
13
|
+
fixture_yaml = fixture_file_content('movies_near_me_73142.yml')
|
14
|
+
result.to_yaml.must_equal fixture_yaml
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
it 'raises error if status code is not 200' do
|
19
|
+
response = MiniTest::Mock.new
|
20
|
+
response.expect(:status, ['500', 'not ok'])
|
21
|
+
|
22
|
+
MoviesNear.stub(:request, response) do
|
23
|
+
proc do
|
24
|
+
Fandango.movies_near('_')
|
25
|
+
end.must_raise(MoviesNear::BadResponse)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
require_relative '../spec_helper'
|
2
|
+
require 'support/vcr'
|
3
|
+
require 'support/fixture_helpers'
|
4
|
+
|
5
|
+
module Fandango
|
6
|
+
describe TheaterShowtimes do
|
7
|
+
|
8
|
+
include FixtureHelpers
|
9
|
+
|
10
|
+
it 'requests and parses showtimes for given URL into Movies with Showtimes' do
|
11
|
+
VCR.use_cassette 'theater_showtimes_amcquailspringsmall24' do
|
12
|
+
url = 'http://www.fandango.com/amcquailspringsmall24_aaktw/theaterpage?wssaffid=11836&wssac=123'
|
13
|
+
|
14
|
+
movies = Fandango.theater_showtimes(url)
|
15
|
+
|
16
|
+
fixture_yaml = fixture_file_content('theater_showtimes_amcquailspringsmall24.yml')
|
17
|
+
movies.to_yaml.must_equal fixture_yaml
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
it 'requests and parses showtimes for given theater id and date' do
|
22
|
+
VCR.use_cassette 'theater_showtimes_amcquailspringsmall24_tomorrow' do
|
23
|
+
tomorrow = Date.new(2017, 1, 5)
|
24
|
+
|
25
|
+
movies = Fandango.theater_showtimes(
|
26
|
+
:theater_id => 'aaktw',
|
27
|
+
:date => tomorrow,
|
28
|
+
)
|
29
|
+
|
30
|
+
fixture_yaml = fixture_file_content('theater_showtimes_amcquailspringsmall24_tomorrow.yml')
|
31
|
+
movies.to_yaml.must_equal fixture_yaml
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
36
|
+
end
|
data/spec/movie.spec.rb
CHANGED
@@ -1,24 +1,23 @@
|
|
1
|
-
|
1
|
+
require_relative 'spec_helper'
|
2
|
+
require 'support/fixture_helpers'
|
2
3
|
|
3
|
-
|
4
|
+
module Fandango
|
5
|
+
describe Movie do
|
4
6
|
|
5
|
-
|
6
|
-
|
7
|
-
array
|
8
|
-
|
9
|
-
|
7
|
+
include FixtureHelpers
|
8
|
+
|
9
|
+
specify '.parse parses RSS item into array of movie atts' do
|
10
|
+
xml = fixture_file_content('movies_near_me_73142.rss')
|
11
|
+
cdata = Nokogiri.XML(xml).at_css('item').at_css('description')
|
12
|
+
li = Nokogiri.HTML(cdata.content).at_css('li')
|
13
|
+
|
14
|
+
movies = Movie.parse(li)
|
15
|
+
|
16
|
+
movies.must_equal(
|
10
17
|
title: 'Abraham Lincoln: Vampire Hunter',
|
11
18
|
id: '141897',
|
12
|
-
|
13
|
-
|
14
|
-
title: 'The Amazing Spider-Man 3D',
|
15
|
-
id: '141122',
|
16
|
-
},
|
17
|
-
{
|
18
|
-
title: 'The Amazing Spider-Man',
|
19
|
-
id: '126975',
|
20
|
-
},
|
21
|
-
]
|
22
|
-
end
|
19
|
+
)
|
20
|
+
end
|
23
21
|
|
22
|
+
end
|
24
23
|
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require_relative 'spec_helper'
|
2
|
+
require 'support/fixture_helpers'
|
3
|
+
|
4
|
+
module Fandango
|
5
|
+
describe Showtime do
|
6
|
+
|
7
|
+
include FixtureHelpers
|
8
|
+
|
9
|
+
specify '.parse parses node into Showtime' do
|
10
|
+
html = fixture_file_content('showtimes_amcquailspringsmall24_aaktw_2016_08_01.html')
|
11
|
+
node = Nokogiri.HTML(html).at_css('.showtimes-movie-container')
|
12
|
+
|
13
|
+
showtime = Showtime.parse(node)
|
14
|
+
|
15
|
+
showtime.must_equal(
|
16
|
+
datetime: DateTime.parse('2016-08-01T11:30:00-05:00')
|
17
|
+
)
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
end
|
data/spec/spec_helper.rb
CHANGED
@@ -1,14 +1,9 @@
|
|
1
1
|
require 'bundler/setup'
|
2
|
-
Bundler.
|
2
|
+
Bundler.setup :default, :test
|
3
3
|
|
4
|
-
require '
|
5
|
-
require 'vcr'
|
4
|
+
require 'fandango'
|
6
5
|
|
7
|
-
|
8
|
-
Dir['./spec/support/**/*.rb'].each { |f| require f }
|
6
|
+
$LOAD_PATH.unshift __dir__
|
9
7
|
|
10
|
-
|
11
|
-
|
12
|
-
c.cassette_library_dir = 'spec/support/vcr_cassettes'
|
13
|
-
c.hook_into :fakeweb
|
14
|
-
end
|
8
|
+
require 'support/minitest'
|
9
|
+
require 'awesome_print'
|
@@ -0,0 +1,14 @@
|
|
1
|
+
require 'pathname'
|
2
|
+
|
3
|
+
module FixtureHelpers
|
4
|
+
|
5
|
+
def fixture_file(file_name)
|
6
|
+
fixtures_path = Pathname.new('./spec/support/fixtures/')
|
7
|
+
File.open(fixtures_path + file_name)
|
8
|
+
end
|
9
|
+
|
10
|
+
def fixture_file_content(file_name)
|
11
|
+
fixture_file(file_name).read
|
12
|
+
end
|
13
|
+
|
14
|
+
end
|
@@ -1 +1,185 @@
|
|
1
|
-
<rss version="2.0"><channel><title>Fandango.com Movies Near Me</title><link><![CDATA[http://www.fandango.com/movietimes?wssaffid=11836&wssac=123]]></link><description>Review movie listings for local theaters near you on Fandango.com</description><language>en-us</language><copyright>Copyright 2012 Fandango</copyright><pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate><ttl>1440</ttl><image><url>http://images.fandango.com/r87.6/images/global/fandango_rss_logo.gif</url><title>Fandango.com Movies Near Me</title><link><![CDATA[http://www.fandango.com/movietimes?wssaffid=11836&wssac=123]]></link></image><item><title><![CDATA[AMC Quail Springs Mall 24]]></title><link><![CDATA[http://www.fandango.com/amcquailspringsmall24_aaktw/theaterpage?wssaffid=11836&wssac=123]]></link><description><![CDATA[<p>2501 West Memorial Oklahoma City, OK 73134</p><p><ul><li><a href="http://www.fandango.com/abraham+lincoln3a+vampire+hunter_141897/movietimes?location=73134&wssaffid=11836&wssac=123">Abraham Lincoln: Vampire Hunter</a></li><li><a href="http://www.fandango.com/the+amazing+spiderman+3d_141122/movietimes?location=73134&wssaffid=11836&wssac=123">The Amazing Spider-Man 3D</a></li><li><a href="http://www.fandango.com/the+amazing+spiderman_126975/movietimes?location=73134&wssaffid=11836&wssac=123">The Amazing Spider-Man</a></li><li><a href="http://www.fandango.com/the+amazing+spiderman3a+an+imax+3d+experience_153829/movietimes?location=73134&wssaffid=11836&wssac=123">The Amazing Spider-Man: An IMAX 3D Experience</a></li><li><a href="http://www.fandango.com/battleship_130096/movietimes?location=73134&wssaffid=11836&wssac=123">Battleship</a></li><li><a href="http://www.fandango.com/the+best+exotic+marigold+hotel_147777/movietimes?location=73134&wssaffid=11836&wssac=123">The Best Exotic Marigold Hotel</a></li><li><a href="http://www.fandango.com/brave_136016/movietimes?location=73134&wssaffid=11836&wssac=123">Brave</a></li><li><a href="http://www.fandango.com/bully_145958/movietimes?location=73134&wssaffid=11836&wssac=123">Bully</a></li><li><a href="http://www.fandango.com/chernobyl+diaries_152960/movietimes?location=73134&wssaffid=11836&wssac=123">Chernobyl Diaries</a></li><li><a href="http://www.fandango.com/chimpanzee_116882/movietimes?location=73134&wssaffid=11836&wssac=123">Chimpanzee</a></li><li><a href="http://www.fandango.com/dark+shadows_147176/movietimes?location=73134&wssaffid=11836&wssac=123">Dark Shadows</a></li><li><a href="http://www.fandango.com/the+dictator_145763/movietimes?location=73134&wssaffid=11836&wssac=123">The Dictator</a></li><li><a href="http://www.fandango.com/happiest+baby+and+happiest+toddler+live+with+dr.+karp_154921/movietimes?location=73134&wssaffid=11836&wssac=123">Happiest Baby and Happiest Toddler Live With Dr. Karp</a></li><li><a href="http://www.fandango.com/the+hunger+games_136944/movietimes?location=73134&wssaffid=11836&wssac=123">The Hunger Games</a></li><li><a href="http://www.fandango.com/the+lucky+one_145457/movietimes?location=73134&wssaffid=11836&wssac=123">The Lucky One</a></li><li><a href="http://www.fandango.com/madagascar+33a+europe27s+most+wanted+3d_151457/movietimes?location=73134&wssaffid=11836&wssac=123">Madagascar 3: Europe's Most Wanted 3D</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers_30154/movietimes?location=73134&wssaffid=11836&wssac=123">Marvel's The Avengers</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers+3d_151545/movietimes?location=73134&wssaffid=11836&wssac=123">Marvel's The Avengers 3D</a></li><li><a href="http://www.fandango.com/men+in+black+iii_135737/movietimes?location=73134&wssaffid=11836&wssac=123">Men in Black III</a></li><li><a href="http://www.fandango.com/men+in+black+iii+3d_147264/movietimes?location=73134&wssaffid=11836&wssac=123">Men in Black III 3D</a></li><li><a href="http://www.fandango.com/men+in+black+iii3a+an+imax+3d+experience_148659/movietimes?location=73134&wssaffid=11836&wssac=123">Men in Black III: An IMAX 3D Experience</a></li><li><a href="http://www.fandango.com/national+theater+live3a+frankenstein+original+casting_137637/movietimes?location=73134&wssaffid=11836&wssac=123">National Theater Live: Frankenstein (Original Casting)</a></li><li><a href="http://www.fandango.com/national+theater+live3a+frankenstein+reverse+casting_142883/movietimes?location=73134&wssaffid=11836&wssac=123">National Theater Live: Frankenstein (Reverse Casting)</a></li><li><a href="http://www.fandango.com/the+pirates+band+of+misfits_146664/movietimes?location=73134&wssaffid=11836&wssac=123">The Pirates! Band of Misfits</a></li><li><a href="http://www.fandango.com/prometheus+3d_152981/movietimes?location=73134&wssaffid=11836&wssac=123">Prometheus 3D</a></li><li><a href="http://www.fandango.com/prometheus3a+an+imax+3d+experience_153676/movietimes?location=73134&wssaffid=11836&wssac=123">Prometheus: An IMAX 3D Experience</a></li><li><a href="http://www.fandango.com/ratatouille_98260/movietimes?location=73134&wssaffid=11836&wssac=123">Ratatouille</a></li><li><a href="http://www.fandango.com/snow+white+and+the+huntsman_141533/movietimes?location=73134&wssaffid=11836&wssac=123">Snow White and the Huntsman</a></li><li><a href="http://www.fandango.com/ted_136691/movietimes?location=73134&wssaffid=11836&wssac=123">Ted</a></li><li><a href="http://www.fandango.com/the+tempest+starring+christopher+plummer_155187/movietimes?location=73134&wssaffid=11836&wssac=123">The Tempest Starring Christopher Plummer</a></li><li><a href="http://www.fandango.com/that27s+my+boy_149081/movietimes?location=73134&wssaffid=11836&wssac=123">That's My Boy</a></li><li><a href="http://www.fandango.com/think+like+a+man_147732/movietimes?location=73134&wssaffid=11836&wssac=123">Think Like a Man</a></li><li><a href="http://www.fandango.com/toy+story+3_124782/movietimes?location=73134&wssaffid=11836&wssac=123">Toy Story 3</a></li><li><a href="http://www.fandango.com/up_114055/movietimes?location=73134&wssaffid=11836&wssac=123">Up</a></li><li><a href="http://www.fandango.com/walle_102903/movietimes?location=73134&wssaffid=11836&wssac=123">WALL-E</a></li><li><a href="http://www.fandango.com/what+to+expect+when+you27re+expecting_120322/movietimes?location=73134&wssaffid=11836&wssac=123">What to Expect When You're Expecting</a></li></ul></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]></description><author>affiliates@fandango.com</author><category>Movies Near Me</category><pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source></item><item><title><![CDATA[Northpark 7]]></title><link><![CDATA[http://www.fandango.com/northpark7_aaicu/theaterpage?wssaffid=11836&wssac=123]]></link><description><![CDATA[<p>12100 N. May Ave Oklahoma City, OK 73120</p><p><ul><li><a href="http://www.fandango.com/21+jump+street_131465/movietimes?location=73120&wssaffid=11836&wssac=123">21 Jump Street</a></li><li><a href="http://www.fandango.com/alvin+and+the+chipmunks3a+chipwrecked_141127/movietimes?location=73120&wssaffid=11836&wssac=123">Alvin and the Chipmunks: Chipwrecked</a></li><li><a href="http://www.fandango.com/american+reunion_145402/movietimes?location=73120&wssaffid=11836&wssac=123">American Reunion</a></li><li><a href="http://www.fandango.com/dr.+seuss27+the+lorax_51897/movietimes?location=73120&wssaffid=11836&wssac=123">Dr. Seuss' The Lorax</a></li><li><a href="http://www.fandango.com/dr.+seuss27+the+lorax+3d_148858/movietimes?location=73120&wssaffid=11836&wssac=123">Dr. Seuss' The Lorax 3D</a></li><li><a href="http://www.fandango.com/john+carter_130633/movietimes?location=73120&wssaffid=11836&wssac=123">John Carter</a></li><li><a href="http://www.fandango.com/john+carter+3d_147144/movietimes?location=73120&wssaffid=11836&wssac=123">John Carter 3D</a></li><li><a href="http://www.fandango.com/journey+23a+the+mysterious+island_135727/movietimes?location=73120&wssaffid=11836&wssac=123">Journey 2: The Mysterious Island</a></li><li><a href="http://www.fandango.com/mirror+mirror_143278/movietimes?location=73120&wssaffid=11836&wssac=123">Mirror Mirror</a></li><li><a href="http://www.fandango.com/wrath+of+the+titans_140654/movietimes?location=73120&wssaffid=11836&wssac=123">Wrath of the Titans</a></li></ul></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]></description><author>affiliates@fandango.com</author><category>Movies Near Me</category><pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source></item><item><title><![CDATA[Dickinson Penn Square 10]]></title><link><![CDATA[http://www.fandango.com/dickinsonpennsquare10_aagtg/theaterpage?wssaffid=11836&wssac=123]]></link><description><![CDATA[<p>1901 NW Expressway Oklahoma City, OK 73118</p><p><ul><li><a href="http://www.fandango.com/battleship_130096/movietimes?location=73118&wssaffid=11836&wssac=123">Battleship</a></li><li><a href="http://www.fandango.com/chernobyl+diaries_152960/movietimes?location=73118&wssaffid=11836&wssac=123">Chernobyl Diaries</a></li><li><a href="http://www.fandango.com/dark+shadows_147176/movietimes?location=73118&wssaffid=11836&wssac=123">Dark Shadows</a></li><li><a href="http://www.fandango.com/the+dictator_145763/movietimes?location=73118&wssaffid=11836&wssac=123">The Dictator</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers_30154/movietimes?location=73118&wssaffid=11836&wssac=123">Marvel's The Avengers</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers+3d_151545/movietimes?location=73118&wssaffid=11836&wssac=123">Marvel's The Avengers 3D</a></li><li><a href="http://www.fandango.com/men+in+black+iii_135737/movietimes?location=73118&wssaffid=11836&wssac=123">Men in Black III</a></li><li><a href="http://www.fandango.com/men+in+black+iii+3d_147264/movietimes?location=73118&wssaffid=11836&wssac=123">Men in Black III 3D</a></li><li><a href="http://www.fandango.com/what+to+expect+when+you27re+expecting_120322/movietimes?location=73118&wssaffid=11836&wssac=123">What to Expect When You're Expecting</a></li></ul></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]></description><author>affiliates@fandango.com</author><category>Movies Near Me</category><pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source></item><item><title><![CDATA[B&B Theatres Windsor 10]]></title><link><![CDATA[http://www.fandango.com/bandbtheatreswindsor10_aavud/theaterpage?wssaffid=11836&wssac=123]]></link><description><![CDATA[<p>4623 A. N.W. 23rd St. Oklahoma City, OK 73127</p><p><ul><li><a href="http://www.fandango.com/battleship_130096/movietimes?location=73127&wssaffid=11836&wssac=123">Battleship</a></li><li><a href="http://www.fandango.com/chernobyl+diaries_152960/movietimes?location=73127&wssaffid=11836&wssac=123">Chernobyl Diaries</a></li><li><a href="http://www.fandango.com/dark+shadows_147176/movietimes?location=73127&wssaffid=11836&wssac=123">Dark Shadows</a></li><li><a href="http://www.fandango.com/the+dictator_145763/movietimes?location=73127&wssaffid=11836&wssac=123">The Dictator</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers_30154/movietimes?location=73127&wssaffid=11836&wssac=123">Marvel's The Avengers</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers+3d_151545/movietimes?location=73127&wssaffid=11836&wssac=123">Marvel's The Avengers 3D</a></li><li><a href="http://www.fandango.com/men+in+black+iii_135737/movietimes?location=73127&wssaffid=11836&wssac=123">Men in Black III</a></li><li><a href="http://www.fandango.com/men+in+black+iii+3d_147264/movietimes?location=73127&wssaffid=11836&wssac=123">Men in Black III 3D</a></li><li><a href="http://www.fandango.com/what+to+expect+when+you27re+expecting_120322/movietimes?location=73127&wssaffid=11836&wssac=123">What to Expect When You're Expecting</a></li></ul></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]></description><author>affiliates@fandango.com</author><category>Movies Near Me</category><pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source></item><item><title><![CDATA[Kickingbird Cinema]]></title><link><![CDATA[http://www.fandango.com/kickingbirdcinema_aaenx/theaterpage?wssaffid=11836&wssac=123]]></link><description><![CDATA[<p>1225 East Danforth Rd Edmond, OK 73083</p><p></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]></description><author>affiliates@fandango.com</author><category>Movies Near Me</category><pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source></item><item><title><![CDATA[Cinemark Tinseltown]]></title><link><![CDATA[http://www.fandango.com/cinemarktinseltown_aaitg/theaterpage?wssaffid=11836&wssac=123]]></link><description><![CDATA[<p>6001 Martin Luther King Blvd. Oklahoma City, OK 73111</p><p><ul><li><a href="http://www.fandango.com/the+amazing+spiderman+3d_141122/movietimes?location=73111&wssaffid=11836&wssac=123">The Amazing Spider-Man 3D</a></li><li><a href="http://www.fandango.com/anna+bolena+met+summer+encore_154543/movietimes?location=73111&wssaffid=11836&wssac=123">Anna Bolena Met Summer Encore</a></li><li><a href="http://www.fandango.com/battleship_130096/movietimes?location=73111&wssaffid=11836&wssac=123">Battleship</a></li><li><a href="http://www.fandango.com/bernie_149564/movietimes?location=73111&wssaffid=11836&wssac=123">Bernie</a></li><li><a href="http://www.fandango.com/the+best+exotic+marigold+hotel_147777/movietimes?location=73111&wssaffid=11836&wssac=123">The Best Exotic Marigold Hotel</a></li><li><a href="http://www.fandango.com/cabaret_104412/movietimes?location=73111&wssaffid=11836&wssac=123">Cabaret</a></li><li><a href="http://www.fandango.com/chernobyl+diaries_152960/movietimes?location=73111&wssaffid=11836&wssac=123">Chernobyl Diaries</a></li><li><a href="http://www.fandango.com/citizen+kane_1439/movietimes?location=73111&wssaffid=11836&wssac=123">Citizen Kane</a></li><li><a href="http://www.fandango.com/a+clockwork+orange_370/movietimes?location=73111&wssaffid=11836&wssac=123">A Clockwork Orange</a></li><li><a href="http://www.fandango.com/cool+hand+luke_15758/movietimes?location=73111&wssaffid=11836&wssac=123">Cool Hand Luke</a></li><li><a href="http://www.fandango.com/cowgirls+n27+angels_154322/movietimes?location=73111&wssaffid=11836&wssac=123">Cowgirls n' Angels</a></li><li><a href="http://www.fandango.com/crooked+arrows_154422/movietimes?location=73111&wssaffid=11836&wssac=123">Crooked Arrows</a></li><li><a href="http://www.fandango.com/dark+shadows_147176/movietimes?location=73111&wssaffid=11836&wssac=123">Dark Shadows</a></li><li><a href="http://www.fandango.com/dci+2012+tour+premiere_154934/movietimes?location=73111&wssaffid=11836&wssac=123">DCI 2012 Tour Premiere</a></li><li><a href="http://www.fandango.com/der+rosenkavalier+met+summer+encore_154548/movietimes?location=73111&wssaffid=11836&wssac=123">Der Rosenkavalier Met Summer Encore</a></li><li><a href="http://www.fandango.com/diary+of+a+wimpy+kid3a+rodrick+rules_139535/movietimes?location=73111&wssaffid=11836&wssac=123">Diary of a Wimpy Kid: Rodrick Rules</a></li><li><a href="http://www.fandango.com/the+dictator_145763/movietimes?location=73111&wssaffid=11836&wssac=123">The Dictator</a></li><li><a href="http://www.fandango.com/dolphin+tale_140092/movietimes?location=73111&wssaffid=11836&wssac=123">Dolphin Tale</a></li><li><a href="http://www.fandango.com/don+giovanni+met+summer+encore_154545/movietimes?location=73111&wssaffid=11836&wssac=123">Don Giovanni Met Summer Encore</a></li><li><a href="http://www.fandango.com/the+exorcist+1973_90729/movietimes?location=73111&wssaffid=11836&wssac=123">The Exorcist (1973)</a></li><li><a href="http://www.fandango.com/happiest+baby+and+happiest+toddler+live+with+dr.+karp_154921/movietimes?location=73111&wssaffid=11836&wssac=123">Happiest Baby and Happiest Toddler Live With Dr. Karp</a></li><li><a href="http://www.fandango.com/happy+feet+two_149198/movietimes?location=73111&wssaffid=11836&wssac=123">Happy Feet Two</a></li><li><a href="http://www.fandango.com/the+hunger+games_136944/movietimes?location=73111&wssaffid=11836&wssac=123">The Hunger Games</a></li><li><a href="http://www.fandango.com/journey+23a+the+mysterious+island_135727/movietimes?location=73111&wssaffid=11836&wssac=123">Journey 2: The Mysterious Island</a></li><li><a href="http://www.fandango.com/kung+fu+panda+2_119854/movietimes?location=73111&wssaffid=11836&wssac=123">Kung Fu Panda 2</a></li><li><a href="http://www.fandango.com/le+comte+ory+met+summer+encore_154544/movietimes?location=73111&wssaffid=11836&wssac=123">Le Comte Ory Met Summer Encore</a></li><li><a href="http://www.fandango.com/les+contes+de28099hoffmann+met+summer+encore_154546/movietimes?location=73111&wssaffid=11836&wssac=123">Les Contes d’Hoffmann Met Summer Encore</a></li><li><a href="http://www.fandango.com/linkin+park+living+things+concert+event_156066/movietimes?location=73111&wssaffid=11836&wssac=123">Linkin Park Living Things Concert Event</a></li><li><a href="http://www.fandango.com/lucia+di+lammermoor+met+summer+encore_154547/movietimes?location=73111&wssaffid=11836&wssac=123">Lucia Di Lammermoor Met Summer Encore</a></li><li><a href="http://www.fandango.com/madagascar+33a+europe27s+most+wanted+3d_151457/movietimes?location=73111&wssaffid=11836&wssac=123">Madagascar 3: Europe's Most Wanted 3D</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers_30154/movietimes?location=73111&wssaffid=11836&wssac=123">Marvel's The Avengers</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers+3d_151545/movietimes?location=73111&wssaffid=11836&wssac=123">Marvel's The Avengers 3D</a></li><li><a href="http://www.fandango.com/men+in+black+iii_135737/movietimes?location=73111&wssaffid=11836&wssac=123">Men in Black III</a></li><li><a href="http://www.fandango.com/men+in+black+iii+3d_147264/movietimes?location=73111&wssaffid=11836&wssac=123">Men in Black III 3D</a></li><li><a href="http://www.fandango.com/national+theater+live3a+frankenstein+original+casting_137637/movietimes?location=73111&wssaffid=11836&wssac=123">National Theater Live: Frankenstein (Original Casting)</a></li><li><a href="http://www.fandango.com/national+theater+live3a+frankenstein+reverse+casting_142883/movietimes?location=73111&wssaffid=11836&wssac=123">National Theater Live: Frankenstein (Reverse Casting)</a></li><li><a href="http://www.fandango.com/north+by+northwest_631/movietimes?location=73111&wssaffid=11836&wssac=123">North by Northwest</a></li><li><a href="http://www.fandango.com/prometheus+3d_152981/movietimes?location=73111&wssaffid=11836&wssac=123">Prometheus 3D</a></li><li><a href="http://www.fandango.com/puss+in+boots_131567/movietimes?location=73111&wssaffid=11836&wssac=123">Puss in Boots</a></li><li><a href="http://www.fandango.com/rio+the+movie_131571/movietimes?location=73111&wssaffid=11836&wssac=123">Rio The Movie</a></li><li><a href="http://www.fandango.com/the+searchers_1926/movietimes?location=73111&wssaffid=11836&wssac=123">The Searchers</a></li><li><a href="http://www.fandango.com/snow+white+and+the+huntsman_141533/movietimes?location=73111&wssaffid=11836&wssac=123">Snow White and the Huntsman</a></li><li><a href="http://www.fandango.com/star+trek3a+the+next+generation+25th+anniversary+event_155848/movietimes?location=73111&wssaffid=11836&wssac=123">Star Trek: The Next Generation 25th Anniversary Event</a></li><li><a href="http://www.fandango.com/tcm+presents+singin27+in+the+rain+60th+anniversary+event_155652/movietimes?location=73111&wssaffid=11836&wssac=123">TCM Presents Singin' in the Rain 60th Anniversary Event</a></li><li><a href="http://www.fandango.com/the+tempest+starring+christopher+plummer_155187/movietimes?location=73111&wssaffid=11836&wssac=123">The Tempest Starring Christopher Plummer</a></li><li><a href="http://www.fandango.com/that27s+entertainment_95288/movietimes?location=73111&wssaffid=11836&wssac=123">That's Entertainment!</a></li><li><a href="http://www.fandango.com/think+like+a+man_147732/movietimes?location=73111&wssaffid=11836&wssac=123">Think Like a Man</a></li><li><a href="http://www.fandango.com/what+to+expect+when+you27re+expecting_120322/movietimes?location=73111&wssaffid=11836&wssac=123">What to Expect When You're Expecting</a></li><li><a href="http://www.fandango.com/winnie+the+pooh_141120/movietimes?location=73111&wssaffid=11836&wssac=123">Winnie the Pooh</a></li><li><a href="http://www.fandango.com/yogi+bear_32983/movietimes?location=73111&wssaffid=11836&wssac=123">Yogi Bear</a></li></ul></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]></description><author>affiliates@fandango.com</author><category>Movies Near Me</category><pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source></item><item><title><![CDATA[Yukon Movies 5]]></title><link><![CDATA[http://www.fandango.com/yukonmovies5_aaict/theaterpage?wssaffid=11836&wssac=123]]></link><description><![CDATA[<p>1219 Garth Brooks Rd. Yukon, OK 73099</p><p><ul><li><a href="http://www.fandango.com/battleship_130096/movietimes?location=73099&wssaffid=11836&wssac=123">Battleship</a></li><li><a href="http://www.fandango.com/chernobyl+diaries_152960/movietimes?location=73099&wssaffid=11836&wssac=123">Chernobyl Diaries</a></li><li><a href="http://www.fandango.com/the+dictator_145763/movietimes?location=73099&wssaffid=11836&wssac=123">The Dictator</a></li><li><a href="http://www.fandango.com/what+to+expect+when+you27re+expecting_120322/movietimes?location=73099&wssaffid=11836&wssac=123">What to Expect When You're Expecting</a></li></ul></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]></description><author>affiliates@fandango.com</author><category>Movies Near Me</category><pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source></item><item><title><![CDATA[OmniDome Theatre]]></title><link><![CDATA[http://www.fandango.com/omnidometheatre_aaopy/theaterpage?wssaffid=11836&wssac=123]]></link><description><![CDATA[<p>2100 NE 52nd Street Oklahoma City, OK 73111</p><p><ul><li><a href="http://www.fandango.com/tornado+alley_140948/movietimes?location=73111&wssaffid=11836&wssac=123">Tornado Alley</a></li></ul></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]></description><author>affiliates@fandango.com</author><category>Movies Near Me</category><pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source></item><item><title><![CDATA[Dickinson West End Pointe 8 Theatre]]></title><link><![CDATA[http://www.fandango.com/dickinsonwestendpointe8theatre_aauol/theaterpage?wssaffid=11836&wssac=123]]></link><description><![CDATA[<p>12825 NW 10th Yukon, OK 73099</p><p><ul><li><a href="http://www.fandango.com/21+jump+street_131465/movietimes?location=73099&wssaffid=11836&wssac=123">21 Jump Street</a></li><li><a href="http://www.fandango.com/dark+shadows_147176/movietimes?location=73099&wssaffid=11836&wssac=123">Dark Shadows</a></li><li><a href="http://www.fandango.com/the+hunger+games_136944/movietimes?location=73099&wssaffid=11836&wssac=123">The Hunger Games</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers_30154/movietimes?location=73099&wssaffid=11836&wssac=123">Marvel's The Avengers</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers+3d_151545/movietimes?location=73099&wssaffid=11836&wssac=123">Marvel's The Avengers 3D</a></li><li><a href="http://www.fandango.com/men+in+black+iii_135737/movietimes?location=73099&wssaffid=11836&wssac=123">Men in Black III</a></li><li><a href="http://www.fandango.com/men+in+black+iii+3d_147264/movietimes?location=73099&wssaffid=11836&wssac=123">Men in Black III 3D</a></li><li><a href="http://www.fandango.com/mirror+mirror_143278/movietimes?location=73099&wssaffid=11836&wssac=123">Mirror Mirror</a></li><li><a href="http://www.fandango.com/the+pirates+band+of+misfits_146664/movietimes?location=73099&wssaffid=11836&wssac=123">The Pirates! Band of Misfits</a></li></ul></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]></description><author>affiliates@fandango.com</author><category>Movies Near Me</category><pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source></item><item><title><![CDATA[Harkins Cine Capri Bricktown]]></title><link><![CDATA[http://www.fandango.com/harkinscinecapribricktown_aaswz/theaterpage?wssaffid=11836&wssac=123]]></link><description><![CDATA[<p>150 East Reno Ave. Oklahoma City, OK 73104</p><p><ul><li><a href="http://www.fandango.com/battleship_130096/movietimes?location=73104&wssaffid=11836&wssac=123">Battleship</a></li><li><a href="http://www.fandango.com/the+best+exotic+marigold+hotel_147777/movietimes?location=73104&wssaffid=11836&wssac=123">The Best Exotic Marigold Hotel</a></li><li><a href="http://www.fandango.com/chernobyl+diaries_152960/movietimes?location=73104&wssaffid=11836&wssac=123">Chernobyl Diaries</a></li><li><a href="http://www.fandango.com/cowgirls+n27+angels_154322/movietimes?location=73104&wssaffid=11836&wssac=123">Cowgirls n' Angels</a></li><li><a href="http://www.fandango.com/dark+shadows_147176/movietimes?location=73104&wssaffid=11836&wssac=123">Dark Shadows</a></li><li><a href="http://www.fandango.com/the+dictator_145763/movietimes?location=73104&wssaffid=11836&wssac=123">The Dictator</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers_30154/movietimes?location=73104&wssaffid=11836&wssac=123">Marvel's The Avengers</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers+3d_151545/movietimes?location=73104&wssaffid=11836&wssac=123">Marvel's The Avengers 3D</a></li><li><a href="http://www.fandango.com/men+in+black+iii_135737/movietimes?location=73104&wssaffid=11836&wssac=123">Men in Black III</a></li><li><a href="http://www.fandango.com/men+in+black+iii+3d_147264/movietimes?location=73104&wssaffid=11836&wssac=123">Men in Black III 3D</a></li><li><a href="http://www.fandango.com/snow+white+and+the+huntsman_141533/movietimes?location=73104&wssaffid=11836&wssac=123">Snow White and the Huntsman</a></li><li><a href="http://www.fandango.com/think+like+a+man_147732/movietimes?location=73104&wssaffid=11836&wssac=123">Think Like a Man</a></li><li><a href="http://www.fandango.com/what+to+expect+when+you27re+expecting_120322/movietimes?location=73104&wssaffid=11836&wssac=123">What to Expect When You're Expecting</a></li></ul></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]></description><author>affiliates@fandango.com</author><category>Movies Near Me</category><pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source></item><item><title><![CDATA[AAFES Base Theatre]]></title><link><![CDATA[http://www.fandango.com/aafesbasetheatre_aaqbg/theaterpage?wssaffid=11836&wssac=123]]></link><description><![CDATA[<p>3000 S. Douglas Ave. Oklahoma City, OK 73109</p><p></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]></description><author>affiliates@fandango.com</author><category>Movies Near Me</category><pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source></item></channel></rss>
|
1
|
+
<rss version="2.0">
|
2
|
+
<channel>
|
3
|
+
<title>Fandango.com Movies Near Me</title>
|
4
|
+
<link>
|
5
|
+
<![CDATA[http://www.fandango.com/movietimes?wssaffid=11836&wssac=123]]>
|
6
|
+
</link>
|
7
|
+
<description>Review movie listings for local theaters near you on Fandango.com</description>
|
8
|
+
<language>en-us</language>
|
9
|
+
<copyright>Copyright 2012 Fandango</copyright>
|
10
|
+
<pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate>
|
11
|
+
<ttl>1440</ttl>
|
12
|
+
<image>
|
13
|
+
<url>http://images.fandango.com/r87.6/images/global/fandango_rss_logo.gif</url>
|
14
|
+
<title>Fandango.com Movies Near Me</title>
|
15
|
+
<link>
|
16
|
+
<![CDATA[http://www.fandango.com/movietimes?wssaffid=11836&wssac=123]]>
|
17
|
+
</link>
|
18
|
+
</image>
|
19
|
+
<item>
|
20
|
+
<title>
|
21
|
+
<![CDATA[AMC Quail Springs Mall 24]]>
|
22
|
+
</title>
|
23
|
+
<link>
|
24
|
+
<![CDATA[http://www.fandango.com/amcquailspringsmall24_aaktw/theaterpage?wssaffid=11836&wssac=123]]>
|
25
|
+
</link>
|
26
|
+
<description>
|
27
|
+
<![CDATA[<p>2501 West Memorial Oklahoma City, OK 73134</p><p><ul><li><a href="http://www.fandango.com/abraham+lincoln3a+vampire+hunter_141897/movietimes?location=73134&wssaffid=11836&wssac=123">Abraham Lincoln: Vampire Hunter</a></li><li><a href="http://www.fandango.com/the+amazing+spiderman+3d_141122/movietimes?location=73134&wssaffid=11836&wssac=123">The Amazing Spider-Man 3D</a></li><li><a href="http://www.fandango.com/the+amazing+spiderman_126975/movietimes?location=73134&wssaffid=11836&wssac=123">The Amazing Spider-Man</a></li><li><a href="http://www.fandango.com/the+amazing+spiderman3a+an+imax+3d+experience_153829/movietimes?location=73134&wssaffid=11836&wssac=123">The Amazing Spider-Man: An IMAX 3D Experience</a></li><li><a href="http://www.fandango.com/battleship_130096/movietimes?location=73134&wssaffid=11836&wssac=123">Battleship</a></li><li><a href="http://www.fandango.com/the+best+exotic+marigold+hotel_147777/movietimes?location=73134&wssaffid=11836&wssac=123">The Best Exotic Marigold Hotel</a></li><li><a href="http://www.fandango.com/brave_136016/movietimes?location=73134&wssaffid=11836&wssac=123">Brave</a></li><li><a href="http://www.fandango.com/bully_145958/movietimes?location=73134&wssaffid=11836&wssac=123">Bully</a></li><li><a href="http://www.fandango.com/chernobyl+diaries_152960/movietimes?location=73134&wssaffid=11836&wssac=123">Chernobyl Diaries</a></li><li><a href="http://www.fandango.com/chimpanzee_116882/movietimes?location=73134&wssaffid=11836&wssac=123">Chimpanzee</a></li><li><a href="http://www.fandango.com/dark+shadows_147176/movietimes?location=73134&wssaffid=11836&wssac=123">Dark Shadows</a></li><li><a href="http://www.fandango.com/the+dictator_145763/movietimes?location=73134&wssaffid=11836&wssac=123">The Dictator</a></li><li><a href="http://www.fandango.com/happiest+baby+and+happiest+toddler+live+with+dr.+karp_154921/movietimes?location=73134&wssaffid=11836&wssac=123">Happiest Baby and Happiest Toddler Live With Dr. Karp</a></li><li><a href="http://www.fandango.com/the+hunger+games_136944/movietimes?location=73134&wssaffid=11836&wssac=123">The Hunger Games</a></li><li><a href="http://www.fandango.com/the+lucky+one_145457/movietimes?location=73134&wssaffid=11836&wssac=123">The Lucky One</a></li><li><a href="http://www.fandango.com/madagascar+33a+europe27s+most+wanted+3d_151457/movietimes?location=73134&wssaffid=11836&wssac=123">Madagascar 3: Europe's Most Wanted 3D</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers_30154/movietimes?location=73134&wssaffid=11836&wssac=123">Marvel's The Avengers</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers+3d_151545/movietimes?location=73134&wssaffid=11836&wssac=123">Marvel's The Avengers 3D</a></li><li><a href="http://www.fandango.com/men+in+black+iii_135737/movietimes?location=73134&wssaffid=11836&wssac=123">Men in Black III</a></li><li><a href="http://www.fandango.com/men+in+black+iii+3d_147264/movietimes?location=73134&wssaffid=11836&wssac=123">Men in Black III 3D</a></li><li><a href="http://www.fandango.com/men+in+black+iii3a+an+imax+3d+experience_148659/movietimes?location=73134&wssaffid=11836&wssac=123">Men in Black III: An IMAX 3D Experience</a></li><li><a href="http://www.fandango.com/national+theater+live3a+frankenstein+original+casting_137637/movietimes?location=73134&wssaffid=11836&wssac=123">National Theater Live: Frankenstein (Original Casting)</a></li><li><a href="http://www.fandango.com/national+theater+live3a+frankenstein+reverse+casting_142883/movietimes?location=73134&wssaffid=11836&wssac=123">National Theater Live: Frankenstein (Reverse Casting)</a></li><li><a href="http://www.fandango.com/the+pirates+band+of+misfits_146664/movietimes?location=73134&wssaffid=11836&wssac=123">The Pirates! Band of Misfits</a></li><li><a href="http://www.fandango.com/prometheus+3d_152981/movietimes?location=73134&wssaffid=11836&wssac=123">Prometheus 3D</a></li><li><a href="http://www.fandango.com/prometheus3a+an+imax+3d+experience_153676/movietimes?location=73134&wssaffid=11836&wssac=123">Prometheus: An IMAX 3D Experience</a></li><li><a href="http://www.fandango.com/ratatouille_98260/movietimes?location=73134&wssaffid=11836&wssac=123">Ratatouille</a></li><li><a href="http://www.fandango.com/snow+white+and+the+huntsman_141533/movietimes?location=73134&wssaffid=11836&wssac=123">Snow White and the Huntsman</a></li><li><a href="http://www.fandango.com/ted_136691/movietimes?location=73134&wssaffid=11836&wssac=123">Ted</a></li><li><a href="http://www.fandango.com/the+tempest+starring+christopher+plummer_155187/movietimes?location=73134&wssaffid=11836&wssac=123">The Tempest Starring Christopher Plummer</a></li><li><a href="http://www.fandango.com/that27s+my+boy_149081/movietimes?location=73134&wssaffid=11836&wssac=123">That's My Boy</a></li><li><a href="http://www.fandango.com/think+like+a+man_147732/movietimes?location=73134&wssaffid=11836&wssac=123">Think Like a Man</a></li><li><a href="http://www.fandango.com/toy+story+3_124782/movietimes?location=73134&wssaffid=11836&wssac=123">Toy Story 3</a></li><li><a href="http://www.fandango.com/up_114055/movietimes?location=73134&wssaffid=11836&wssac=123">Up</a></li><li><a href="http://www.fandango.com/walle_102903/movietimes?location=73134&wssaffid=11836&wssac=123">WALL-E</a></li><li><a href="http://www.fandango.com/what+to+expect+when+you27re+expecting_120322/movietimes?location=73134&wssaffid=11836&wssac=123">What to Expect When You're Expecting</a></li></ul></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]>
|
28
|
+
</description>
|
29
|
+
<author>affiliates@fandango.com</author>
|
30
|
+
<category>Movies Near Me</category>
|
31
|
+
<pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate>
|
32
|
+
<source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source>
|
33
|
+
</item>
|
34
|
+
<item>
|
35
|
+
<title>
|
36
|
+
<![CDATA[Northpark 7]]>
|
37
|
+
</title>
|
38
|
+
<link>
|
39
|
+
<![CDATA[http://www.fandango.com/northpark7_aaicu/theaterpage?wssaffid=11836&wssac=123]]>
|
40
|
+
</link>
|
41
|
+
<description>
|
42
|
+
<![CDATA[<p>12100 N. May Ave Oklahoma City, OK 73120</p><p><ul><li><a href="http://www.fandango.com/21+jump+street_131465/movietimes?location=73120&wssaffid=11836&wssac=123">21 Jump Street</a></li><li><a href="http://www.fandango.com/alvin+and+the+chipmunks3a+chipwrecked_141127/movietimes?location=73120&wssaffid=11836&wssac=123">Alvin and the Chipmunks: Chipwrecked</a></li><li><a href="http://www.fandango.com/american+reunion_145402/movietimes?location=73120&wssaffid=11836&wssac=123">American Reunion</a></li><li><a href="http://www.fandango.com/dr.+seuss27+the+lorax_51897/movietimes?location=73120&wssaffid=11836&wssac=123">Dr. Seuss' The Lorax</a></li><li><a href="http://www.fandango.com/dr.+seuss27+the+lorax+3d_148858/movietimes?location=73120&wssaffid=11836&wssac=123">Dr. Seuss' The Lorax 3D</a></li><li><a href="http://www.fandango.com/john+carter_130633/movietimes?location=73120&wssaffid=11836&wssac=123">John Carter</a></li><li><a href="http://www.fandango.com/john+carter+3d_147144/movietimes?location=73120&wssaffid=11836&wssac=123">John Carter 3D</a></li><li><a href="http://www.fandango.com/journey+23a+the+mysterious+island_135727/movietimes?location=73120&wssaffid=11836&wssac=123">Journey 2: The Mysterious Island</a></li><li><a href="http://www.fandango.com/mirror+mirror_143278/movietimes?location=73120&wssaffid=11836&wssac=123">Mirror Mirror</a></li><li><a href="http://www.fandango.com/wrath+of+the+titans_140654/movietimes?location=73120&wssaffid=11836&wssac=123">Wrath of the Titans</a></li></ul></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]>
|
43
|
+
</description>
|
44
|
+
<author>affiliates@fandango.com</author>
|
45
|
+
<category>Movies Near Me</category>
|
46
|
+
<pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate>
|
47
|
+
<source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source>
|
48
|
+
</item>
|
49
|
+
<item>
|
50
|
+
<title>
|
51
|
+
<![CDATA[Dickinson Penn Square 10]]>
|
52
|
+
</title>
|
53
|
+
<link>
|
54
|
+
<![CDATA[http://www.fandango.com/dickinsonpennsquare10_aagtg/theaterpage?wssaffid=11836&wssac=123]]>
|
55
|
+
</link>
|
56
|
+
<description>
|
57
|
+
<![CDATA[<p>1901 NW Expressway Oklahoma City, OK 73118</p><p><ul><li><a href="http://www.fandango.com/battleship_130096/movietimes?location=73118&wssaffid=11836&wssac=123">Battleship</a></li><li><a href="http://www.fandango.com/chernobyl+diaries_152960/movietimes?location=73118&wssaffid=11836&wssac=123">Chernobyl Diaries</a></li><li><a href="http://www.fandango.com/dark+shadows_147176/movietimes?location=73118&wssaffid=11836&wssac=123">Dark Shadows</a></li><li><a href="http://www.fandango.com/the+dictator_145763/movietimes?location=73118&wssaffid=11836&wssac=123">The Dictator</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers_30154/movietimes?location=73118&wssaffid=11836&wssac=123">Marvel's The Avengers</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers+3d_151545/movietimes?location=73118&wssaffid=11836&wssac=123">Marvel's The Avengers 3D</a></li><li><a href="http://www.fandango.com/men+in+black+iii_135737/movietimes?location=73118&wssaffid=11836&wssac=123">Men in Black III</a></li><li><a href="http://www.fandango.com/men+in+black+iii+3d_147264/movietimes?location=73118&wssaffid=11836&wssac=123">Men in Black III 3D</a></li><li><a href="http://www.fandango.com/what+to+expect+when+you27re+expecting_120322/movietimes?location=73118&wssaffid=11836&wssac=123">What to Expect When You're Expecting</a></li></ul></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]>
|
58
|
+
</description>
|
59
|
+
<author>affiliates@fandango.com</author>
|
60
|
+
<category>Movies Near Me</category>
|
61
|
+
<pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate>
|
62
|
+
<source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source>
|
63
|
+
</item>
|
64
|
+
<item>
|
65
|
+
<title>
|
66
|
+
<![CDATA[B&B Theatres Windsor 10]]>
|
67
|
+
</title>
|
68
|
+
<link>
|
69
|
+
<![CDATA[http://www.fandango.com/bandbtheatreswindsor10_aavud/theaterpage?wssaffid=11836&wssac=123]]>
|
70
|
+
</link>
|
71
|
+
<description>
|
72
|
+
<![CDATA[<p>4623 A. N.W. 23rd St. Oklahoma City, OK 73127</p><p><ul><li><a href="http://www.fandango.com/battleship_130096/movietimes?location=73127&wssaffid=11836&wssac=123">Battleship</a></li><li><a href="http://www.fandango.com/chernobyl+diaries_152960/movietimes?location=73127&wssaffid=11836&wssac=123">Chernobyl Diaries</a></li><li><a href="http://www.fandango.com/dark+shadows_147176/movietimes?location=73127&wssaffid=11836&wssac=123">Dark Shadows</a></li><li><a href="http://www.fandango.com/the+dictator_145763/movietimes?location=73127&wssaffid=11836&wssac=123">The Dictator</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers_30154/movietimes?location=73127&wssaffid=11836&wssac=123">Marvel's The Avengers</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers+3d_151545/movietimes?location=73127&wssaffid=11836&wssac=123">Marvel's The Avengers 3D</a></li><li><a href="http://www.fandango.com/men+in+black+iii_135737/movietimes?location=73127&wssaffid=11836&wssac=123">Men in Black III</a></li><li><a href="http://www.fandango.com/men+in+black+iii+3d_147264/movietimes?location=73127&wssaffid=11836&wssac=123">Men in Black III 3D</a></li><li><a href="http://www.fandango.com/what+to+expect+when+you27re+expecting_120322/movietimes?location=73127&wssaffid=11836&wssac=123">What to Expect When You're Expecting</a></li></ul></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]>
|
73
|
+
</description>
|
74
|
+
<author>affiliates@fandango.com</author>
|
75
|
+
<category>Movies Near Me</category>
|
76
|
+
<pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate>
|
77
|
+
<source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source>
|
78
|
+
</item>
|
79
|
+
<item>
|
80
|
+
<title>
|
81
|
+
<![CDATA[Kickingbird Cinema]]>
|
82
|
+
</title>
|
83
|
+
<link>
|
84
|
+
<![CDATA[http://www.fandango.com/kickingbirdcinema_aaenx/theaterpage?wssaffid=11836&wssac=123]]>
|
85
|
+
</link>
|
86
|
+
<description>
|
87
|
+
<![CDATA[<p>1225 East Danforth Rd Edmond, OK 73083</p><p></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]>
|
88
|
+
</description>
|
89
|
+
<author>affiliates@fandango.com</author>
|
90
|
+
<category>Movies Near Me</category>
|
91
|
+
<pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate>
|
92
|
+
<source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source>
|
93
|
+
</item>
|
94
|
+
<item>
|
95
|
+
<title>
|
96
|
+
<![CDATA[Cinemark Tinseltown]]>
|
97
|
+
</title>
|
98
|
+
<link>
|
99
|
+
<![CDATA[http://www.fandango.com/cinemarktinseltown_aaitg/theaterpage?wssaffid=11836&wssac=123]]>
|
100
|
+
</link>
|
101
|
+
<description>
|
102
|
+
<![CDATA[<p>6001 Martin Luther King Blvd. Oklahoma City, OK 73111</p><p><ul><li><a href="http://www.fandango.com/the+amazing+spiderman+3d_141122/movietimes?location=73111&wssaffid=11836&wssac=123">The Amazing Spider-Man 3D</a></li><li><a href="http://www.fandango.com/anna+bolena+met+summer+encore_154543/movietimes?location=73111&wssaffid=11836&wssac=123">Anna Bolena Met Summer Encore</a></li><li><a href="http://www.fandango.com/battleship_130096/movietimes?location=73111&wssaffid=11836&wssac=123">Battleship</a></li><li><a href="http://www.fandango.com/bernie_149564/movietimes?location=73111&wssaffid=11836&wssac=123">Bernie</a></li><li><a href="http://www.fandango.com/the+best+exotic+marigold+hotel_147777/movietimes?location=73111&wssaffid=11836&wssac=123">The Best Exotic Marigold Hotel</a></li><li><a href="http://www.fandango.com/cabaret_104412/movietimes?location=73111&wssaffid=11836&wssac=123">Cabaret</a></li><li><a href="http://www.fandango.com/chernobyl+diaries_152960/movietimes?location=73111&wssaffid=11836&wssac=123">Chernobyl Diaries</a></li><li><a href="http://www.fandango.com/citizen+kane_1439/movietimes?location=73111&wssaffid=11836&wssac=123">Citizen Kane</a></li><li><a href="http://www.fandango.com/a+clockwork+orange_370/movietimes?location=73111&wssaffid=11836&wssac=123">A Clockwork Orange</a></li><li><a href="http://www.fandango.com/cool+hand+luke_15758/movietimes?location=73111&wssaffid=11836&wssac=123">Cool Hand Luke</a></li><li><a href="http://www.fandango.com/cowgirls+n27+angels_154322/movietimes?location=73111&wssaffid=11836&wssac=123">Cowgirls n' Angels</a></li><li><a href="http://www.fandango.com/crooked+arrows_154422/movietimes?location=73111&wssaffid=11836&wssac=123">Crooked Arrows</a></li><li><a href="http://www.fandango.com/dark+shadows_147176/movietimes?location=73111&wssaffid=11836&wssac=123">Dark Shadows</a></li><li><a href="http://www.fandango.com/dci+2012+tour+premiere_154934/movietimes?location=73111&wssaffid=11836&wssac=123">DCI 2012 Tour Premiere</a></li><li><a href="http://www.fandango.com/der+rosenkavalier+met+summer+encore_154548/movietimes?location=73111&wssaffid=11836&wssac=123">Der Rosenkavalier Met Summer Encore</a></li><li><a href="http://www.fandango.com/diary+of+a+wimpy+kid3a+rodrick+rules_139535/movietimes?location=73111&wssaffid=11836&wssac=123">Diary of a Wimpy Kid: Rodrick Rules</a></li><li><a href="http://www.fandango.com/the+dictator_145763/movietimes?location=73111&wssaffid=11836&wssac=123">The Dictator</a></li><li><a href="http://www.fandango.com/dolphin+tale_140092/movietimes?location=73111&wssaffid=11836&wssac=123">Dolphin Tale</a></li><li><a href="http://www.fandango.com/don+giovanni+met+summer+encore_154545/movietimes?location=73111&wssaffid=11836&wssac=123">Don Giovanni Met Summer Encore</a></li><li><a href="http://www.fandango.com/the+exorcist+1973_90729/movietimes?location=73111&wssaffid=11836&wssac=123">The Exorcist (1973)</a></li><li><a href="http://www.fandango.com/happiest+baby+and+happiest+toddler+live+with+dr.+karp_154921/movietimes?location=73111&wssaffid=11836&wssac=123">Happiest Baby and Happiest Toddler Live With Dr. Karp</a></li><li><a href="http://www.fandango.com/happy+feet+two_149198/movietimes?location=73111&wssaffid=11836&wssac=123">Happy Feet Two</a></li><li><a href="http://www.fandango.com/the+hunger+games_136944/movietimes?location=73111&wssaffid=11836&wssac=123">The Hunger Games</a></li><li><a href="http://www.fandango.com/journey+23a+the+mysterious+island_135727/movietimes?location=73111&wssaffid=11836&wssac=123">Journey 2: The Mysterious Island</a></li><li><a href="http://www.fandango.com/kung+fu+panda+2_119854/movietimes?location=73111&wssaffid=11836&wssac=123">Kung Fu Panda 2</a></li><li><a href="http://www.fandango.com/le+comte+ory+met+summer+encore_154544/movietimes?location=73111&wssaffid=11836&wssac=123">Le Comte Ory Met Summer Encore</a></li><li><a href="http://www.fandango.com/les+contes+de28099hoffmann+met+summer+encore_154546/movietimes?location=73111&wssaffid=11836&wssac=123">Les Contes d’Hoffmann Met Summer Encore</a></li><li><a href="http://www.fandango.com/linkin+park+living+things+concert+event_156066/movietimes?location=73111&wssaffid=11836&wssac=123">Linkin Park Living Things Concert Event</a></li><li><a href="http://www.fandango.com/lucia+di+lammermoor+met+summer+encore_154547/movietimes?location=73111&wssaffid=11836&wssac=123">Lucia Di Lammermoor Met Summer Encore</a></li><li><a href="http://www.fandango.com/madagascar+33a+europe27s+most+wanted+3d_151457/movietimes?location=73111&wssaffid=11836&wssac=123">Madagascar 3: Europe's Most Wanted 3D</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers_30154/movietimes?location=73111&wssaffid=11836&wssac=123">Marvel's The Avengers</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers+3d_151545/movietimes?location=73111&wssaffid=11836&wssac=123">Marvel's The Avengers 3D</a></li><li><a href="http://www.fandango.com/men+in+black+iii_135737/movietimes?location=73111&wssaffid=11836&wssac=123">Men in Black III</a></li><li><a href="http://www.fandango.com/men+in+black+iii+3d_147264/movietimes?location=73111&wssaffid=11836&wssac=123">Men in Black III 3D</a></li><li><a href="http://www.fandango.com/national+theater+live3a+frankenstein+original+casting_137637/movietimes?location=73111&wssaffid=11836&wssac=123">National Theater Live: Frankenstein (Original Casting)</a></li><li><a href="http://www.fandango.com/national+theater+live3a+frankenstein+reverse+casting_142883/movietimes?location=73111&wssaffid=11836&wssac=123">National Theater Live: Frankenstein (Reverse Casting)</a></li><li><a href="http://www.fandango.com/north+by+northwest_631/movietimes?location=73111&wssaffid=11836&wssac=123">North by Northwest</a></li><li><a href="http://www.fandango.com/prometheus+3d_152981/movietimes?location=73111&wssaffid=11836&wssac=123">Prometheus 3D</a></li><li><a href="http://www.fandango.com/puss+in+boots_131567/movietimes?location=73111&wssaffid=11836&wssac=123">Puss in Boots</a></li><li><a href="http://www.fandango.com/rio+the+movie_131571/movietimes?location=73111&wssaffid=11836&wssac=123">Rio The Movie</a></li><li><a href="http://www.fandango.com/the+searchers_1926/movietimes?location=73111&wssaffid=11836&wssac=123">The Searchers</a></li><li><a href="http://www.fandango.com/snow+white+and+the+huntsman_141533/movietimes?location=73111&wssaffid=11836&wssac=123">Snow White and the Huntsman</a></li><li><a href="http://www.fandango.com/star+trek3a+the+next+generation+25th+anniversary+event_155848/movietimes?location=73111&wssaffid=11836&wssac=123">Star Trek: The Next Generation 25th Anniversary Event</a></li><li><a href="http://www.fandango.com/tcm+presents+singin27+in+the+rain+60th+anniversary+event_155652/movietimes?location=73111&wssaffid=11836&wssac=123">TCM Presents Singin' in the Rain 60th Anniversary Event</a></li><li><a href="http://www.fandango.com/the+tempest+starring+christopher+plummer_155187/movietimes?location=73111&wssaffid=11836&wssac=123">The Tempest Starring Christopher Plummer</a></li><li><a href="http://www.fandango.com/that27s+entertainment_95288/movietimes?location=73111&wssaffid=11836&wssac=123">That's Entertainment!</a></li><li><a href="http://www.fandango.com/think+like+a+man_147732/movietimes?location=73111&wssaffid=11836&wssac=123">Think Like a Man</a></li><li><a href="http://www.fandango.com/what+to+expect+when+you27re+expecting_120322/movietimes?location=73111&wssaffid=11836&wssac=123">What to Expect When You're Expecting</a></li><li><a href="http://www.fandango.com/winnie+the+pooh_141120/movietimes?location=73111&wssaffid=11836&wssac=123">Winnie the Pooh</a></li><li><a href="http://www.fandango.com/yogi+bear_32983/movietimes?location=73111&wssaffid=11836&wssac=123">Yogi Bear</a></li></ul></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]>
|
103
|
+
</description>
|
104
|
+
<author>affiliates@fandango.com</author>
|
105
|
+
<category>Movies Near Me</category>
|
106
|
+
<pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate>
|
107
|
+
<source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source>
|
108
|
+
</item>
|
109
|
+
<item>
|
110
|
+
<title>
|
111
|
+
<![CDATA[Yukon Movies 5]]>
|
112
|
+
</title>
|
113
|
+
<link>
|
114
|
+
<![CDATA[http://www.fandango.com/yukonmovies5_aaict/theaterpage?wssaffid=11836&wssac=123]]>
|
115
|
+
</link>
|
116
|
+
<description>
|
117
|
+
<![CDATA[<p>1219 Garth Brooks Rd. Yukon, OK 73099</p><p><ul><li><a href="http://www.fandango.com/battleship_130096/movietimes?location=73099&wssaffid=11836&wssac=123">Battleship</a></li><li><a href="http://www.fandango.com/chernobyl+diaries_152960/movietimes?location=73099&wssaffid=11836&wssac=123">Chernobyl Diaries</a></li><li><a href="http://www.fandango.com/the+dictator_145763/movietimes?location=73099&wssaffid=11836&wssac=123">The Dictator</a></li><li><a href="http://www.fandango.com/what+to+expect+when+you27re+expecting_120322/movietimes?location=73099&wssaffid=11836&wssac=123">What to Expect When You're Expecting</a></li></ul></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]>
|
118
|
+
</description>
|
119
|
+
<author>affiliates@fandango.com</author>
|
120
|
+
<category>Movies Near Me</category>
|
121
|
+
<pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate>
|
122
|
+
<source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source>
|
123
|
+
</item>
|
124
|
+
<item>
|
125
|
+
<title>
|
126
|
+
<![CDATA[OmniDome Theatre]]>
|
127
|
+
</title>
|
128
|
+
<link>
|
129
|
+
<![CDATA[http://www.fandango.com/omnidometheatre_aaopy/theaterpage?wssaffid=11836&wssac=123]]>
|
130
|
+
</link>
|
131
|
+
<description>
|
132
|
+
<![CDATA[<p>2100 NE 52nd Street Oklahoma City, OK 73111</p><p><ul><li><a href="http://www.fandango.com/tornado+alley_140948/movietimes?location=73111&wssaffid=11836&wssac=123">Tornado Alley</a></li></ul></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]>
|
133
|
+
</description>
|
134
|
+
<author>affiliates@fandango.com</author>
|
135
|
+
<category>Movies Near Me</category>
|
136
|
+
<pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate>
|
137
|
+
<source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source>
|
138
|
+
</item>
|
139
|
+
<item>
|
140
|
+
<title>
|
141
|
+
<![CDATA[Dickinson West End Pointe 8 Theatre]]>
|
142
|
+
</title>
|
143
|
+
<link>
|
144
|
+
<![CDATA[http://www.fandango.com/dickinsonwestendpointe8theatre_aauol/theaterpage?wssaffid=11836&wssac=123]]>
|
145
|
+
</link>
|
146
|
+
<description>
|
147
|
+
<![CDATA[<p>12825 NW 10th Yukon, OK 73099</p><p><ul><li><a href="http://www.fandango.com/21+jump+street_131465/movietimes?location=73099&wssaffid=11836&wssac=123">21 Jump Street</a></li><li><a href="http://www.fandango.com/dark+shadows_147176/movietimes?location=73099&wssaffid=11836&wssac=123">Dark Shadows</a></li><li><a href="http://www.fandango.com/the+hunger+games_136944/movietimes?location=73099&wssaffid=11836&wssac=123">The Hunger Games</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers_30154/movietimes?location=73099&wssaffid=11836&wssac=123">Marvel's The Avengers</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers+3d_151545/movietimes?location=73099&wssaffid=11836&wssac=123">Marvel's The Avengers 3D</a></li><li><a href="http://www.fandango.com/men+in+black+iii_135737/movietimes?location=73099&wssaffid=11836&wssac=123">Men in Black III</a></li><li><a href="http://www.fandango.com/men+in+black+iii+3d_147264/movietimes?location=73099&wssaffid=11836&wssac=123">Men in Black III 3D</a></li><li><a href="http://www.fandango.com/mirror+mirror_143278/movietimes?location=73099&wssaffid=11836&wssac=123">Mirror Mirror</a></li><li><a href="http://www.fandango.com/the+pirates+band+of+misfits_146664/movietimes?location=73099&wssaffid=11836&wssac=123">The Pirates! Band of Misfits</a></li></ul></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]>
|
148
|
+
</description>
|
149
|
+
<author>affiliates@fandango.com</author>
|
150
|
+
<category>Movies Near Me</category>
|
151
|
+
<pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate>
|
152
|
+
<source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source>
|
153
|
+
</item>
|
154
|
+
<item>
|
155
|
+
<title>
|
156
|
+
<![CDATA[Harkins Cine Capri Bricktown]]>
|
157
|
+
</title>
|
158
|
+
<link>
|
159
|
+
<![CDATA[http://www.fandango.com/harkinscinecapribricktown_aaswz/theaterpage?wssaffid=11836&wssac=123]]>
|
160
|
+
</link>
|
161
|
+
<description>
|
162
|
+
<![CDATA[<p>150 East Reno Ave. Oklahoma City, OK 73104</p><p><ul><li><a href="http://www.fandango.com/battleship_130096/movietimes?location=73104&wssaffid=11836&wssac=123">Battleship</a></li><li><a href="http://www.fandango.com/the+best+exotic+marigold+hotel_147777/movietimes?location=73104&wssaffid=11836&wssac=123">The Best Exotic Marigold Hotel</a></li><li><a href="http://www.fandango.com/chernobyl+diaries_152960/movietimes?location=73104&wssaffid=11836&wssac=123">Chernobyl Diaries</a></li><li><a href="http://www.fandango.com/cowgirls+n27+angels_154322/movietimes?location=73104&wssaffid=11836&wssac=123">Cowgirls n' Angels</a></li><li><a href="http://www.fandango.com/dark+shadows_147176/movietimes?location=73104&wssaffid=11836&wssac=123">Dark Shadows</a></li><li><a href="http://www.fandango.com/the+dictator_145763/movietimes?location=73104&wssaffid=11836&wssac=123">The Dictator</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers_30154/movietimes?location=73104&wssaffid=11836&wssac=123">Marvel's The Avengers</a></li><li><a href="http://www.fandango.com/marvel27s+the+avengers+3d_151545/movietimes?location=73104&wssaffid=11836&wssac=123">Marvel's The Avengers 3D</a></li><li><a href="http://www.fandango.com/men+in+black+iii_135737/movietimes?location=73104&wssaffid=11836&wssac=123">Men in Black III</a></li><li><a href="http://www.fandango.com/men+in+black+iii+3d_147264/movietimes?location=73104&wssaffid=11836&wssac=123">Men in Black III 3D</a></li><li><a href="http://www.fandango.com/snow+white+and+the+huntsman_141533/movietimes?location=73104&wssaffid=11836&wssac=123">Snow White and the Huntsman</a></li><li><a href="http://www.fandango.com/think+like+a+man_147732/movietimes?location=73104&wssaffid=11836&wssac=123">Think Like a Man</a></li><li><a href="http://www.fandango.com/what+to+expect+when+you27re+expecting_120322/movietimes?location=73104&wssaffid=11836&wssac=123">What to Expect When You're Expecting</a></li></ul></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]>
|
163
|
+
</description>
|
164
|
+
<author>affiliates@fandango.com</author>
|
165
|
+
<category>Movies Near Me</category>
|
166
|
+
<pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate>
|
167
|
+
<source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source>
|
168
|
+
</item>
|
169
|
+
<item>
|
170
|
+
<title>
|
171
|
+
<![CDATA[AAFES Base Theatre]]>
|
172
|
+
</title>
|
173
|
+
<link>
|
174
|
+
<![CDATA[http://www.fandango.com/aafesbasetheatre_aaqbg/theaterpage?wssaffid=11836&wssac=123]]>
|
175
|
+
</link>
|
176
|
+
<description>
|
177
|
+
<![CDATA[<p>3000 S. Douglas Ave. Oklahoma City, OK 73109</p><p></p><p><a href="http://www.fandango.com/movietimes?wssaffid=11836&wssac=123">Search other theaters</a></p>]]>
|
178
|
+
</description>
|
179
|
+
<author>affiliates@fandango.com</author>
|
180
|
+
<category>Movies Near Me</category>
|
181
|
+
<pubDate>Mon, 28 May 2012 14:16:27 GMT</pubDate>
|
182
|
+
<source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&wssac=123">Fandango.com Movies Near Me</source>
|
183
|
+
</item>
|
184
|
+
</channel>
|
185
|
+
</rss>
|
@@ -1,17 +1,17 @@
|
|
1
1
|
---
|
2
|
-
- :
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
2
|
+
- :name: AMC Quail Springs Mall 24
|
3
|
+
:id: aaktw
|
4
|
+
:address: 2501 West Memorial Oklahoma City, OK 73134
|
5
|
+
:postal_code: '73134'
|
6
|
+
:showtimes_link: http://www.fandango.com/amcquailspringsmall24_aaktw/theaterpage?wssaffid=11836&wssac=123
|
7
7
|
:movies:
|
8
|
-
- :title:
|
8
|
+
- :title: 'Abraham Lincoln: Vampire Hunter'
|
9
9
|
:id: '141897'
|
10
10
|
- :title: The Amazing Spider-Man 3D
|
11
11
|
:id: '141122'
|
12
12
|
- :title: The Amazing Spider-Man
|
13
13
|
:id: '126975'
|
14
|
-
- :title:
|
14
|
+
- :title: 'The Amazing Spider-Man: An IMAX 3D Experience'
|
15
15
|
:id: '153829'
|
16
16
|
- :title: Battleship
|
17
17
|
:id: '130096'
|
@@ -35,7 +35,7 @@
|
|
35
35
|
:id: '136944'
|
36
36
|
- :title: The Lucky One
|
37
37
|
:id: '145457'
|
38
|
-
- :title:
|
38
|
+
- :title: 'Madagascar 3: Europe''s Most Wanted 3D'
|
39
39
|
:id: '151457'
|
40
40
|
- :title: Marvel's The Avengers
|
41
41
|
:id: '30154'
|
@@ -45,17 +45,17 @@
|
|
45
45
|
:id: '135737'
|
46
46
|
- :title: Men in Black III 3D
|
47
47
|
:id: '147264'
|
48
|
-
- :title:
|
48
|
+
- :title: 'Men in Black III: An IMAX 3D Experience'
|
49
49
|
:id: '148659'
|
50
|
-
- :title:
|
50
|
+
- :title: 'National Theater Live: Frankenstein (Original Casting)'
|
51
51
|
:id: '137637'
|
52
|
-
- :title:
|
52
|
+
- :title: 'National Theater Live: Frankenstein (Reverse Casting)'
|
53
53
|
:id: '142883'
|
54
54
|
- :title: The Pirates! Band of Misfits
|
55
55
|
:id: '146664'
|
56
56
|
- :title: Prometheus 3D
|
57
57
|
:id: '152981'
|
58
|
-
- :title:
|
58
|
+
- :title: 'Prometheus: An IMAX 3D Experience'
|
59
59
|
:id: '153676'
|
60
60
|
- :title: Ratatouille
|
61
61
|
:id: '98260'
|
@@ -77,15 +77,15 @@
|
|
77
77
|
:id: '102903'
|
78
78
|
- :title: What to Expect When You're Expecting
|
79
79
|
:id: '120322'
|
80
|
-
- :
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
80
|
+
- :name: Northpark 7
|
81
|
+
:id: aaicu
|
82
|
+
:address: 12100 N. May Ave Oklahoma City, OK 73120
|
83
|
+
:postal_code: '73120'
|
84
|
+
:showtimes_link: http://www.fandango.com/northpark7_aaicu/theaterpage?wssaffid=11836&wssac=123
|
85
85
|
:movies:
|
86
86
|
- :title: 21 Jump Street
|
87
87
|
:id: '131465'
|
88
|
-
- :title:
|
88
|
+
- :title: 'Alvin and the Chipmunks: Chipwrecked'
|
89
89
|
:id: '141127'
|
90
90
|
- :title: American Reunion
|
91
91
|
:id: '145402'
|
@@ -97,17 +97,17 @@
|
|
97
97
|
:id: '130633'
|
98
98
|
- :title: John Carter 3D
|
99
99
|
:id: '147144'
|
100
|
-
- :title:
|
100
|
+
- :title: 'Journey 2: The Mysterious Island'
|
101
101
|
:id: '135727'
|
102
102
|
- :title: Mirror Mirror
|
103
103
|
:id: '143278'
|
104
104
|
- :title: Wrath of the Titans
|
105
105
|
:id: '140654'
|
106
|
-
- :
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
106
|
+
- :name: Dickinson Penn Square 10
|
107
|
+
:id: aagtg
|
108
|
+
:address: 1901 NW Expressway Oklahoma City, OK 73118
|
109
|
+
:postal_code: '73118'
|
110
|
+
:showtimes_link: http://www.fandango.com/dickinsonpennsquare10_aagtg/theaterpage?wssaffid=11836&wssac=123
|
111
111
|
:movies:
|
112
112
|
- :title: Battleship
|
113
113
|
:id: '130096'
|
@@ -127,11 +127,11 @@
|
|
127
127
|
:id: '147264'
|
128
128
|
- :title: What to Expect When You're Expecting
|
129
129
|
:id: '120322'
|
130
|
-
- :
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
130
|
+
- :name: B&B Theatres Windsor 10
|
131
|
+
:id: aavud
|
132
|
+
:address: 4623 A. N.W. 23rd St. Oklahoma City, OK 73127
|
133
|
+
:postal_code: '73127'
|
134
|
+
:showtimes_link: http://www.fandango.com/bandbtheatreswindsor10_aavud/theaterpage?wssaffid=11836&wssac=123
|
135
135
|
:movies:
|
136
136
|
- :title: Battleship
|
137
137
|
:id: '130096'
|
@@ -151,17 +151,17 @@
|
|
151
151
|
:id: '147264'
|
152
152
|
- :title: What to Expect When You're Expecting
|
153
153
|
:id: '120322'
|
154
|
-
- :
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
154
|
+
- :name: Kickingbird Cinema
|
155
|
+
:id: aaenx
|
156
|
+
:address: 1225 East Danforth Rd Edmond, OK 73083
|
157
|
+
:postal_code: '73083'
|
158
|
+
:showtimes_link: http://www.fandango.com/kickingbirdcinema_aaenx/theaterpage?wssaffid=11836&wssac=123
|
159
159
|
:movies: []
|
160
|
-
- :
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
160
|
+
- :name: Cinemark Tinseltown
|
161
|
+
:id: aaitg
|
162
|
+
:address: 6001 Martin Luther King Blvd. Oklahoma City, OK 73111
|
163
|
+
:postal_code: '73111'
|
164
|
+
:showtimes_link: http://www.fandango.com/cinemarktinseltown_aaitg/theaterpage?wssaffid=11836&wssac=123
|
165
165
|
:movies:
|
166
166
|
- :title: The Amazing Spider-Man 3D
|
167
167
|
:id: '141122'
|
@@ -193,7 +193,7 @@
|
|
193
193
|
:id: '154934'
|
194
194
|
- :title: Der Rosenkavalier Met Summer Encore
|
195
195
|
:id: '154548'
|
196
|
-
- :title:
|
196
|
+
- :title: 'Diary of a Wimpy Kid: Rodrick Rules'
|
197
197
|
:id: '139535'
|
198
198
|
- :title: The Dictator
|
199
199
|
:id: '145763'
|
@@ -209,7 +209,7 @@
|
|
209
209
|
:id: '149198'
|
210
210
|
- :title: The Hunger Games
|
211
211
|
:id: '136944'
|
212
|
-
- :title:
|
212
|
+
- :title: 'Journey 2: The Mysterious Island'
|
213
213
|
:id: '135727'
|
214
214
|
- :title: Kung Fu Panda 2
|
215
215
|
:id: '119854'
|
@@ -221,7 +221,7 @@
|
|
221
221
|
:id: '156066'
|
222
222
|
- :title: Lucia Di Lammermoor Met Summer Encore
|
223
223
|
:id: '154547'
|
224
|
-
- :title:
|
224
|
+
- :title: 'Madagascar 3: Europe''s Most Wanted 3D'
|
225
225
|
:id: '151457'
|
226
226
|
- :title: Marvel's The Avengers
|
227
227
|
:id: '30154'
|
@@ -231,9 +231,9 @@
|
|
231
231
|
:id: '135737'
|
232
232
|
- :title: Men in Black III 3D
|
233
233
|
:id: '147264'
|
234
|
-
- :title:
|
234
|
+
- :title: 'National Theater Live: Frankenstein (Original Casting)'
|
235
235
|
:id: '137637'
|
236
|
-
- :title:
|
236
|
+
- :title: 'National Theater Live: Frankenstein (Reverse Casting)'
|
237
237
|
:id: '142883'
|
238
238
|
- :title: North by Northwest
|
239
239
|
:id: '631'
|
@@ -247,7 +247,7 @@
|
|
247
247
|
:id: '1926'
|
248
248
|
- :title: Snow White and the Huntsman
|
249
249
|
:id: '141533'
|
250
|
-
- :title:
|
250
|
+
- :title: 'Star Trek: The Next Generation 25th Anniversary Event'
|
251
251
|
:id: '155848'
|
252
252
|
- :title: TCM Presents Singin' in the Rain 60th Anniversary Event
|
253
253
|
:id: '155652'
|
@@ -263,11 +263,11 @@
|
|
263
263
|
:id: '141120'
|
264
264
|
- :title: Yogi Bear
|
265
265
|
:id: '32983'
|
266
|
-
- :
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
266
|
+
- :name: Yukon Movies 5
|
267
|
+
:id: aaict
|
268
|
+
:address: 1219 Garth Brooks Rd. Yukon, OK 73099
|
269
|
+
:postal_code: '73099'
|
270
|
+
:showtimes_link: http://www.fandango.com/yukonmovies5_aaict/theaterpage?wssaffid=11836&wssac=123
|
271
271
|
:movies:
|
272
272
|
- :title: Battleship
|
273
273
|
:id: '130096'
|
@@ -277,19 +277,19 @@
|
|
277
277
|
:id: '145763'
|
278
278
|
- :title: What to Expect When You're Expecting
|
279
279
|
:id: '120322'
|
280
|
-
- :
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
280
|
+
- :name: OmniDome Theatre
|
281
|
+
:id: aaopy
|
282
|
+
:address: 2100 NE 52nd Street Oklahoma City, OK 73111
|
283
|
+
:postal_code: '73111'
|
284
|
+
:showtimes_link: http://www.fandango.com/omnidometheatre_aaopy/theaterpage?wssaffid=11836&wssac=123
|
285
285
|
:movies:
|
286
286
|
- :title: Tornado Alley
|
287
287
|
:id: '140948'
|
288
|
-
- :
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
288
|
+
- :name: Dickinson West End Pointe 8 Theatre
|
289
|
+
:id: aauol
|
290
|
+
:address: 12825 NW 10th Yukon, OK 73099
|
291
|
+
:postal_code: '73099'
|
292
|
+
:showtimes_link: http://www.fandango.com/dickinsonwestendpointe8theatre_aauol/theaterpage?wssaffid=11836&wssac=123
|
293
293
|
:movies:
|
294
294
|
- :title: 21 Jump Street
|
295
295
|
:id: '131465'
|
@@ -309,11 +309,11 @@
|
|
309
309
|
:id: '143278'
|
310
310
|
- :title: The Pirates! Band of Misfits
|
311
311
|
:id: '146664'
|
312
|
-
- :
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
312
|
+
- :name: Harkins Cine Capri Bricktown
|
313
|
+
:id: aaswz
|
314
|
+
:address: 150 East Reno Ave. Oklahoma City, OK 73104
|
315
|
+
:postal_code: '73104'
|
316
|
+
:showtimes_link: http://www.fandango.com/harkinscinecapribricktown_aaswz/theaterpage?wssaffid=11836&wssac=123
|
317
317
|
:movies:
|
318
318
|
- :title: Battleship
|
319
319
|
:id: '130096'
|
@@ -341,9 +341,9 @@
|
|
341
341
|
:id: '147732'
|
342
342
|
- :title: What to Expect When You're Expecting
|
343
343
|
:id: '120322'
|
344
|
-
- :
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
344
|
+
- :name: AAFES Base Theatre
|
345
|
+
:id: aaqbg
|
346
|
+
:address: 3000 S. Douglas Ave. Oklahoma City, OK 73109
|
347
|
+
:postal_code: '73109'
|
348
|
+
:showtimes_link: http://www.fandango.com/aafesbasetheatre_aaqbg/theaterpage?wssaffid=11836&wssac=123
|
349
349
|
:movies: []
|