Live data from Hacker News

Show HN: Yify gem

github.com

1–6 of 6 posts

Re: Show HN: Yify gem

#2
Interesting use for the API:

    curl -s https://yts.re/api/list.json\?sort\=date\&rating\=7\&limit\=50 | jq '.MovieList[] | { title: .MovieTitle, imdb: .ImdbLink, rating: .MovieRating, torrent: .TorrentUrl }'

Re: Show HN: Yify gem

#3
post #2

Interesting use for the API: curl -s https://yts.re/api/list.json\?sort\=date\&rating\=7\&limit\=50 | jq '.MovieList[] | { title: .MovieTitle, imdb: .ImdbLink, rating: .MovieRating, torrent: .TorrentUrl }'

I'm unfamiliar with the 'jq' command, what does that do?

Re: Show HN: Yify gem

#4
I wish the subtitles were available via this api. That would be super useful for a project I'm working on right now. There are a few other subtitle services out there with APIs but so far all either have a broken sign up process or have not sent me my API key after requesting one.

Re: Show HN: Yify gem

#5

I wish the subtitles were available via this api. That would be super useful for a project I'm working on right now. There are a few other subtitle services out there with APIs but so far all either have a broken sign up process or have not sent me my API key after requesting one.

Yes I agree, if they ever do I'll update the gem.

Re: Show HN: Yify gem

#6
post #2

Interesting use for the API: curl -s https://yts.re/api/list.json\?sort\=date\&rating\=7\&limit\=50 | jq '.MovieList[] | { title: .MovieTitle, imdb: .ImdbLink, rating: .MovieRating, torrent: .TorrentUrl }'

I'm unfamiliar with the 'jq' command, what does that do?

http://stedolan.github.io/jq/