update to 1.0.2

This commit is contained in:
Norbert
2024-07-12 12:13:55 +02:00
parent 3a0fc1f9cd
commit 577596d9f3
44 changed files with 5860 additions and 1957 deletions

View File

@@ -0,0 +1,19 @@
"""Module containing an abstract class."""
from abc import ABC, abstractmethod
class DataSourceDb(ABC):
"""Abstract class representing a data source."""
@abstractmethod
def save_record(self):
"""Transfer some data."""
raise NotImplementedError
@abstractmethod
def bulk_save(self):
"""Transfer multiple records of data."""
raise NotImplementedError