mirror of
https://github.com/Rhinemann/IoT-Systems.git
synced 2026-03-14 20:50:39 +02:00
18 lines
275 B
Python
18 lines
275 B
Python
|
|
from csv import reader
|
||
|
|
import config
|
||
|
|
|
||
|
|
|
||
|
|
class FileReader:
|
||
|
|
def __init__(
|
||
|
|
self, data_filename: str,
|
||
|
|
) -> None:
|
||
|
|
pass
|
||
|
|
|
||
|
|
def read(self):
|
||
|
|
return [1, 2, 3]
|
||
|
|
|
||
|
|
def startReading(self, *args, **kwargs):
|
||
|
|
|
||
|
|
def stopReading(self, *args, **kwargs):
|
||
|
|
|