fandango 0.2.1 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. data/.irbrc +5 -0
  2. data/README.md +1 -3
  3. data/fandango.gemspec +4 -20
  4. data/lib/fandango.rb +27 -16
  5. data/lib/fandango/movie.rb +30 -0
  6. data/lib/fandango/parser.rb +34 -19
  7. data/lib/fandango/theater.rb +50 -0
  8. data/lib/fandango/version.rb +1 -1
  9. data/spec/fandango.spec.rb +23 -25
  10. data/spec/movie.spec.rb +24 -0
  11. data/spec/parser.spec.rb +12 -0
  12. data/spec/spec_helper.rb +5 -3
  13. data/spec/support/fixtures/item.html +1 -0
  14. data/spec/support/fixtures/movies_near_me_73142.rss +1 -1
  15. data/spec/support/fixtures/movies_near_me_73142.yaml +349 -0
  16. data/spec/support/helpers.rb +25 -0
  17. data/spec/support/vcr_cassettes/movies_near_me_123BADZIP.yml +48 -0
  18. data/spec/support/vcr_cassettes/movies_near_me_73142.yml +247 -0
  19. data/spec/theater.spec.rb +16 -0
  20. metadata +41 -130
  21. data/lib/fandango/parsers/movie.rb +0 -30
  22. data/lib/fandango/parsers/theater.rb +0 -37
  23. data/lib/feedzirra.rb +0 -4
  24. data/lib/vendor/feedzirra/.gitignore +0 -6
  25. data/lib/vendor/feedzirra/.rspec +0 -1
  26. data/lib/vendor/feedzirra/lib/feedzirra.rb +0 -19
  27. data/lib/vendor/feedzirra/lib/feedzirra/core_ext.rb +0 -3
  28. data/lib/vendor/feedzirra/lib/feedzirra/core_ext/date.rb +0 -19
  29. data/lib/vendor/feedzirra/lib/feedzirra/core_ext/string.rb +0 -9
  30. data/lib/vendor/feedzirra/lib/feedzirra/feed.rb +0 -383
  31. data/lib/vendor/feedzirra/lib/feedzirra/feed_entry_utilities.rb +0 -65
  32. data/lib/vendor/feedzirra/lib/feedzirra/feed_utilities.rb +0 -72
  33. data/lib/vendor/feedzirra/lib/feedzirra/parser.rb +0 -17
  34. data/lib/vendor/feedzirra/lib/feedzirra/parser/atom.rb +0 -29
  35. data/lib/vendor/feedzirra/lib/feedzirra/parser/atom_entry.rb +0 -30
  36. data/lib/vendor/feedzirra/lib/feedzirra/parser/atom_feed_burner.rb +0 -21
  37. data/lib/vendor/feedzirra/lib/feedzirra/parser/atom_feed_burner_entry.rb +0 -31
  38. data/lib/vendor/feedzirra/lib/feedzirra/parser/itunes_rss.rb +0 -50
  39. data/lib/vendor/feedzirra/lib/feedzirra/parser/itunes_rss_item.rb +0 -32
  40. data/lib/vendor/feedzirra/lib/feedzirra/parser/itunes_rss_owner.rb +0 -12
  41. data/lib/vendor/feedzirra/lib/feedzirra/parser/rss.rb +0 -22
  42. data/lib/vendor/feedzirra/lib/feedzirra/parser/rss_entry.rb +0 -34
  43. data/lib/vendor/feedzirra/lib/feedzirra/parser/rss_feed_burner.rb +0 -22
  44. data/lib/vendor/feedzirra/lib/feedzirra/parser/rss_feed_burner_entry.rb +0 -40
  45. data/lib/vendor/feedzirra/lib/feedzirra/version.rb +0 -3
  46. data/spec/support/macros.rb +0 -18
data/.irbrc CHANGED
@@ -1,2 +1,7 @@
1
1
  require 'bundler/setup'
2
2
  Bundler.require :default, :development
3
+
4
+ require 'fandango'
5
+
6
+ require './spec/support/helpers'
7
+ include SpecHelpers
data/README.md CHANGED
@@ -36,6 +36,4 @@ The movies are an array of hashes. Each hash contains title and Fandango's id.
36
36
 
37
37
  ## Todo
38
38
 
39
- * There's only 1 test at the moment. It's small enough. Later, may want to add more broken down tests.
40
- * Support for non-US postal codes
41
- * parse non-US postal codes (currently only parses digits -- i.e. US zipcodes).
39
+ * Remove Feezirra. For what we're doing, it's not worth the dependency. Just make request and parse ourselves.
@@ -18,26 +18,10 @@ Gem::Specification.new do |s|
18
18
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
19
  s.require_paths = ["lib"]
20
20
 
21
- s.add_runtime_dependency 'activesupport', '>= 3.0.8', '< 3.2.0'
22
- # Feedzirra 0.1.1 lists builder ~= 2.1.2,
23
- # but it works with builder >= 2.1.2.
24
- # ActiveSupport 3 depends on builder 3.
25
- # So we have to make a local copy of feedzirra until a newer gem is released.
26
- # And we have to include dependencies manually.
27
- # See https://github.com/pauldix/feedzirra/issues/77.
28
- # s.add_runtime_dependency 'feedzirra', '0.1.2'
29
-
30
- # Following dependencies copied from feedzirra's gemspec.
31
- s.add_runtime_dependency 'nokogiri', ['>= 1.4.4']
32
- s.add_runtime_dependency 'sax-machine', ['~> 0.1.0']
33
- s.add_runtime_dependency 'curb', ['~> 0.7.15']
34
- s.add_runtime_dependency 'builder', ['>= 2.1.2']
35
- s.add_runtime_dependency 'loofah', ['~> 1.2.0']
36
- s.add_runtime_dependency 'rdoc', ['~> 3.8']
37
- s.add_runtime_dependency 'rake', ['>= 0.8.7']
38
- s.add_runtime_dependency 'i18n', ['>= 0.5.0']
21
+ s.add_runtime_dependency 'nokogiri', '~> 1.0'
39
22
 
40
23
  s.add_development_dependency 'awesome_print'
41
- s.add_development_dependency 'mocha', '0.10.3'
42
- s.add_development_dependency 'minitest', '2.11.1'
24
+ s.add_development_dependency 'fakeweb', '1.3.0'
25
+ s.add_development_dependency 'minitest', '3.0.1'
26
+ s.add_development_dependency 'vcr', '2.1.1'
43
27
  end
@@ -1,5 +1,7 @@
1
1
  require "fandango/version"
2
- require 'feedzirra'
2
+
3
+ require 'open-uri'
4
+ require 'nokogiri'
3
5
 
4
6
  require 'fandango/parser'
5
7
 
@@ -9,30 +11,39 @@ module Fandango
9
11
 
10
12
  def movies_near(postal_code)
11
13
  raise ArgumentError, "postal code cannot be blank" if postal_code.nil? || postal_code == ''
12
- feed = fetch_and_parse(postal_code)
13
- feed.entries.map do |entry|
14
- parser = Parser.new(entry)
15
- hash = {}
16
- hash[:theater] = parser.parse_theater
17
- hash[:movies] = parser.parse_movies
18
- hash
19
- end
14
+ response = request(postal_code)
15
+ raise BadResponse.new(response) unless response.status.first == '200'
16
+ source = response.read
17
+ parse source
18
+ end
19
+
20
+ def request(postal_code)
21
+ open(url_for_postal_code(postal_code))
20
22
  end
21
23
 
22
- private
24
+ # Given RSS source string, parse using Nokogiri.
25
+ # Return hash of theaters and movies playing at each..
26
+ def parse(source)
27
+ Parser.parse(source)
28
+ end
29
+
30
+ private
31
+
32
+ def url_for_postal_code(postal_code)
33
+ cleaned_postal_code = clean_postal_code(postal_code)
34
+ "http://www.fandango.com/rss/moviesnearme_#{cleaned_postal_code}.rss"
35
+ end
23
36
 
24
- def fetch_and_parse(postal_code)
25
- cleaned_postal_code = postal_code.to_s.gsub(' ', '')
26
- feed = Feedzirra::Feed.fetch_and_parse("http://www.fandango.com/rss/moviesnearme_#{cleaned_postal_code}.rss")
27
- raise BadResponse.new(feed) unless feed.respond_to?(:entries)
28
- feed
37
+ # Remove spaces.
38
+ def clean_postal_code(postal_code)
39
+ postal_code.to_s.gsub(' ', '')
29
40
  end
30
41
 
31
42
  end
32
43
 
33
44
  class BadResponse < StandardError
34
45
  def initialize(response)
35
- super "Bad response: #{response.inspect}"
46
+ super "Bad response:\n#{response.inspect}"
36
47
  end
37
48
  end
38
49
 
@@ -0,0 +1,30 @@
1
+ module Fandango
2
+ module Movie
3
+
4
+ class << self
5
+
6
+ # Return array of movie attributes.
7
+ def parse(description_node)
8
+ description_node.css('li').map do |li|
9
+ {
10
+ title: parse_title(li),
11
+ id: parse_id(li),
12
+ }
13
+ end
14
+ end
15
+
16
+ private
17
+
18
+ def parse_title(li)
19
+ li.at_css('a').content
20
+ end
21
+
22
+ # E.g. '141081' in fandango.com/the+adventures+of+tintin+3d_141081/movietimes
23
+ def parse_id(li)
24
+ li.at_css('a')['href'].match(%r{fandango\.com/.*_(?<id>\d+)/movietimes})[:id]
25
+ end
26
+
27
+ end
28
+
29
+ end
30
+ end
@@ -1,24 +1,39 @@
1
- class Fandango::Parser
2
-
3
- # Cache entry.
4
- # Define entry.summary_doc as Nokogiri HTML document.
5
- # Both theater and movie parsers use summary, and we only want to use Nokogiri once per entry.
6
- def initialize(entry)
7
- @entry = entry
8
- @entry.define_singleton_method(:summary_doc) do
9
- @summary_doc ||= Nokogiri.HTML(summary)
1
+ require 'fandango/movie'
2
+ require 'fandango/theater'
3
+
4
+ module Fandango
5
+ class Parser
6
+
7
+ class << self
8
+
9
+ def parse(source)
10
+ parser = new(source)
11
+ parser.parse
12
+ end
13
+
14
+ # Description content is wrapped in CDATA.
15
+ # Parse it and return a parsed Nokogiri node.
16
+ def parse_description(item_node)
17
+ cdata = item_node.at_css('description')
18
+ Nokogiri::HTML(cdata.content)
19
+ end
20
+
10
21
  end
11
- end
12
22
 
13
- def parse_theater
14
- Theater.new(@entry).parse
15
- end
23
+ def initialize(source)
24
+ @source = source
25
+ end
16
26
 
17
- def parse_movies
18
- Movie.new(@entry).parse
19
- end
27
+ def parse
28
+ @doc = Nokogiri.XML(@source)
29
+ @doc.css('item').map do |item_node|
30
+ hash = {}
31
+ description_node = self.class.parse_description(item_node)
32
+ hash[:theater] = Theater.parse(item_node, description_node)
33
+ hash[:movies] = Movie.parse(description_node)
34
+ hash
35
+ end
36
+ end
20
37
 
38
+ end
21
39
  end
22
-
23
- require 'fandango/parsers/theater'
24
- require 'fandango/parsers/movie'
@@ -0,0 +1,50 @@
1
+ module Fandango
2
+ module Theater
3
+
4
+ class << self
5
+
6
+ def initialize(entry)
7
+ @entry = entry
8
+ end
9
+
10
+ def parse(item_node, description_node = nil)
11
+ description_node ||= Fandango::Parser.parse_description(item_node)
12
+ name = parse_name(item_node)
13
+ id = parse_id(item_node)
14
+ address = parse_address(description_node)
15
+ postal_code = parse_postal_code(address)
16
+
17
+ {
18
+ name: name,
19
+ id: id,
20
+ address: address,
21
+ postal_code: postal_code,
22
+ }
23
+ end
24
+
25
+ private
26
+
27
+ def parse_name(item_node)
28
+ item_node.at_css('title').content
29
+ end
30
+
31
+ # E.g. 'aaicu' in http://www.fandango.com/northpark7_aaicu/theaterpage
32
+ def parse_id(item_node)
33
+ item_node.
34
+ at_css('link').
35
+ content.
36
+ match(%r{fandango\.com/.*_(?<id>.*)/theaterpage})[:id]
37
+ end
38
+
39
+ def parse_address(description_node)
40
+ description_node.at_css('p').content
41
+ end
42
+
43
+ def parse_postal_code(address)
44
+ address.match(/(?<postal_code>\d+)$/)[:postal_code]
45
+ end
46
+
47
+ end
48
+
49
+ end
50
+ end
@@ -1,3 +1,3 @@
1
1
  module Fandango
2
- VERSION = "0.2.1"
2
+ VERSION = "1.0.0"
3
3
  end
@@ -5,39 +5,37 @@ describe Fandango do
5
5
  describe '.movies_near' do
6
6
 
7
7
  it 'returns hash of theaters and movies playing at each' do
8
- stub_feed 'movies_near_me_73142.rss'
9
- array = Fandango.movies_near(73142)
10
- array.size.must_equal 11
11
- hash = array.first
12
- # Check theater attributes.
13
- theater_atts = hash[:theater]
14
- theater_atts[:name].must_equal 'Northpark 7'
15
- theater_atts[:id].must_equal 'aaicu'
16
- theater_atts[:address].must_equal '12100 N. May Ave Oklahoma City, OK 73120'
17
- theater_atts[:postal_code].must_equal '73120'
18
- # Check movie attributes.
19
- movies_atts = hash[:movies]
20
- movies_atts.size.must_equal 8
21
- movies_atts.first[:title].must_equal 'Happy Feet Two'
8
+ VCR.use_cassette 'movies_near_me_73142' do
9
+ array = Fandango.movies_near(73142)
10
+ fixture_yaml = fixture_file_content('movies_near_me_73142.yaml')
11
+ array.to_yaml.must_equal fixture_yaml
12
+ end
22
13
  end
23
14
 
24
- it 'raises error if postal code nil' do
25
- proc { Fandango.movies_near(nil) }.must_raise(ArgumentError)
15
+ it 'raises error if postal code blank' do
16
+ proc { Fandango.movies_near('') }.must_raise(ArgumentError)
26
17
  end
27
18
 
28
- it 'raises BadResponse unless feedzirra feed responds to entries' do
29
- Feedzirra::Feed.expects(:fetch_and_parse).returns(0)
30
- proc { Fandango.movies_near(123) }.must_raise(Fandango::BadResponse)
19
+ it 'raises error if status code is not 200' do
20
+ response = MiniTest::Mock.new
21
+ response.expect(:status, ['500', 'not ok'])
22
+ Fandango.stub(:request, response) do
23
+ proc { Fandango.movies_near('does not matter') }.must_raise(Fandango::BadResponse)
24
+ end
31
25
  end
32
26
 
33
- it 'removes spaces from postal code' do
34
- feed = Object.new
35
- feed.stubs(:entries).returns([])
36
- url = 'http://www.fandango.com/rss/moviesnearme_ABC123.rss'
37
- Feedzirra::Feed.expects(:fetch_and_parse).with(url).returns(feed)
38
- Fandango.send(:fetch_and_parse, 'ABC 123')
27
+ end
28
+
29
+ specify '.request makes http request and returns response' do
30
+ VCR.use_cassette 'movies_near_me_73142' do
31
+ source = Fandango.request(73142).read
32
+ fixture_source = fixture_file_content('movies_near_me_73142.rss').chomp
33
+ source.must_equal fixture_source
39
34
  end
35
+ end
40
36
 
37
+ specify '.clean_postal_code removes spaces from postal code' do
38
+ Fandango.send(:clean_postal_code, 'ABC 123').must_equal 'ABC123'
41
39
  end
42
40
 
43
41
  end
@@ -0,0 +1,24 @@
1
+ require 'spec_helper'
2
+
3
+ describe Fandango::Movie do
4
+
5
+ specify '.parse parses RSS item into array of movie attribute hashes' do
6
+ description_node = description_node_from_fixture_file('item.html')
7
+ array = Fandango::Movie.parse(description_node)
8
+ array.must_equal [
9
+ {
10
+ title: 'Abraham Lincoln: Vampire Hunter',
11
+ 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
23
+
24
+ end
@@ -0,0 +1,12 @@
1
+ require 'spec_helper'
2
+
3
+ describe Fandango::Parser do
4
+
5
+ specify '.parse returns hash of results' do
6
+ source = fixture_file_content('movies_near_me_73142.rss')
7
+ array = Fandango::Parser.parse(source)
8
+ fixture_yaml = fixture_file_content('movies_near_me_73142.yaml')
9
+ array.to_yaml.must_equal fixture_yaml
10
+ end
11
+
12
+ end
@@ -2,11 +2,13 @@ require 'bundler/setup'
2
2
  Bundler.require :default, :development
3
3
 
4
4
  require 'minitest/autorun'
5
- require 'mocha'
5
+ require 'vcr'
6
6
 
7
7
  # require support files.
8
8
  Dir['./spec/support/**/*.rb'].each { |f| require f }
9
9
 
10
- class MiniTest::Spec
11
- include Macros
10
+ # VCR.
11
+ VCR.configure do |c|
12
+ c.cassette_library_dir = 'spec/support/vcr_cassettes'
13
+ c.hook_into :fakeweb
12
14
  end
@@ -0,0 +1 @@
1
+ <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></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&amp;wssac=123">Fandango.com Movies Near Me</source></item>
@@ -1 +1 @@
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>Fri, 03 Feb 2012 16:11:58 GMT</pubDate><ttl>1440</ttl><image><url>http://images.fandango.com/r86.8.1/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[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/happy+feet+two_149198/movietimes?location=73120&wssaffid=11836&wssac=123">Happy Feet Two</a></li><li><a href="http://www.fandango.com/j.+edgar_136358/movietimes?location=73120&wssaffid=11836&wssac=123">J. Edgar</a></li><li><a href="http://www.fandango.com/jack+and+jill_136357/movietimes?location=73120&wssaffid=11836&wssac=123">Jack and Jill</a></li><li><a href="http://www.fandango.com/new+year27s+eve_135733/movietimes?location=73120&wssaffid=11836&wssac=123">New Year's Eve</a></li><li><a href="http://www.fandango.com/puss+in+boots_131567/movietimes?location=73120&wssaffid=11836&wssac=123">Puss in Boots</a></li><li><a href="http://www.fandango.com/the+sitter_141158/movietimes?location=73120&wssaffid=11836&wssac=123">The Sitter</a></li><li><a href="http://www.fandango.com/tower+heist_141360/movietimes?location=73120&wssaffid=11836&wssac=123">Tower Heist</a></li><li><a href="http://www.fandango.com/the+twilight+saga3a+breaking+dawn++part+1_135730/movietimes?location=73120&wssaffid=11836&wssac=123">The Twilight Saga: Breaking Dawn - Part 1</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>Fri, 03 Feb 2012 16:11:58 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&amp;wssac=123">Fandango.com Movies Near Me</source></item><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/2012+best+picture+showcase_152224/movietimes?location=73134&wssaffid=11836&wssac=123">2012 Best Picture Showcase</a></li><li><a href="http://www.fandango.com/albert+nobbs_147666/movietimes?location=73134&wssaffid=11836&wssac=123">Albert Nobbs</a></li><li><a href="http://www.fandango.com/alvin+and+the+chipmunks3a+chipwrecked_141127/movietimes?location=73134&wssaffid=11836&wssac=123">Alvin and the Chipmunks: Chipwrecked</a></li><li><a href="http://www.fandango.com/andrew+lloyd+webber27s+love+never+dies_152085/movietimes?location=73134&wssaffid=11836&wssac=123">Andrew Lloyd Webber's Love Never Dies</a></li><li><a href="http://www.fandango.com/the+artist_140264/movietimes?location=73134&wssaffid=11836&wssac=123">The Artist</a></li><li><a href="http://www.fandango.com/beauty+and+the+beast+3d_128416/movietimes?location=73134&wssaffid=11836&wssac=123">Beauty and the Beast 3D</a></li><li><a href="http://www.fandango.com/big+miracle_141390/movietimes?location=73134&wssaffid=11836&wssac=123">Big Miracle</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/chronicle_147086/movietimes?location=73134&wssaffid=11836&wssac=123">Chronicle</a></li><li><a href="http://www.fandango.com/contraband_147339/movietimes?location=73134&wssaffid=11836&wssac=123">Contraband</a></li><li><a href="http://www.fandango.com/a+dangerous+method_136655/movietimes?location=73134&wssaffid=11836&wssac=123">A Dangerous Method</a></li><li><a href="http://www.fandango.com/the+descendants_142187/movietimes?location=73134&wssaffid=11836&wssac=123">The Descendants</a></li><li><a href="http://www.fandango.com/dr.+seuss27+the+lorax3a+an+imax+3d+experience_150200/movietimes?location=73134&wssaffid=11836&wssac=123">Dr. Seuss' the Lorax: An IMAX 3D Experience</a></li><li><a href="http://www.fandango.com/extremely+loud+26+incredibly+close_147129/movietimes?location=73134&wssaffid=11836&wssac=123">Extremely Loud & Incredibly Close</a></li><li><a href="http://www.fandango.com/ghost+rider3a+spirit+of+vengeance+3d_147109/movietimes?location=73134&wssaffid=11836&wssac=123">Ghost Rider: Spirit of Vengeance 3D</a></li><li><a href="http://www.fandango.com/the+girl+with+the+dragon+tattoo+2011_136440/movietimes?location=73134&wssaffid=11836&wssac=123">The Girl With the Dragon Tattoo (2011)</a></li><li><a href="http://www.fandango.com/the+grey_148465/movietimes?location=73134&wssaffid=11836&wssac=123">The Grey</a></li><li><a href="http://www.fandango.com/haywire_136667/movietimes?location=73134&wssaffid=11836&wssac=123">Haywire</a></li><li><a href="http://www.fandango.com/hugo_139935/movietimes?location=73134&wssaffid=11836&wssac=123">Hugo</a></li><li><a href="http://www.fandango.com/the+iron+lady_146070/movietimes?location=73134&wssaffid=11836&wssac=123">The Iron Lady</a></li><li><a href="http://www.fandango.com/john+carter+3d_147144/movietimes?location=73134&wssaffid=11836&wssac=123">John Carter 3D</a></li><li><a href="http://www.fandango.com/john+carter3a+an+imax+3d+experience_147145/movietimes?location=73134&wssaffid=11836&wssac=123">John Carter: An IMAX 3D Experience</a></li><li><a href="http://www.fandango.com/journey+23a+the+mysterious+island+3d_150722/movietimes?location=73134&wssaffid=11836&wssac=123">Journey 2: The Mysterious Island 3D</a></li><li><a href="http://www.fandango.com/joyful+noise_147069/movietimes?location=73134&wssaffid=11836&wssac=123">Joyful Noise</a></li><li><a href="http://www.fandango.com/la+phil+live3a+dudamel+conducts+mahler_146969/movietimes?location=73134&wssaffid=11836&wssac=123">LA Phil Live: Dudamel Conducts Mahler</a></li><li><a href="http://www.fandango.com/la+phil+live3a+gustavo+dudamel+and+herbie+hancock+celebrate+gershwin_151115/movietimes?location=73134&wssaffid=11836&wssac=123">LA Phil Live: Gustavo Dudamel and Herbie Hancock Celebrate Gershwin</a></li><li><a href="http://www.fandango.com/leonardo+live_151491/movietimes?location=73134&wssaffid=11836&wssac=123">Leonardo Live</a></li><li><a href="http://www.fandango.com/man+on+a+ledge_144463/movietimes?location=73134&wssaffid=11836&wssac=123">Man on a Ledge</a></li><li><a href="http://www.fandango.com/the+metropolitan+opera3a+ernani_146476/movietimes?location=73134&wssaffid=11836&wssac=123">The Metropolitan Opera: Ernani</a></li><li><a href="http://www.fandango.com/the+metropolitan+opera3a+gc3b6tterdc3a4mmerung_146475/movietimes?location=73134&wssaffid=11836&wssac=123">The Metropolitan Opera: Götterdämmerung</a></li><li><a href="http://www.fandango.com/the+metropolitan+opera3a+la+traviata_146479/movietimes?location=73134&wssaffid=11836&wssac=123">The Metropolitan Opera: La Traviata</a></li><li><a href="http://www.fandango.com/the+metropolitan+opera3a+manon_146478/movietimes?location=73134&wssaffid=11836&wssac=123">The Metropolitan Opera: Manon</a></li><li><a href="http://www.fandango.com/mission3a+impossible++ghost+protocol_131572/movietimes?location=73134&wssaffid=11836&wssac=123">Mission: Impossible - Ghost Protocol</a></li><li><a href="http://www.fandango.com/monumental3a+in+search+of+america27s+national+treasure_152082/movietimes?location=73134&wssaffid=11836&wssac=123">Monumental: In Search of America's National Treasure</a></li><li><a href="http://www.fandango.com/national+theater+live3a+the+comedy+of+errors_109087/movietimes?location=73134&wssaffid=11836&wssac=123">National Theater Live: The Comedy of Errors</a></li><li><a href="http://www.fandango.com/national+theatre+live3a+she+stoops+to+conquer+live_150242/movietimes?location=73134&wssaffid=11836&wssac=123">National Theatre Live: She Stoops to Conquer Live</a></li><li><a href="http://www.fandango.com/national+theatre+live3a+travelling+light+live_150243/movietimes?location=73134&wssaffid=11836&wssac=123">National Theatre Live: Travelling Light Live</a></li><li><a href="http://www.fandango.com/one+for+the+money_136682/movietimes?location=73134&wssaffid=11836&wssac=123">One for the Money</a></li><li><a href="http://www.fandango.com/puss+in+boots+3d_141565/movietimes?location=73134&wssaffid=11836&wssac=123">Puss in Boots 3D</a></li><li><a href="http://www.fandango.com/red+tails_136647/movietimes?location=73134&wssaffid=11836&wssac=123">Red Tails</a></li><li><a href="http://www.fandango.com/safe+house_147731/movietimes?location=73134&wssaffid=11836&wssac=123">Safe House</a></li><li><a href="http://www.fandango.com/the+secret+world+of+arrietty_141559/movietimes?location=73134&wssaffid=11836&wssac=123">The Secret World of Arrietty</a></li><li><a href="http://www.fandango.com/sherlock+holmes3a+a+game+of+shadows_135734/movietimes?location=73134&wssaffid=11836&wssac=123">Sherlock Holmes: A Game of Shadows</a></li><li><a href="http://www.fandango.com/star+wars3a+episode+i++the+phantom+menace+3d_142510/movietimes?location=73134&wssaffid=11836&wssac=123">Star Wars: Episode I -- The Phantom Menace 3D</a></li><li><a href="http://www.fandango.com/this+means+war_136948/movietimes?location=73134&wssaffid=11836&wssac=123">This Means War</a></li><li><a href="http://www.fandango.com/underworld+awakening+3d_146695/movietimes?location=73134&wssaffid=11836&wssac=123">Underworld Awakening 3D</a></li><li><a href="http://www.fandango.com/underworld+awakening3a+an+imax+3d+experience_146694/movietimes?location=73134&wssaffid=11836&wssac=123">Underworld Awakening: An IMAX 3D Experience</a></li><li><a href="http://www.fandango.com/the+vow_145942/movietimes?location=73134&wssaffid=11836&wssac=123">The Vow</a></li><li><a href="http://www.fandango.com/war+horse_134931/movietimes?location=73134&wssaffid=11836&wssac=123">War Horse</a></li><li><a href="http://www.fandango.com/we+bought+a+zoo_135736/movietimes?location=73134&wssaffid=11836&wssac=123">We Bought a Zoo</a></li><li><a href="http://www.fandango.com/the+woman+in+black_136701/movietimes?location=73134&wssaffid=11836&wssac=123">The Woman in Black</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>Fri, 03 Feb 2012 16:11:58 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&amp;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/chronicle_147086/movietimes?location=73118&wssaffid=11836&wssac=123">Chronicle</a></li><li><a href="http://www.fandango.com/the+descendants_142187/movietimes?location=73118&wssaffid=11836&wssac=123">The Descendants</a></li><li><a href="http://www.fandango.com/extremely+loud+26+incredibly+close_147129/movietimes?location=73118&wssaffid=11836&wssac=123">Extremely Loud & Incredibly Close</a></li><li><a href="http://www.fandango.com/the+grey_148465/movietimes?location=73118&wssaffid=11836&wssac=123">The Grey</a></li><li><a href="http://www.fandango.com/joyful+noise_147069/movietimes?location=73118&wssaffid=11836&wssac=123">Joyful Noise</a></li><li><a href="http://www.fandango.com/man+on+a+ledge_144463/movietimes?location=73118&wssaffid=11836&wssac=123">Man on a Ledge</a></li><li><a href="http://www.fandango.com/one+for+the+money_136682/movietimes?location=73118&wssaffid=11836&wssac=123">One for the Money</a></li><li><a href="http://www.fandango.com/red+tails_136647/movietimes?location=73118&wssaffid=11836&wssac=123">Red Tails</a></li><li><a href="http://www.fandango.com/underworld+awakening+3d_146695/movietimes?location=73118&wssaffid=11836&wssac=123">Underworld Awakening 3D</a></li><li><a href="http://www.fandango.com/the+woman+in+black_136701/movietimes?location=73118&wssaffid=11836&wssac=123">The Woman in Black</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>Fri, 03 Feb 2012 16:11:58 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&amp;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/chronicle_147086/movietimes?location=73127&wssaffid=11836&wssac=123">Chronicle</a></li><li><a href="http://www.fandango.com/the+descendants_142187/movietimes?location=73127&wssaffid=11836&wssac=123">The Descendants</a></li><li><a href="http://www.fandango.com/the+grey_148465/movietimes?location=73127&wssaffid=11836&wssac=123">The Grey</a></li><li><a href="http://www.fandango.com/kidtoons3a+barbie+in+a+mermaid+tale+2_151926/movietimes?location=73127&wssaffid=11836&wssac=123">Kidtoons: Barbie in a Mermaid Tale 2</a></li><li><a href="http://www.fandango.com/man+on+a+ledge_144463/movietimes?location=73127&wssaffid=11836&wssac=123">Man on a Ledge</a></li><li><a href="http://www.fandango.com/one+for+the+money_136682/movietimes?location=73127&wssaffid=11836&wssac=123">One for the Money</a></li><li><a href="http://www.fandango.com/underworld+awakening_131558/movietimes?location=73127&wssaffid=11836&wssac=123">Underworld Awakening</a></li><li><a href="http://www.fandango.com/war+horse_134931/movietimes?location=73127&wssaffid=11836&wssac=123">War Horse</a></li><li><a href="http://www.fandango.com/the+woman+in+black_136701/movietimes?location=73127&wssaffid=11836&wssac=123">The Woman in Black</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>Fri, 03 Feb 2012 16:11:58 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&amp;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>Fri, 03 Feb 2012 16:11:58 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&amp;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/act+of+valor_146457/movietimes?location=73111&wssaffid=11836&wssac=123">Act of Valor</a></li><li><a href="http://www.fandango.com/alvin+and+the+chipmunks3a+chipwrecked_141127/movietimes?location=73111&wssaffid=11836&wssac=123">Alvin and the Chipmunks: Chipwrecked</a></li><li><a href="http://www.fandango.com/andrew+lloyd+webber27s+love+never+dies_152085/movietimes?location=73111&wssaffid=11836&wssac=123">Andrew Lloyd Webber's Love Never Dies</a></li><li><a href="http://www.fandango.com/beauty+and+the+beast_131405/movietimes?location=73111&wssaffid=11836&wssac=123">Beauty and the Beast</a></li><li><a href="http://www.fandango.com/beauty+and+the+beast+3d_128416/movietimes?location=73111&wssaffid=11836&wssac=123">Beauty and the Beast 3D</a></li><li><a href="http://www.fandango.com/big+miracle_141390/movietimes?location=73111&wssaffid=11836&wssac=123">Big Miracle</a></li><li><a href="http://www.fandango.com/chronicle_147086/movietimes?location=73111&wssaffid=11836&wssac=123">Chronicle</a></li><li><a href="http://www.fandango.com/contraband_147339/movietimes?location=73111&wssaffid=11836&wssac=123">Contraband</a></li><li><a href="http://www.fandango.com/the+descendants_142187/movietimes?location=73111&wssaffid=11836&wssac=123">The Descendants</a></li><li><a href="http://www.fandango.com/extremely+loud+26+incredibly+close_147129/movietimes?location=73111&wssaffid=11836&wssac=123">Extremely Loud & Incredibly Close</a></li><li><a href="http://www.fandango.com/the+grey_148465/movietimes?location=73111&wssaffid=11836&wssac=123">The Grey</a></li><li><a href="http://www.fandango.com/haywire_136667/movietimes?location=73111&wssaffid=11836&wssac=123">Haywire</a></li><li><a href="http://www.fandango.com/hugo+3d_139936/movietimes?location=73111&wssaffid=11836&wssac=123">Hugo 3D</a></li><li><a href="http://www.fandango.com/john+carter+3d_147144/movietimes?location=73111&wssaffid=11836&wssac=123">John Carter 3D</a></li><li><a href="http://www.fandango.com/journey+23a+the+mysterious+island+3d_150722/movietimes?location=73111&wssaffid=11836&wssac=123">Journey 2: The Mysterious Island 3D</a></li><li><a href="http://www.fandango.com/joyful+noise_147069/movietimes?location=73111&wssaffid=11836&wssac=123">Joyful Noise</a></li><li><a href="http://www.fandango.com/la+phil+live3a+dudamel+conducts+mahler_146969/movietimes?location=73111&wssaffid=11836&wssac=123">LA Phil Live: Dudamel Conducts Mahler</a></li><li><a href="http://www.fandango.com/la+phil+live3a+gustavo+dudamel+and+herbie+hancock+celebrate+gershwin_151115/movietimes?location=73111&wssaffid=11836&wssac=123">LA Phil Live: Gustavo Dudamel and Herbie Hancock Celebrate Gershwin</a></li><li><a href="http://www.fandango.com/leonardo+live_151491/movietimes?location=73111&wssaffid=11836&wssac=123">Leonardo Live</a></li><li><a href="http://www.fandango.com/man+on+a+ledge_144463/movietimes?location=73111&wssaffid=11836&wssac=123">Man on a Ledge</a></li><li><a href="http://www.fandango.com/the+metropolitan+opera3a+the+enchanted+island+encore_146474/movietimes?location=73111&wssaffid=11836&wssac=123">The Metropolitan Opera: The Enchanted Island Encore</a></li><li><a href="http://www.fandango.com/the+metropolitan+opera3a+ernani+encore_146477/movietimes?location=73111&wssaffid=11836&wssac=123">The Metropolitan Opera: Ernani Encore</a></li><li><a href="http://www.fandango.com/the+metropolitan+opera3a+ernani_146476/movietimes?location=73111&wssaffid=11836&wssac=123">The Metropolitan Opera: Ernani</a></li><li><a href="http://www.fandango.com/the+metropolitan+opera3a+gc3b6tterdc3a4mmerung_146475/movietimes?location=73111&wssaffid=11836&wssac=123">The Metropolitan Opera: Götterdämmerung</a></li><li><a href="http://www.fandango.com/the+metropolitan+opera3a+la+traviata+encore_147297/movietimes?location=73111&wssaffid=11836&wssac=123">The Metropolitan Opera: La Traviata Encore</a></li><li><a href="http://www.fandango.com/the+metropolitan+opera3a+la+traviata_146479/movietimes?location=73111&wssaffid=11836&wssac=123">The Metropolitan Opera: La Traviata</a></li><li><a href="http://www.fandango.com/the+metropolitan+opera3a+manon+encore_146481/movietimes?location=73111&wssaffid=11836&wssac=123">The Metropolitan Opera: Manon Encore</a></li><li><a href="http://www.fandango.com/the+metropolitan+opera3a+manon_146478/movietimes?location=73111&wssaffid=11836&wssac=123">The Metropolitan Opera: Manon</a></li><li><a href="http://www.fandango.com/mission3a+impossible++ghost+protocol_131572/movietimes?location=73111&wssaffid=11836&wssac=123">Mission: Impossible - Ghost Protocol</a></li><li><a href="http://www.fandango.com/monumental3a+in+search+of+america27s+national+treasure_152082/movietimes?location=73111&wssaffid=11836&wssac=123">Monumental: In Search of America's National Treasure</a></li><li><a href="http://www.fandango.com/national+theater+live3a+the+comedy+of+errors_109087/movietimes?location=73111&wssaffid=11836&wssac=123">National Theater Live: The Comedy of Errors</a></li><li><a href="http://www.fandango.com/national+theatre+live3a+she+stoops+to+conquer+live_150242/movietimes?location=73111&wssaffid=11836&wssac=123">National Theatre Live: She Stoops to Conquer Live</a></li><li><a href="http://www.fandango.com/national+theatre+live3a+travelling+light+live_150243/movietimes?location=73111&wssaffid=11836&wssac=123">National Theatre Live: Travelling Light Live</a></li><li><a href="http://www.fandango.com/one+for+the+money_136682/movietimes?location=73111&wssaffid=11836&wssac=123">One for the Money</a></li><li><a href="http://www.fandango.com/red+tails_136647/movietimes?location=73111&wssaffid=11836&wssac=123">Red Tails</a></li><li><a href="http://www.fandango.com/sherlock+holmes3a+a+game+of+shadows_135734/movietimes?location=73111&wssaffid=11836&wssac=123">Sherlock Holmes: A Game of Shadows</a></li><li><a href="http://www.fandango.com/star+wars3a+episode+i++the+phantom+menace+3d_142510/movietimes?location=73111&wssaffid=11836&wssac=123">Star Wars: Episode I -- The Phantom Menace 3D</a></li><li><a href="http://www.fandango.com/underworld+awakening_131558/movietimes?location=73111&wssaffid=11836&wssac=123">Underworld Awakening</a></li><li><a href="http://www.fandango.com/underworld+awakening+3d_146695/movietimes?location=73111&wssaffid=11836&wssac=123">Underworld Awakening 3D</a></li><li><a href="http://www.fandango.com/we+bought+a+zoo_135736/movietimes?location=73111&wssaffid=11836&wssac=123">We Bought a Zoo</a></li><li><a href="http://www.fandango.com/the+woman+in+black_136701/movietimes?location=73111&wssaffid=11836&wssac=123">The Woman in Black</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>Fri, 03 Feb 2012 16:11:58 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&amp;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/big+miracle_141390/movietimes?location=73099&wssaffid=11836&wssac=123">Big Miracle</a></li><li><a href="http://www.fandango.com/chronicle_147086/movietimes?location=73099&wssaffid=11836&wssac=123">Chronicle</a></li><li><a href="http://www.fandango.com/extremely+loud+26+incredibly+close_147129/movietimes?location=73099&wssaffid=11836&wssac=123">Extremely Loud & Incredibly Close</a></li><li><a href="http://www.fandango.com/the+grey_148465/movietimes?location=73099&wssaffid=11836&wssac=123">The Grey</a></li><li><a href="http://www.fandango.com/the+woman+in+black_136701/movietimes?location=73099&wssaffid=11836&wssac=123">The Woman in Black</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>Fri, 03 Feb 2012 16:11:58 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&amp;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/extreme_227/movietimes?location=73111&wssaffid=11836&wssac=123">Extreme</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>Fri, 03 Feb 2012 16:11:58 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&amp;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/beauty+and+the+beast_131405/movietimes?location=73099&wssaffid=11836&wssac=123">Beauty and the Beast</a></li><li><a href="http://www.fandango.com/beauty+and+the+beast+3d_128416/movietimes?location=73099&wssaffid=11836&wssac=123">Beauty and the Beast 3D</a></li><li><a href="http://www.fandango.com/contraband_147339/movietimes?location=73099&wssaffid=11836&wssac=123">Contraband</a></li><li><a href="http://www.fandango.com/the+devil+inside_147102/movietimes?location=73099&wssaffid=11836&wssac=123">The Devil Inside</a></li><li><a href="http://www.fandango.com/joyful+noise_147069/movietimes?location=73099&wssaffid=11836&wssac=123">Joyful Noise</a></li><li><a href="http://www.fandango.com/man+on+a+ledge_144463/movietimes?location=73099&wssaffid=11836&wssac=123">Man on a Ledge</a></li><li><a href="http://www.fandango.com/one+for+the+money_136682/movietimes?location=73099&wssaffid=11836&wssac=123">One for the Money</a></li><li><a href="http://www.fandango.com/red+tails_136647/movietimes?location=73099&wssaffid=11836&wssac=123">Red Tails</a></li><li><a href="http://www.fandango.com/underworld+awakening_131558/movietimes?location=73099&wssaffid=11836&wssac=123">Underworld Awakening</a></li><li><a href="http://www.fandango.com/underworld+awakening+3d_146695/movietimes?location=73099&wssaffid=11836&wssac=123">Underworld Awakening 3D</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>Fri, 03 Feb 2012 16:11:58 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&amp;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/beauty+and+the+beast+3d_128416/movietimes?location=73104&wssaffid=11836&wssac=123">Beauty and the Beast 3D</a></li><li><a href="http://www.fandango.com/big+miracle_141390/movietimes?location=73104&wssaffid=11836&wssac=123">Big Miracle</a></li><li><a href="http://www.fandango.com/chronicle_147086/movietimes?location=73104&wssaffid=11836&wssac=123">Chronicle</a></li><li><a href="http://www.fandango.com/contraband_147339/movietimes?location=73104&wssaffid=11836&wssac=123">Contraband</a></li><li><a href="http://www.fandango.com/the+descendants_142187/movietimes?location=73104&wssaffid=11836&wssac=123">The Descendants</a></li><li><a href="http://www.fandango.com/the+devil+inside_147102/movietimes?location=73104&wssaffid=11836&wssac=123">The Devil Inside</a></li><li><a href="http://www.fandango.com/extremely+loud+26+incredibly+close_147129/movietimes?location=73104&wssaffid=11836&wssac=123">Extremely Loud & Incredibly Close</a></li><li><a href="http://www.fandango.com/the+girl+with+the+dragon+tattoo+2011_136440/movietimes?location=73104&wssaffid=11836&wssac=123">The Girl With the Dragon Tattoo (2011)</a></li><li><a href="http://www.fandango.com/the+grey_148465/movietimes?location=73104&wssaffid=11836&wssac=123">The Grey</a></li><li><a href="http://www.fandango.com/haywire_136667/movietimes?location=73104&wssaffid=11836&wssac=123">Haywire</a></li><li><a href="http://www.fandango.com/hugo+3d_139936/movietimes?location=73104&wssaffid=11836&wssac=123">Hugo 3D</a></li><li><a href="http://www.fandango.com/i+am+bruce+lee_151770/movietimes?location=73104&wssaffid=11836&wssac=123">I Am Bruce Lee</a></li><li><a href="http://www.fandango.com/journey+23a+the+mysterious+island_135727/movietimes?location=73104&wssaffid=11836&wssac=123">Journey 2: The Mysterious Island</a></li><li><a href="http://www.fandango.com/journey+23a+the+mysterious+island+3d_150722/movietimes?location=73104&wssaffid=11836&wssac=123">Journey 2: The Mysterious Island 3D</a></li><li><a href="http://www.fandango.com/joyful+noise_147069/movietimes?location=73104&wssaffid=11836&wssac=123">Joyful Noise</a></li><li><a href="http://www.fandango.com/man+on+a+ledge_144463/movietimes?location=73104&wssaffid=11836&wssac=123">Man on a Ledge</a></li><li><a href="http://www.fandango.com/mission3a+impossible++ghost+protocol_131572/movietimes?location=73104&wssaffid=11836&wssac=123">Mission: Impossible - Ghost Protocol</a></li><li><a href="http://www.fandango.com/one+for+the+money_136682/movietimes?location=73104&wssaffid=11836&wssac=123">One for the Money</a></li><li><a href="http://www.fandango.com/red+tails_136647/movietimes?location=73104&wssaffid=11836&wssac=123">Red Tails</a></li><li><a href="http://www.fandango.com/safe+house_147731/movietimes?location=73104&wssaffid=11836&wssac=123">Safe House</a></li><li><a href="http://www.fandango.com/sherlock+holmes3a+a+game+of+shadows_135734/movietimes?location=73104&wssaffid=11836&wssac=123">Sherlock Holmes: A Game of Shadows</a></li><li><a href="http://www.fandango.com/star+wars3a+episode+i++the+phantom+menace+3d_142510/movietimes?location=73104&wssaffid=11836&wssac=123">Star Wars: Episode I -- The Phantom Menace 3D</a></li><li><a href="http://www.fandango.com/underworld+awakening_131558/movietimes?location=73104&wssaffid=11836&wssac=123">Underworld Awakening</a></li><li><a href="http://www.fandango.com/underworld+awakening+3d_146695/movietimes?location=73104&wssaffid=11836&wssac=123">Underworld Awakening 3D</a></li><li><a href="http://www.fandango.com/the+vow_145942/movietimes?location=73104&wssaffid=11836&wssac=123">The Vow</a></li><li><a href="http://www.fandango.com/the+woman+in+black_136701/movietimes?location=73104&wssaffid=11836&wssac=123">The Woman in Black</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>Fri, 03 Feb 2012 16:11:58 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&amp;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><ul><li><a href="http://www.fandango.com/alvin+and+the+chipmunks3a+chipwrecked_141127/movietimes?location=73109&wssaffid=11836&wssac=123">Alvin and the Chipmunks: Chipwrecked</a></li><li><a href="http://www.fandango.com/we+bought+a+zoo_135736/movietimes?location=73109&wssaffid=11836&wssac=123">We Bought a Zoo</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>Fri, 03 Feb 2012 16:11:58 GMT</pubDate><source url="http://www.fandango.com/rss/moviesnearme_73142.rss?wssaffid=11836&amp;wssac=123">Fandango.com Movies Near Me</source></item></channel></rss>
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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;wssac=123">Fandango.com Movies Near Me</source></item></channel></rss>
@@ -0,0 +1,349 @@
1
+ ---
2
+ - :theater:
3
+ :name: AMC Quail Springs Mall 24
4
+ :id: aaktw
5
+ :address: 2501 West Memorial Oklahoma City, OK 73134
6
+ :postal_code: '73134'
7
+ :movies:
8
+ - :title: ! 'Abraham Lincoln: Vampire Hunter'
9
+ :id: '141897'
10
+ - :title: The Amazing Spider-Man 3D
11
+ :id: '141122'
12
+ - :title: The Amazing Spider-Man
13
+ :id: '126975'
14
+ - :title: ! 'The Amazing Spider-Man: An IMAX 3D Experience'
15
+ :id: '153829'
16
+ - :title: Battleship
17
+ :id: '130096'
18
+ - :title: The Best Exotic Marigold Hotel
19
+ :id: '147777'
20
+ - :title: Brave
21
+ :id: '136016'
22
+ - :title: Bully
23
+ :id: '145958'
24
+ - :title: Chernobyl Diaries
25
+ :id: '152960'
26
+ - :title: Chimpanzee
27
+ :id: '116882'
28
+ - :title: Dark Shadows
29
+ :id: '147176'
30
+ - :title: The Dictator
31
+ :id: '145763'
32
+ - :title: Happiest Baby and Happiest Toddler Live With Dr. Karp
33
+ :id: '154921'
34
+ - :title: The Hunger Games
35
+ :id: '136944'
36
+ - :title: The Lucky One
37
+ :id: '145457'
38
+ - :title: ! 'Madagascar 3: Europe''s Most Wanted 3D'
39
+ :id: '151457'
40
+ - :title: Marvel's The Avengers
41
+ :id: '30154'
42
+ - :title: Marvel's The Avengers 3D
43
+ :id: '151545'
44
+ - :title: Men in Black III
45
+ :id: '135737'
46
+ - :title: Men in Black III 3D
47
+ :id: '147264'
48
+ - :title: ! 'Men in Black III: An IMAX 3D Experience'
49
+ :id: '148659'
50
+ - :title: ! 'National Theater Live: Frankenstein (Original Casting)'
51
+ :id: '137637'
52
+ - :title: ! 'National Theater Live: Frankenstein (Reverse Casting)'
53
+ :id: '142883'
54
+ - :title: The Pirates! Band of Misfits
55
+ :id: '146664'
56
+ - :title: Prometheus 3D
57
+ :id: '152981'
58
+ - :title: ! 'Prometheus: An IMAX 3D Experience'
59
+ :id: '153676'
60
+ - :title: Ratatouille
61
+ :id: '98260'
62
+ - :title: Snow White and the Huntsman
63
+ :id: '141533'
64
+ - :title: Ted
65
+ :id: '136691'
66
+ - :title: The Tempest Starring Christopher Plummer
67
+ :id: '155187'
68
+ - :title: That's My Boy
69
+ :id: '149081'
70
+ - :title: Think Like a Man
71
+ :id: '147732'
72
+ - :title: Toy Story 3
73
+ :id: '124782'
74
+ - :title: Up
75
+ :id: '114055'
76
+ - :title: WALL-E
77
+ :id: '102903'
78
+ - :title: What to Expect When You're Expecting
79
+ :id: '120322'
80
+ - :theater:
81
+ :name: Northpark 7
82
+ :id: aaicu
83
+ :address: 12100 N. May Ave Oklahoma City, OK 73120
84
+ :postal_code: '73120'
85
+ :movies:
86
+ - :title: 21 Jump Street
87
+ :id: '131465'
88
+ - :title: ! 'Alvin and the Chipmunks: Chipwrecked'
89
+ :id: '141127'
90
+ - :title: American Reunion
91
+ :id: '145402'
92
+ - :title: Dr. Seuss' The Lorax
93
+ :id: '51897'
94
+ - :title: Dr. Seuss' The Lorax 3D
95
+ :id: '148858'
96
+ - :title: John Carter
97
+ :id: '130633'
98
+ - :title: John Carter 3D
99
+ :id: '147144'
100
+ - :title: ! 'Journey 2: The Mysterious Island'
101
+ :id: '135727'
102
+ - :title: Mirror Mirror
103
+ :id: '143278'
104
+ - :title: Wrath of the Titans
105
+ :id: '140654'
106
+ - :theater:
107
+ :name: Dickinson Penn Square 10
108
+ :id: aagtg
109
+ :address: 1901 NW Expressway Oklahoma City, OK 73118
110
+ :postal_code: '73118'
111
+ :movies:
112
+ - :title: Battleship
113
+ :id: '130096'
114
+ - :title: Chernobyl Diaries
115
+ :id: '152960'
116
+ - :title: Dark Shadows
117
+ :id: '147176'
118
+ - :title: The Dictator
119
+ :id: '145763'
120
+ - :title: Marvel's The Avengers
121
+ :id: '30154'
122
+ - :title: Marvel's The Avengers 3D
123
+ :id: '151545'
124
+ - :title: Men in Black III
125
+ :id: '135737'
126
+ - :title: Men in Black III 3D
127
+ :id: '147264'
128
+ - :title: What to Expect When You're Expecting
129
+ :id: '120322'
130
+ - :theater:
131
+ :name: B&B Theatres Windsor 10
132
+ :id: aavud
133
+ :address: 4623 A. N.W. 23rd St. Oklahoma City, OK 73127
134
+ :postal_code: '73127'
135
+ :movies:
136
+ - :title: Battleship
137
+ :id: '130096'
138
+ - :title: Chernobyl Diaries
139
+ :id: '152960'
140
+ - :title: Dark Shadows
141
+ :id: '147176'
142
+ - :title: The Dictator
143
+ :id: '145763'
144
+ - :title: Marvel's The Avengers
145
+ :id: '30154'
146
+ - :title: Marvel's The Avengers 3D
147
+ :id: '151545'
148
+ - :title: Men in Black III
149
+ :id: '135737'
150
+ - :title: Men in Black III 3D
151
+ :id: '147264'
152
+ - :title: What to Expect When You're Expecting
153
+ :id: '120322'
154
+ - :theater:
155
+ :name: Kickingbird Cinema
156
+ :id: aaenx
157
+ :address: 1225 East Danforth Rd Edmond, OK 73083
158
+ :postal_code: '73083'
159
+ :movies: []
160
+ - :theater:
161
+ :name: Cinemark Tinseltown
162
+ :id: aaitg
163
+ :address: 6001 Martin Luther King Blvd. Oklahoma City, OK 73111
164
+ :postal_code: '73111'
165
+ :movies:
166
+ - :title: The Amazing Spider-Man 3D
167
+ :id: '141122'
168
+ - :title: Anna Bolena Met Summer Encore
169
+ :id: '154543'
170
+ - :title: Battleship
171
+ :id: '130096'
172
+ - :title: Bernie
173
+ :id: '149564'
174
+ - :title: The Best Exotic Marigold Hotel
175
+ :id: '147777'
176
+ - :title: Cabaret
177
+ :id: '104412'
178
+ - :title: Chernobyl Diaries
179
+ :id: '152960'
180
+ - :title: Citizen Kane
181
+ :id: '1439'
182
+ - :title: A Clockwork Orange
183
+ :id: '370'
184
+ - :title: Cool Hand Luke
185
+ :id: '15758'
186
+ - :title: Cowgirls n' Angels
187
+ :id: '154322'
188
+ - :title: Crooked Arrows
189
+ :id: '154422'
190
+ - :title: Dark Shadows
191
+ :id: '147176'
192
+ - :title: DCI 2012 Tour Premiere
193
+ :id: '154934'
194
+ - :title: Der Rosenkavalier Met Summer Encore
195
+ :id: '154548'
196
+ - :title: ! 'Diary of a Wimpy Kid: Rodrick Rules'
197
+ :id: '139535'
198
+ - :title: The Dictator
199
+ :id: '145763'
200
+ - :title: Dolphin Tale
201
+ :id: '140092'
202
+ - :title: Don Giovanni Met Summer Encore
203
+ :id: '154545'
204
+ - :title: The Exorcist (1973)
205
+ :id: '90729'
206
+ - :title: Happiest Baby and Happiest Toddler Live With Dr. Karp
207
+ :id: '154921'
208
+ - :title: Happy Feet Two
209
+ :id: '149198'
210
+ - :title: The Hunger Games
211
+ :id: '136944'
212
+ - :title: ! 'Journey 2: The Mysterious Island'
213
+ :id: '135727'
214
+ - :title: Kung Fu Panda 2
215
+ :id: '119854'
216
+ - :title: Le Comte Ory Met Summer Encore
217
+ :id: '154544'
218
+ - :title: Les Contes d’Hoffmann Met Summer Encore
219
+ :id: '154546'
220
+ - :title: Linkin Park Living Things Concert Event
221
+ :id: '156066'
222
+ - :title: Lucia Di Lammermoor Met Summer Encore
223
+ :id: '154547'
224
+ - :title: ! 'Madagascar 3: Europe''s Most Wanted 3D'
225
+ :id: '151457'
226
+ - :title: Marvel's The Avengers
227
+ :id: '30154'
228
+ - :title: Marvel's The Avengers 3D
229
+ :id: '151545'
230
+ - :title: Men in Black III
231
+ :id: '135737'
232
+ - :title: Men in Black III 3D
233
+ :id: '147264'
234
+ - :title: ! 'National Theater Live: Frankenstein (Original Casting)'
235
+ :id: '137637'
236
+ - :title: ! 'National Theater Live: Frankenstein (Reverse Casting)'
237
+ :id: '142883'
238
+ - :title: North by Northwest
239
+ :id: '631'
240
+ - :title: Prometheus 3D
241
+ :id: '152981'
242
+ - :title: Puss in Boots
243
+ :id: '131567'
244
+ - :title: Rio The Movie
245
+ :id: '131571'
246
+ - :title: The Searchers
247
+ :id: '1926'
248
+ - :title: Snow White and the Huntsman
249
+ :id: '141533'
250
+ - :title: ! 'Star Trek: The Next Generation 25th Anniversary Event'
251
+ :id: '155848'
252
+ - :title: TCM Presents Singin' in the Rain 60th Anniversary Event
253
+ :id: '155652'
254
+ - :title: The Tempest Starring Christopher Plummer
255
+ :id: '155187'
256
+ - :title: That's Entertainment!
257
+ :id: '95288'
258
+ - :title: Think Like a Man
259
+ :id: '147732'
260
+ - :title: What to Expect When You're Expecting
261
+ :id: '120322'
262
+ - :title: Winnie the Pooh
263
+ :id: '141120'
264
+ - :title: Yogi Bear
265
+ :id: '32983'
266
+ - :theater:
267
+ :name: Yukon Movies 5
268
+ :id: aaict
269
+ :address: 1219 Garth Brooks Rd. Yukon, OK 73099
270
+ :postal_code: '73099'
271
+ :movies:
272
+ - :title: Battleship
273
+ :id: '130096'
274
+ - :title: Chernobyl Diaries
275
+ :id: '152960'
276
+ - :title: The Dictator
277
+ :id: '145763'
278
+ - :title: What to Expect When You're Expecting
279
+ :id: '120322'
280
+ - :theater:
281
+ :name: OmniDome Theatre
282
+ :id: aaopy
283
+ :address: 2100 NE 52nd Street Oklahoma City, OK 73111
284
+ :postal_code: '73111'
285
+ :movies:
286
+ - :title: Tornado Alley
287
+ :id: '140948'
288
+ - :theater:
289
+ :name: Dickinson West End Pointe 8 Theatre
290
+ :id: aauol
291
+ :address: 12825 NW 10th Yukon, OK 73099
292
+ :postal_code: '73099'
293
+ :movies:
294
+ - :title: 21 Jump Street
295
+ :id: '131465'
296
+ - :title: Dark Shadows
297
+ :id: '147176'
298
+ - :title: The Hunger Games
299
+ :id: '136944'
300
+ - :title: Marvel's The Avengers
301
+ :id: '30154'
302
+ - :title: Marvel's The Avengers 3D
303
+ :id: '151545'
304
+ - :title: Men in Black III
305
+ :id: '135737'
306
+ - :title: Men in Black III 3D
307
+ :id: '147264'
308
+ - :title: Mirror Mirror
309
+ :id: '143278'
310
+ - :title: The Pirates! Band of Misfits
311
+ :id: '146664'
312
+ - :theater:
313
+ :name: Harkins Cine Capri Bricktown
314
+ :id: aaswz
315
+ :address: 150 East Reno Ave. Oklahoma City, OK 73104
316
+ :postal_code: '73104'
317
+ :movies:
318
+ - :title: Battleship
319
+ :id: '130096'
320
+ - :title: The Best Exotic Marigold Hotel
321
+ :id: '147777'
322
+ - :title: Chernobyl Diaries
323
+ :id: '152960'
324
+ - :title: Cowgirls n' Angels
325
+ :id: '154322'
326
+ - :title: Dark Shadows
327
+ :id: '147176'
328
+ - :title: The Dictator
329
+ :id: '145763'
330
+ - :title: Marvel's The Avengers
331
+ :id: '30154'
332
+ - :title: Marvel's The Avengers 3D
333
+ :id: '151545'
334
+ - :title: Men in Black III
335
+ :id: '135737'
336
+ - :title: Men in Black III 3D
337
+ :id: '147264'
338
+ - :title: Snow White and the Huntsman
339
+ :id: '141533'
340
+ - :title: Think Like a Man
341
+ :id: '147732'
342
+ - :title: What to Expect When You're Expecting
343
+ :id: '120322'
344
+ - :theater:
345
+ :name: AAFES Base Theatre
346
+ :id: aaqbg
347
+ :address: 3000 S. Douglas Ave. Oklahoma City, OK 73109
348
+ :postal_code: '73109'
349
+ :movies: []