System.out.println("Auth must be provided in the form '-a[uth] username api_key'");
System.exit(0);
}
Map.Entry<String, String> authVals = auth.entrySet().iterator().next();
DataSiftConfig config = new DataSiftConfig(authVals.getKey(), authVals.getValue());
DataSiftClient dataSift = new DataSiftClient(config);
switch (parsedArgs.get("e")) {
case "core":
executeCore(dataSift, parsedArgs.get("c"), parsedArgs.map("p"));
break;