Graph database Analysis of the Steam Network
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

34 lines
528 B

package net.jrtechs.www.webCrawler;
import net.jrtechs.www.SteamAPI.APIConnection;
import java.io.File;
/**
* Main class for digging up the entire
* steam network.
*
* @author Jeffery Russell
*/
public class SteamWebCrawler
{
private APIThrottler throttler;
private APIConnection connection;
private FileIO fileIO;
public void runSteamCrawler(String baseID)
{
}
public static void main(String args[])
{
new SteamWebCrawler().runSteamCrawler("76561198188400721");
}
}