Example #1
0
 public DanbooruEtlProcess(string configFilePath, string downloadDest)
 {
     ParseConfig(configFilePath);
     extract   = new ExtractChangesDanbooru(observedTags, downloadDest);
     transform = new TransformChangesDanbooru(possibleTransformations);
     load      = new LoadChangesDanbooru();
 }
Example #2
0
        public DanbooruEtlProcess(string configFilePath, string tag, string downloadDest)
        {
            ParseConfig(configFilePath);
            List <string> list = new List <string>();

            list.Add(tag);
            extract   = new ExtractChangesDanbooru(list, downloadDest);
            transform = new TransformChangesDanbooru(possibleTransformations);
            load      = new LoadChangesDanbooru();
        }