29 lines
1.2 KiB
Python
29 lines
1.2 KiB
Python
|
from sweets import Sweets
|
||
|
|
||
|
|
||
|
def create_data_dict():
|
||
|
products_as_dict = []
|
||
|
|
||
|
sweet = Sweets('Mars', 'czekoladowy', 'baton', 'sredni', 2.49)
|
||
|
products_as_dict.append(vars(sweet))
|
||
|
sweet = Sweets('Mars', 'czekoladowy', 'czekolada', 'duzy', 4.99)
|
||
|
products_as_dict.append(vars(sweet))
|
||
|
sweet = Sweets('Mars', 'czekoladowy', 'czekolada', 'ogromny', 11.26)
|
||
|
products_as_dict.append(vars(sweet))
|
||
|
sweet = Sweets('M&M', 'czekoladowy', 'czekolada', 'duzy', 3.99)
|
||
|
products_as_dict.append(vars(sweet))
|
||
|
sweet = Sweets('M&M', 'czekoladowy', 'baton', 'sredni', 2.89)
|
||
|
products_as_dict.append(vars(sweet))
|
||
|
sweet = Sweets('Nestle', 'bananowy', 'landrynka', 'maly', 0.39)
|
||
|
products_as_dict.append(vars(sweet))
|
||
|
sweet = Sweets('Nestle', 'truskawkowy', 'landrynka', 'maly', 0.39)
|
||
|
products_as_dict.append(vars(sweet))
|
||
|
sweet = Sweets('Nestle', 'cola', 'landrynka', 'maly', 0.49)
|
||
|
products_as_dict.append(vars(sweet))
|
||
|
sweet = Sweets('Wedel', 'czekoladowy', 'baton', 'sredni', 1.99)
|
||
|
products_as_dict.append(vars(sweet))
|
||
|
sweet = Sweets('Maoam', 'truskawkowy', 'guma', 'maly', 0.25)
|
||
|
products_as_dict.append(vars(sweet))
|
||
|
|
||
|
return products_as_dict
|