toddler_shop_api/src/data_connection.py

27 lines
1.7 KiB
Python
Raw Normal View History

from src.classes import product_classes
2024-09-04 10:08:41 +02:00
melon = product_classes.Product(name="Meloen", price=2.0, barcode=1000 ,image_filename="melon")
pear = product_classes.Product(name="Peer", price=1.0, barcode=1001 ,image_filename="pear")
peach = product_classes.Product(name="Perzik", price=1.0, barcode=1002 ,image_filename="peach")
orange = product_classes.Product(name="Appelsien", price=1.0, barcode=1003 ,image_filename="orange")
apple = product_classes.Product(name="Appel", price=1.0, barcode=1004 ,image_filename="apple")
banana = product_classes.Product(name="Banana", price=1.0, barcode=1005 ,image_filename="banana")
cherry = product_classes.Product(name="Kers", price=1.0, barcode=1006 ,image_filename="cherry")
kiwi = product_classes.Product(name="Kiwi", price=1.0, barcode=1007 ,image_filename="kiwi")
grape = product_classes.Product(name="Druif", price=2.0, barcode=1008 ,image_filename="grape")
strawberry = product_classes.Product(name="Aardbei", price=1.0, barcode=1009 ,image_filename="strawberry")
pineapple = product_classes.Product(name="Ananas", price=2.0, barcode=1010 ,image_filename="pineapple")
blueberry = product_classes.Product(name="Bosbes", price=1.0, barcode=1011 ,image_filename="blueberry")
raspberry = product_classes.Product(name="Framboos", price=1.0, barcode=1012 ,image_filename="raspberry")
lemon = product_classes.Product(name="Citroen", price=1.0, barcode=1013 ,image_filename="lemon")
product_list = [melon,pear,peach,orange,apple,banana,cherry,kiwi,grape,strawberry,pineapple,blueberry,raspberry,lemon]
def get_all_products() -> list[product_classes.Product]:
2024-08-04 10:23:58 +02:00
return product_list
def get_single_product(barcode: int) -> product_classes.Product:
for product in product_list:
if product.barcode == barcode:
return product