It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
Is it possible to parse my library of games on GOG to create a .csv file? I'm wanting to catalog my games on GOG and while I could just type them into an excel spreadsheet I know there is a faster way to do it.
Lookup gogrepo or adalia fundamentals on this general forum, they both have extra fnctionality to get this information.
Use gogrepo! With that tool you can download a gog-manifest.dat file that contains all informations about your library, all purchases, all games, all downloads, checksums and so on. The informations are stored in Python syntax (a huge list with other lists and dictionaries inside), so you can import these informations in a python script easily with:

from ast import literal_eval
manifest = literal_eval(open('gog-manifest.dat').read())
for index, game in enumerate(manifest): print index + 1, game['long_title']


That little script above prints all your purchased games:
1 1954 Alcatraz
2 80 Days
3 A Bird Story
4 A Golden Wake
5 A New Beginning: Final Cut
6 Agatha Christie - The ABC Murders
7 Age of Wonders
8 Age of Wonders 2: The Wizard's Throne
9 Age of Wonders 3
10 ...

https://www.gog.com/forum/general/gogrepopy_python_script_for_regularly_backing_up_your_purchased_gog_collection_for_full_offline_e/page1
Post edited June 30, 2017 by Lebostein
Cool! Thanks to the both of you!