CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sun, 03 Aug 2025 15:07:03 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100726023231
location: https://web.archive.org/web/20100726023231/https://github.com/maddox/tmdb_party
server-timing: captures_list;dur=0.800474, exclusion.robots;dur=0.024768, exclusion.robots.policy;dur=0.011190, esindex;dur=0.013352, cdx.remote;dur=36.059694, LoadShardBlock;dur=260.340240, PetaboxLoader3.datanode;dur=56.783654, PetaboxLoader3.resolve;dur=132.382778
x-app-server: wwwb-app204
x-ts: 302
x-tr: 343
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app204; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Sun, 03 Aug 2025 15:07:03 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Mon, 26 Jul 2010 02:32:31 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "b35b9bff7feb4ff1da98ec2e772865c0"
x-archive-orig-x-runtime: 46ms
x-archive-orig-content-length: 28630
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Mon, 26 Jul 2010 02:32:31 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Wed, 23 Sep 2009 21:40:45 GMT", ; rel="prev memento"; datetime="Wed, 23 Sep 2009 21:40:45 GMT", ; rel="memento"; datetime="Mon, 26 Jul 2010 02:32:31 GMT", ; rel="next memento"; datetime="Sat, 06 Nov 2010 13:54:27 GMT", ; rel="last memento"; datetime="Mon, 07 Sep 2020 00:12:38 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_17_20100725231501_crawl100-c/52_17_20100726023141_crawl101.arc.gz
server-timing: captures_list;dur=0.557355, exclusion.robots;dur=0.021974, exclusion.robots.policy;dur=0.011353, esindex;dur=0.009416, cdx.remote;dur=47.673058, LoadShardBlock;dur=159.869930, PetaboxLoader3.datanode;dur=174.145752, PetaboxLoader3.resolve;dur=129.728499, load_resource;dur=184.559469
x-app-server: wwwb-app204
x-ts: 200
x-tr: 456
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
maddox's tmdb_party at master - GitHub
maddox / tmdb_party forked from jduff/tmdb_party
- Source
- Commits
- Network (5)
- Downloads (6)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
Sending Request…
Simple ruby wrapper to themoviedb.org (https://api.themoviedb.org/2.0/docs/) using HTTParty — Read more
name | age | message | |
---|---|---|---|
![]() |
.document | Mon May 04 18:52:18 -0700 2009 | Initial commit to tmdb_party. [jduff] |
![]() |
.gitignore | Mon May 04 18:52:18 -0700 2009 | Initial commit to tmdb_party. [jduff] |
![]() |
LICENSE | Mon May 04 18:52:18 -0700 2009 | Initial commit to tmdb_party. [jduff] |
![]() |
README.rdoc | Sat May 15 14:07:29 -0700 2010 | Added myself as a contributor [Mange] |
![]() |
Rakefile | Tue Jul 06 08:42:11 -0700 2010 | finished merge [maddox] |
![]() |
VERSION.yml | Tue Nov 03 08:03:30 -0800 2009 | Version bump to 0.4.1 [maddox] |
![]() |
lib/ | Tue Jul 06 08:46:48 -0700 2010 | forgot to compare it against the new attr duhhhhhh [maddox] |
![]() |
spec/ | Fri May 21 06:52:09 -0700 2010 | Made it possible to fetch people from cast [Mange] |
![]() |
test/ | Tue Jul 06 08:42:11 -0700 2010 | finished merge [maddox] |
![]() |
tmdb_party.gemspec | Tue Jul 06 08:47:31 -0700 2010 | new gemspec [maddox] |
README.rdoc
tmdb_party
Simple ruby wrapper to themoviedb.org (api.themoviedb.org/2.0/docs/) using HTTParty
usage:
sudo gem install tmdb_party -s https://gemcutter.org require 'rubygems' require 'tmdb_party'
example:
@tmdb = TMDBParty::Base.new('key') results = @tmdb.search('transformers') results.length # => 5 transformers = results.detect{|m| m.name == "Transformers"} transformers.popularity # => 31 transformers.score # => 1.0 transformers.imdb_id # => 'tt0418279' # some attributes don't come back with the search result, they are lazily loaded on demand transformers.homepage # => "https://www.transformersmovie.com/" transformers.trailer.url # => "https://www.youtube.com/watch?v=eduwcuq1Exg" transformers.genres.collect{|cat| cat.name}.include?("Adventure") # => true
what is themoviedb.org?
It’s a movie database, kind of like IMDB except it’s more of a community wiki. They also have an api that they’re cool with people using. More on the api here: api.themoviedb.org/2.0/docs/
Contributors
Jon Maddox (github.com/maddox) Magnus Bergmark (github.com/Mange)
Copyright
Copyright © 2009 John Duff. See LICENSE for details.