more info about details page
[ouya-game-data.git] / ouya-games.rst
1 **********************************
2 OUYA games in the Internet Archive
3 **********************************
4
5 https://archive.org/details/ouyalibrary
6
7 Fetch all items in the collection::
8
9   $ ia search collection:ouyalibrary | jq -r .identifier > ia-packages
10
11 Fetch data/files for one item::
12
13   $ curl -s https://archive.org/metadata/ouya_de.eiswuxe.blookid2_1.6|jq .
14
15 Extract discover images::
16
17   $ cat discover.json | jq 'reduce (.tiles[]| select(.package!=null)) as $i ({}; .[$i.package] = $i.image)'
18
19 (We simply use a scaled version of the main image as discover image)