Project

fandango

0.02
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Find theaters and movies on sale near a given postal code
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

~> 1.0
 Project Readme

Fandango API Build Status

Fetch theaters near postal code and movies on sale at each.

Uses Fandango's RSS moviesnearme feed. E.g. https://www.fandango.com/rss/moviesnearme_10023.rss

Usage

theaters_and_movies = Fandango.movies_near(73142)
=begin
[
    [ 0] {
                  :name => "AMC Quail Springs Mall 24",
                    :id => "aaktw",
               :address => "2501 West Memorial Oklahoma City, OK 73134",
           :postal_code => "73134",
        :showtimes_link => "https://www.fandango.com/amcquailspringsmall24_aaktw/theaterpage?wssaffid=11836&wssac=123",
                :movies => [
            [ 0] {
                :title => "Abraham Lincoln: Vampire Hunter",
                   :id => "141897"
            },
            # ...
        ]
    },
    # ...
]
=end

movies_and_showtimes = Fandango.theater_showtimes(theaters_and_movies.first.fetch(:showtimes_link))
=begin
[
  {
          :title => "Bad Moms",
             :id => "191125",
        :runtime => 101,
      :showtimes => [
          [0] {
              :datetime => #<DateTime: 2016-08-02T11:30:00-05:00 ((2457603j,59400s,0n),-18000s,2299161j)>
          },
          # ...
      ]
  },
  # ...
=end

theaters_and_movies with id and different date

Fandango.theater_showtimes(
  :theater_id => theaters_and_movies.first.fetch(:id),
  :date => Date.tomorrow, # optional, defaults to `Date.today`
)

Compatibility

Development of this gem will only officially support Ruby versions 2.3.0. (see .travis.yml) It used to support 1.9.2. and 1.9.3, and it still may work, but it's not tested as of now. Contributions are very welcome, and I will do what I can to help.