Skip to content

Commit

Permalink
#24 - Support Local Projects
Browse files Browse the repository at this point in the history
- Create LocalInceptionAdapter for handling local INCEpTION projects
  • Loading branch information
serwarde committed Mar 2, 2025
1 parent 5cfedcf commit 1518ef6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pycaprio/core/adapters/local_adapter.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from pycaprio.core.interfaces.adapter import BaseInceptionAdapter


class LocalInceptionAdapter(BaseInceptionAdapter):
"""
Adapter for handling local INCEpTION projects stored as ZIP files.
"""

def __init__(self, local_projects_dir: str):
"""
Initializes the adapter with a directory containing ZIP files of exported INCEpTION projects.
"""
self.local_projects_dir = local_projects_dir

0 comments on commit 1518ef6

Please sign in to comment.