Use Imagenette with DataBunch

I was trying to load imagenette with databunch but couldnt figure out what the error i was getting meant. Someone help please

My Code:

data = (ImageList.from_folder(path)        
        .split_by_folder(train = 'train', valid = 'val')
        .label_from_folder()
        .Databunch()
        .normalize())

My error:

AttributeError                            Traceback (most recent call last)
<ipython-input-3-ac49894965fd> in <module>
      1 data = (ImageList.from_folder(path)        
----> 2         .split_by_folder(train = 'train', valid = 'val')
      3         .label_from_folder()
      4         .Databunch()
      5         .normalize())

D:\Program_files\lib\site-packages\fastai\data_block.py in __getattr__(self, k)
    465 
    466     def __getattr__(self, k):
--> 467         ft = getattr(self.train, k)
    468         if not isinstance(ft, Callable): return ft
    469         fv = getattr(self.valid, k)

D:\Program_files\lib\site-packages\fastai\data_block.py in __getattr__(self, k)
    638         res = getattr(y, k, None)
    639         if res is not None: return res
--> 640         raise AttributeError(k)
    641 
    642     def __setstate__(self,data:Any): self.__dict__.update(data)

AttributeError: Databunch