Skip to content

Commit

Permalink
Added examplatory reader stump
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Tonsen committed Oct 17, 2024
1 parent 5c23b88 commit a8b00c3
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/modules.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
::: pupil_labs.foo
::: pupil_labs.reader
28 changes: 28 additions & 0 deletions pupil_labs/reader.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
from pathlib import Path


class PTSIndexer:
pass


class IntIndexer:
pass


class Reader:
def __init__(self, path: Path):
raise NotImplementedError

@property
def by_pts(self) -> PTSIndexer:
raise NotImplementedError

@property
def by_idx(self) -> IntIndexer:
raise NotImplementedError

def __len__(self):
raise NotImplementedError

def __getitem__(self, idx):
raise NotImplementedError

0 comments on commit a8b00c3

Please sign in to comment.