revisit 0.0.20__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- revisit/StudyConfigSchema.json +2130 -0
- revisit/__init__.py +12 -0
- revisit/models.py +2827 -0
- revisit/revisit.py +768 -0
- revisit/static/widget.css +1 -0
- revisit/static/widget.js +55 -0
- revisit/widget.py +27 -0
- revisit-0.0.20.dist-info/METADATA +290 -0
- revisit-0.0.20.dist-info/RECORD +10 -0
- revisit-0.0.20.dist-info/WHEEL +5 -0
revisit/__init__.py
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
# Import main functions from core.py
|
2
|
+
from . import revisit
|
3
|
+
|
4
|
+
# Import all symbols
|
5
|
+
from .revisit import *
|
6
|
+
|
7
|
+
|
8
|
+
# Import the Widget class from widget.py
|
9
|
+
from .widget import Widget
|
10
|
+
|
11
|
+
# Expose them in the package's namespace
|
12
|
+
__all__ = [*revisit.__all__, "Widget"]
|