Skip to content

mmcgary/fandango

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fandango API Build Status

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

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

Usage

Fandango.movies_near(73142) returns an array of hashes. Each hash has 2 items: theater info and movies on sale at that theater. A theater is a hash of data containing: name, Fandango's theater id, address, and postal code. The movies are an array of hashes. Each hash contains title and Fandango's id.

Example output format

[
    [ 0] {
        :theater => {
                   :name => "AMC",
                     :id => "abcde",
                :address => "123 Baker St., New York, NY 10001",
            :postal_code => "10001"
        },
         :movies => [
            [0] {
                :title => "Sherlock Holmes",
                   :id => "123456"
            },
            # more movies...
        ]
    },
    # more hashes...
]

About

fandango API

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%