Jump to content

Recommended Posts

Hi,

I don't know if it is possible but I am creating a little program to catalog my game collection.

It would be awesome if my program could get the boxcover, developer info and game info with the titles I add.

Does anyone know how to get me started?

Link to comment
Share on other sites

  • Moderators

@Wingens welcome to the forum. Where would you be pulling this information from? Are you looking to manually input the data, and are just looking for a repository (database) to house it? Or are you looking to input a title and have the script search for the boxcover, developer info, etc. online? The more information you can give us, the better equipped we are to assist.

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

Link to comment
Share on other sites

  • Moderators

You could use InetGet to pull the files (see below). The problem with that approach is you're going to need to the URL for the files.

#include <InetConstants.au3>
$sUrl = "http://vgboxart.com/boxes/PSX/47732-final-fantasy-vii.png"
Local $boxCover = InetGet($sUrl, @DesktopDir & "\MyBoxCover.jpg", Default, $INET_DOWNLOADWAIT)

 

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

Link to comment
Share on other sites

There's a few scrapers out there like this already for Emulation Station. It would be a good start. There might be a pattern for the urls or you might have to open up an IE connection to fill out a search and go through the search results for the game that fits. Grab the url from the search and inet get the webpage.

https://github.com/sselph/scraper (Written in go, idk what language go is)

https://github.com/thadmiller/ES-scraper (Written in python)

Link to comment
Share on other sites

  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...