I had been using the undocumented Yahoo movies API until it was pulled a few days ago, so I'm looking for another way to retrieve local movie showtimes (ideally by theater). I found this thread about YQL datatables on SO, and the last post looked really promising. I just can't seem to figure out how to query the data to return local movies and showtimes. I've been trying variations on "SELECT * from movies.showtimes where location='myzip'" with no success. Any ideas?
1
There are 1 best solutions below
Related Questions in YQL
- Find all documents with exact expression
- Vespa query filter - how to check whether a specific int is in a document's int array<int> field
- Approximate nearest neighbors search returns too few results
- Receiving responses of different formats for the same query in vespa
- Dynamic targetHits in Vespa yql
- Bulk insert/update Vespa documents via HTTP POST and PUT method
- Batch check document existence in Vespa
- Vespa search query (on array) gives hits even after removing the element from array
- Documentation or Library to create server-side YQL
- No weather data from Yahoo Weather API
- YQL query service replacement now that Yahoo shut it down
- Is there a replacement for query.yahooapis.com YQL service that was just shut down?
- How to get a sub-field of a struct type map, in the search response of YQL query in Vespa?
- html table no longer supported
- yql?q= use "store://store-id" as OpenDataTable doesn't work anymore
Related Questions in MOVIES
- Gnuplot image to movie: Twinkling effect
- Why is data not being refreshed in StreamBuilder?
- Errno 24 Too many open files when using Psychopy
- separate columns with condition
- Tracking movie titles using Google Cloud Vision API
- How to get Youtube video by category in android?
- Rename avi files within nested folders to the top-most folder name and move them there
- Android Java.io.FileNotFoundException when trying to download and save a video
- Make a Movie with StreamSlice in Matlab
- PHP server hitting https://www.google.com/movies gets no results
- MySQL Left join 1 result for very big DataBase
- Creating movie scraping script
- Converting Movie Box Office to Numbers
- Submit movie showtimes in Google movies
- use Ajax and JavaScript to create dynamic links from the results
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
select * from movies.showtimesTo get a list of all movies. Then:
You could also do
There's no list by location, unfortunately