示例#1
0
 def __init__(self):
     super().__init__()
     self.inner_dir = "imgs"
     self.match_cond = comparison(os.path.isdir)
示例#2
0
 def __init__(self):
     super().__init__()
     self.suffix = "jpg"
     self.match_cond = comparison(str.endswith, self.suffix)
示例#3
0
 def __init__(self):
     super().__init__()
     self.inner_dir = "original_recipes_info"
     self.suffix = "json"
     self.match_cond = comparison(str.endswith, self.suffix)