This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
This is Python implementation of Repository pattern for accessing Data model | |
in an Object Oriented manner, simulating collection interface and abstracting | |
persistence operations. | |
The Repository also has Factory method for dealing with different Databases. Another | |
approach is to add direct engine string ingestion to the Repository __init__ method. | |
""" | |
from abc import ABC |