This repository has been archived on 2025-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
CS-340_Project1/app/main.py
2024-03-11 21:10:18 -04:00

13 lines
289 B
Python

from AnimalShelter import AnimalShelter
test = AnimalShelter(
password='Ex9Ai3Y2eP',
host='db'
)
test_criteria = {"breed": "Protogen"}
test_data = test.read(criteria=test_criteria)
for object in test_data:
print(object)
test.delete(criteria={"breed": "Protogen"}, once=True)