diff --git a/Logic/TrashRecognition/TrashProlog.py b/Logic/TrashRecognition/TrashProlog.py new file mode 100644 index 0000000..0f45b3f --- /dev/null +++ b/Logic/TrashRecognition/TrashProlog.py @@ -0,0 +1,10 @@ +from pyswip import Prolog + +def get_trash(day: str): + prolog = Prolog() + from os import sep # os invariant separator + prolog.consult(f"Logic{sep}TrashRecognition{sep}TrashKnowledge.pl") + print(list(prolog.query("collect_trash(X)"))) + +if __name__ == "__main__": + get_trash("monday") \ No newline at end of file