revisit 0.0.9__py2.py3-none-any.whl → 0.0.11__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- revisit/models.py +260 -1
- revisit/revisit.py +27 -15
- revisit/static/widget.css +1 -0
- revisit/static/widget.js +7 -6
- {revisit-0.0.9.dist-info → revisit-0.0.11.dist-info}/METADATA +2 -2
- revisit-0.0.11.dist-info/RECORD +9 -0
- revisit-0.0.9.dist-info/RECORD +0 -9
- {revisit-0.0.9.dist-info → revisit-0.0.11.dist-info}/WHEEL +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: revisit
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.11
|
4
4
|
Requires-Dist: anywidget
|
5
5
|
Requires-Dist: ipykernel>=6.29.5
|
6
6
|
Requires-Dist: pydantic>=2.10.5
|
@@ -63,7 +63,7 @@ in the notebook.
|
|
63
63
|
## CODE GEN
|
64
64
|
|
65
65
|
```bash
|
66
|
-
datamodel-codegen --input StudyConfigSchema.json --output models.py --custom-template-dir custom_templates --output-model-type pydantic_v2.BaseModel --additional-imports typing.TypedDict --input-file-type jsonschema --special-field-name-prefix we_are_going_to_replace_this && sed -i '' 's/we_are_going_to_replace_this_//g' src/revisit/models.py
|
66
|
+
datamodel-codegen --input StudyConfigSchema.json --output src/revisit/models.py --custom-template-dir custom_templates --output-model-type pydantic_v2.BaseModel --additional-imports "typing.TypedDict, warnings" --input-file-type jsonschema --special-field-name-prefix we_are_going_to_replace_this && sed -i '' 's/we_are_going_to_replace_this_//g' src/revisit/models.py
|
67
67
|
```
|
68
68
|
|
69
69
|
## TESTS
|
@@ -0,0 +1,9 @@
|
|
1
|
+
revisit/__init__.py,sha256=QCvYt8m9QwpjcK4dv6GlLMUDCzRXGy16cua1r2biNCg,255
|
2
|
+
revisit/models.py,sha256=FRy8IlUAtDS3gdmZwwvqR935lbViTPnnr7k0CAkDkzI,134084
|
3
|
+
revisit/revisit.py,sha256=J-ci4HhUq-bgkiH2s2mU5qntxio_r0-behQsQ7o_pY8,23361
|
4
|
+
revisit/widget.py,sha256=qx1xehXLLYlSdR44lDJ_nnb5czljsvGFBZNEV79G77I,1850
|
5
|
+
revisit/static/widget.css,sha256=GlTPXc8vQmM78wYzPsTppy3r_zOqG7sqY1hKSmmmZNk,2769
|
6
|
+
revisit/static/widget.js,sha256=UjufNoAG0qIo5JFx95wDEuxc8MWtAAE18qG2V5f0U6M,1356847
|
7
|
+
revisit-0.0.11.dist-info/METADATA,sha256=ex90CXRxcfhry6uKNm8SIvrzY01huBojGJbcGmr1A48,1737
|
8
|
+
revisit-0.0.11.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
|
9
|
+
revisit-0.0.11.dist-info/RECORD,,
|
revisit-0.0.9.dist-info/RECORD
DELETED
@@ -1,9 +0,0 @@
|
|
1
|
-
revisit/__init__.py,sha256=QCvYt8m9QwpjcK4dv6GlLMUDCzRXGy16cua1r2biNCg,255
|
2
|
-
revisit/models.py,sha256=c-Hsd6XqeIP-hybH6MUovHG65XXueRhaMEVJZW1ViX0,120701
|
3
|
-
revisit/revisit.py,sha256=huYhGnzG5gL2KA3Lw0dIDCI8erm82uP6k5XDcoo_Q38,22683
|
4
|
-
revisit/widget.py,sha256=qx1xehXLLYlSdR44lDJ_nnb5czljsvGFBZNEV79G77I,1850
|
5
|
-
revisit/static/widget.css,sha256=TLu5F6k0CvowQtmApPswG-JZUXYszo7a10dVWKnZsIg,647
|
6
|
-
revisit/static/widget.js,sha256=MlZ2jHlh_ADsUKMC5nZaSAmW73-4y2B57NcS3E5Jh3Q,187153
|
7
|
-
revisit-0.0.9.dist-info/METADATA,sha256=CjEuDh8fO6tcv9DNXUzbEU1gtKFfhF3S7Ma6AXyzkDQ,1712
|
8
|
-
revisit-0.0.9.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
|
9
|
-
revisit-0.0.9.dist-info/RECORD,,
|
File without changes
|