edsl 0.1.30.dev5__py3-none-any.whl → 0.1.31.dev1__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.
- edsl/__version__.py +1 -1
- edsl/coop/utils.py +9 -1
- edsl/jobs/buckets/TokenBucket.py +3 -3
- edsl/jobs/interviews/Interview.py +10 -10
- edsl/jobs/interviews/InterviewTaskBuildingMixin.py +9 -7
- edsl/jobs/tasks/QuestionTaskCreator.py +2 -3
- edsl/language_models/LanguageModel.py +6 -1
- edsl/language_models/ModelList.py +8 -2
- edsl/language_models/registry.py +12 -0
- edsl/questions/QuestionFunctional.py +8 -7
- edsl/questions/QuestionMultipleChoice.py +14 -12
- edsl/questions/descriptors.py +6 -4
- edsl/results/DatasetExportMixin.py +174 -76
- edsl/results/Result.py +13 -11
- edsl/results/Results.py +19 -16
- edsl/results/ResultsToolsMixin.py +1 -1
- edsl/scenarios/ScenarioList.py +44 -19
- edsl/scenarios/ScenarioListExportMixin.py +1 -1
- edsl/surveys/Survey.py +11 -8
- {edsl-0.1.30.dev5.dist-info → edsl-0.1.31.dev1.dist-info}/METADATA +2 -1
- {edsl-0.1.30.dev5.dist-info → edsl-0.1.31.dev1.dist-info}/RECORD +23 -23
- {edsl-0.1.30.dev5.dist-info → edsl-0.1.31.dev1.dist-info}/LICENSE +0 -0
- {edsl-0.1.30.dev5.dist-info → edsl-0.1.31.dev1.dist-info}/WHEEL +0 -0
edsl/scenarios/ScenarioList.py
CHANGED
@@ -1,12 +1,14 @@
|
|
1
1
|
"""A list of Scenarios to be used in a survey."""
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
|
+
from typing import Any, Optional, Union, List, Callable
|
4
5
|
import csv
|
5
6
|
import random
|
6
7
|
from collections import UserList, Counter
|
7
8
|
from collections.abc import Iterable
|
9
|
+
|
8
10
|
from simpleeval import EvalWithCompoundTypes
|
9
|
-
|
11
|
+
|
10
12
|
from edsl.Base import Base
|
11
13
|
from edsl.utilities.decorators import add_edsl_version, remove_edsl_version
|
12
14
|
from edsl.scenarios.Scenario import Scenario
|
@@ -58,7 +60,13 @@ class ScenarioList(Base, UserList, ScenarioListMixin):
|
|
58
60
|
return f"ScenarioList({self.data})"
|
59
61
|
|
60
62
|
def __mul__(self, other: ScenarioList) -> ScenarioList:
|
61
|
-
"""Takes the cross product of two ScenarioLists.
|
63
|
+
"""Takes the cross product of two ScenarioLists.
|
64
|
+
|
65
|
+
>>> s1 = ScenarioList.from_list("a", [1, 2])
|
66
|
+
>>> s2 = ScenarioList.from_list("b", [3, 4])
|
67
|
+
>>> s1 * s2
|
68
|
+
ScenarioList([Scenario({'a': 1, 'b': 3}), Scenario({'a': 1, 'b': 4}), Scenario({'a': 2, 'b': 3}), Scenario({'a': 2, 'b': 4})])
|
69
|
+
"""
|
62
70
|
from itertools import product
|
63
71
|
|
64
72
|
new_sl = []
|
@@ -79,7 +87,12 @@ class ScenarioList(Base, UserList, ScenarioListMixin):
|
|
79
87
|
return self.__mul__(other)
|
80
88
|
|
81
89
|
def shuffle(self, seed: Optional[str] = "edsl") -> ScenarioList:
|
82
|
-
"""Shuffle the ScenarioList.
|
90
|
+
"""Shuffle the ScenarioList.
|
91
|
+
|
92
|
+
>>> s = ScenarioList.from_list("a", [1,2,3,4])
|
93
|
+
>>> s.shuffle()
|
94
|
+
ScenarioList([Scenario({'a': 3}), Scenario({'a': 4}), Scenario({'a': 1}), Scenario({'a': 2})])
|
95
|
+
"""
|
83
96
|
random.seed(seed)
|
84
97
|
random.shuffle(self.data)
|
85
98
|
return self
|
@@ -107,10 +120,14 @@ class ScenarioList(Base, UserList, ScenarioListMixin):
|
|
107
120
|
return dict(Counter([scenario[field] for scenario in self]))
|
108
121
|
|
109
122
|
def sample(self, n: int, seed="edsl") -> ScenarioList:
|
110
|
-
"""Return a random sample from the ScenarioList
|
123
|
+
"""Return a random sample from the ScenarioList
|
111
124
|
|
112
|
-
|
113
|
-
|
125
|
+
>>> s = ScenarioList.from_list("a", [1,2,3,4,5,6])
|
126
|
+
>>> s.sample(3)
|
127
|
+
ScenarioList([Scenario({'a': 2}), Scenario({'a': 1}), Scenario({'a': 3})])
|
128
|
+
"""
|
129
|
+
|
130
|
+
random.seed(seed)
|
114
131
|
|
115
132
|
return ScenarioList(random.sample(self.data, n))
|
116
133
|
|
@@ -136,7 +153,9 @@ class ScenarioList(Base, UserList, ScenarioListMixin):
|
|
136
153
|
new_scenarios.append(new_scenario)
|
137
154
|
return ScenarioList(new_scenarios)
|
138
155
|
|
139
|
-
def mutate(
|
156
|
+
def mutate(
|
157
|
+
self, new_var_string: str, functions_dict: Optional[dict[str, Callable]] = None
|
158
|
+
) -> ScenarioList:
|
140
159
|
"""
|
141
160
|
Return a new ScenarioList with a new variable added.
|
142
161
|
|
@@ -145,6 +164,7 @@ class ScenarioList(Base, UserList, ScenarioListMixin):
|
|
145
164
|
>>> s = ScenarioList([Scenario({'a': 1, 'b': 2}), Scenario({'a': 1, 'b': 1})])
|
146
165
|
>>> s.mutate("c = a + b")
|
147
166
|
ScenarioList([Scenario({'a': 1, 'b': 2, 'c': 3}), Scenario({'a': 1, 'b': 1, 'c': 2})])
|
167
|
+
|
148
168
|
"""
|
149
169
|
if "=" not in new_var_string:
|
150
170
|
raise Exception(
|
@@ -264,6 +284,11 @@ class ScenarioList(Base, UserList, ScenarioListMixin):
|
|
264
284
|
return cls([Scenario({name: value}) for value in values])
|
265
285
|
|
266
286
|
def to_dataset(self) -> "Dataset":
|
287
|
+
"""
|
288
|
+
>>> s = ScenarioList.from_list("a", [1,2,3])
|
289
|
+
>>> s.to_dataset()
|
290
|
+
Dataset([{'a': [1, 2, 3]}])
|
291
|
+
"""
|
267
292
|
from edsl.results.Dataset import Dataset
|
268
293
|
|
269
294
|
keys = self[0].keys()
|
@@ -286,7 +311,7 @@ class ScenarioList(Base, UserList, ScenarioListMixin):
|
|
286
311
|
self.append(Scenario({name: value}))
|
287
312
|
return self
|
288
313
|
|
289
|
-
def add_value(self, name, value):
|
314
|
+
def add_value(self, name: str, value: Any) -> ScenarioList:
|
290
315
|
"""Add a value to all scenarios in a ScenarioList.
|
291
316
|
|
292
317
|
Example:
|
@@ -340,7 +365,7 @@ class ScenarioList(Base, UserList, ScenarioListMixin):
|
|
340
365
|
"""
|
341
366
|
return cls([Scenario(row) for row in df.to_dict(orient="records")])
|
342
367
|
|
343
|
-
def to_key_value(self, field, value=None) -> Union[dict, set]:
|
368
|
+
def to_key_value(self, field: str, value=None) -> Union[dict, set]:
|
344
369
|
"""Return the set of values in the field.
|
345
370
|
|
346
371
|
Example:
|
@@ -459,16 +484,16 @@ class ScenarioList(Base, UserList, ScenarioListMixin):
|
|
459
484
|
table.add_row(str(i), s.rich_print())
|
460
485
|
return table
|
461
486
|
|
462
|
-
def print(
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
):
|
469
|
-
|
470
|
-
|
471
|
-
|
487
|
+
# def print(
|
488
|
+
# self,
|
489
|
+
# format: Optional[str] = None,
|
490
|
+
# max_rows: Optional[int] = None,
|
491
|
+
# pretty_labels: Optional[dict] = None,
|
492
|
+
# filename: str = None,
|
493
|
+
# ):
|
494
|
+
# from edsl.utilities.interface import print_scenario_list
|
495
|
+
|
496
|
+
# print_scenario_list(self[:max_rows])
|
472
497
|
|
473
498
|
def __getitem__(self, key: Union[int, slice]) -> Any:
|
474
499
|
"""Return the item at the given index.
|
@@ -5,7 +5,7 @@ from edsl.results.DatasetExportMixin import DatasetExportMixin
|
|
5
5
|
|
6
6
|
|
7
7
|
def to_dataset(func):
|
8
|
-
"""Convert the
|
8
|
+
"""Convert the object to a Dataset object before calling the function."""
|
9
9
|
|
10
10
|
@wraps(func)
|
11
11
|
def wrapper(self, *args, **kwargs):
|
edsl/surveys/Survey.py
CHANGED
@@ -105,15 +105,15 @@ class Survey(SurveyExportMixin, SurveyFlowVisualizationMixin, Base):
|
|
105
105
|
from edsl.utilities.utilities import dict_hash
|
106
106
|
|
107
107
|
return dict_hash(self._to_dict())
|
108
|
-
|
108
|
+
|
109
109
|
def __add__(self, other: Survey) -> Survey:
|
110
110
|
"""Combine two surveys.
|
111
|
-
|
111
|
+
|
112
112
|
:param other: The other survey to combine with this one.
|
113
113
|
>>> s1 = Survey.example()
|
114
114
|
>>> from edsl import QuestionFreeText
|
115
115
|
>>> s2 = Survey([QuestionFreeText(question_text="What is your name?", question_name="yo")])
|
116
|
-
>>> s3 = s1 + s2
|
116
|
+
>>> s3 = s1 + s2
|
117
117
|
Traceback (most recent call last):
|
118
118
|
...
|
119
119
|
ValueError: ('Cannot combine two surveys with non-default rules.', "Please use the 'clear_non_default_rules' method to remove non-default rules from the survey.")
|
@@ -122,14 +122,17 @@ class Survey(SurveyExportMixin, SurveyFlowVisualizationMixin, Base):
|
|
122
122
|
4
|
123
123
|
|
124
124
|
"""
|
125
|
-
if
|
125
|
+
if (
|
126
|
+
len(self.rule_collection.non_default_rules) > 0
|
127
|
+
or len(other.rule_collection.non_default_rules) > 0
|
128
|
+
):
|
126
129
|
raise ValueError(
|
127
|
-
"Cannot combine two surveys with non-default rules.",
|
128
|
-
"Please use the 'clear_non_default_rules' method to remove non-default rules from the survey."
|
130
|
+
"Cannot combine two surveys with non-default rules.",
|
131
|
+
"Please use the 'clear_non_default_rules' method to remove non-default rules from the survey.",
|
129
132
|
)
|
130
133
|
|
131
134
|
return Survey(questions=self.questions + other.questions)
|
132
|
-
|
135
|
+
|
133
136
|
def clear_non_default_rules(self) -> Survey:
|
134
137
|
s = Survey()
|
135
138
|
for question in self.questions:
|
@@ -1181,5 +1184,5 @@ def main():
|
|
1181
1184
|
if __name__ == "__main__":
|
1182
1185
|
import doctest
|
1183
1186
|
|
1184
|
-
#doctest.testmod(optionflags=doctest.ELLIPSIS | doctest.SKIP)
|
1187
|
+
# doctest.testmod(optionflags=doctest.ELLIPSIS | doctest.SKIP)
|
1185
1188
|
doctest.testmod(optionflags=doctest.ELLIPSIS)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: edsl
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.31.dev1
|
4
4
|
Summary: Create and analyze LLM-based surveys
|
5
5
|
Home-page: https://www.expectedparrot.com/
|
6
6
|
License: MIT
|
@@ -35,6 +35,7 @@ Requires-Dist: python-docx (>=1.1.0,<2.0.0)
|
|
35
35
|
Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
|
36
36
|
Requires-Dist: restrictedpython (>=7.1,<8.0)
|
37
37
|
Requires-Dist: rich (>=13.7.0,<14.0.0)
|
38
|
+
Requires-Dist: setuptools (<72.0)
|
38
39
|
Requires-Dist: simpleeval (>=0.9.13,<0.10.0)
|
39
40
|
Requires-Dist: sqlalchemy (>=2.0.23,<3.0.0)
|
40
41
|
Requires-Dist: tenacity (>=8.2.3,<9.0.0)
|
@@ -1,7 +1,7 @@
|
|
1
1
|
edsl/Base.py,sha256=ttNxUotSd9LSEJl2w6LdMtT78d0nMQvYDJ0q4JkqBfg,8945
|
2
2
|
edsl/BaseDiff.py,sha256=RoVEh52UJs22yMa7k7jv8se01G62jJNWnBzaZngo-Ug,8260
|
3
3
|
edsl/__init__.py,sha256=E6PkWI_owu8AUc4uJs2XWDVozqSbcRWzsIqf8_Kskho,1631
|
4
|
-
edsl/__version__.py,sha256=
|
4
|
+
edsl/__version__.py,sha256=muI5jd-fDNbXxztFFWI5wdZkX6SVhOtKL4K3XxztZsg,28
|
5
5
|
edsl/agents/Agent.py,sha256=qNJsQkN6HuTKqJrQbuUEgRX3Wo7Dwukle0oNWPi0UIE,27191
|
6
6
|
edsl/agents/AgentList.py,sha256=_MsdeOEgaANAceLIXwuLC22mwlBn0ruGX4GEqz8_SSY,9467
|
7
7
|
edsl/agents/Invigilator.py,sha256=WNgGT9VRKpHbk__h-vd4LASgjnlJnzepf-2FxQ3K98I,10798
|
@@ -33,7 +33,7 @@ edsl/conversation/mug_negotiation.py,sha256=mjvAqErD4AjN3G2za2c-X-3axOShW-zAJUei
|
|
33
33
|
edsl/conversation/next_speaker_utilities.py,sha256=bqr5JglCd6bdLc9IZ5zGOAsmN2F4ERiubSMYvZIG7qk,3629
|
34
34
|
edsl/coop/__init__.py,sha256=4iZCwJSzJVyjBYk8ggGxY2kZjq9dXVT1jhyPDNyew4I,115
|
35
35
|
edsl/coop/coop.py,sha256=Kv6oUOZ9uuxxR59Rn6IG-tB3JaN2z8AnHVW8G-RSLQE,26928
|
36
|
-
edsl/coop/utils.py,sha256=
|
36
|
+
edsl/coop/utils.py,sha256=UZwljKYW_Yjw7RYcjOg3SW7fn1pyHQfJ1fM48TBNoss,3601
|
37
37
|
edsl/data/Cache.py,sha256=aR9ydTFvUWiRJZd2G7SLFFtZaS2At8ArbQ1SAhYZBDs,15629
|
38
38
|
edsl/data/CacheEntry.py,sha256=_5UiFaJQu_U-Z1_lEPt-h6Gaidp2Eunk02wOd3Ni3MQ,7252
|
39
39
|
edsl/data/CacheHandler.py,sha256=DTr8nJnbl_SidhsDetqbshu1DV-njPFiPPosUWTIBok,4789
|
@@ -70,14 +70,14 @@ edsl/jobs/Jobs.py,sha256=JrJcpTjR3wejMVvuFXZr7PHqCyj6zaRwqNu9eatvy9Y,29339
|
|
70
70
|
edsl/jobs/__init__.py,sha256=aKuAyd_GoalGj-k7djOoVwEbFUE2XLPlikXaA1_8yAg,32
|
71
71
|
edsl/jobs/buckets/BucketCollection.py,sha256=LA8DBVwMdeTFCbSDI0S2cDzfi_Qo6kRizwrG64tE8S4,1844
|
72
72
|
edsl/jobs/buckets/ModelBuckets.py,sha256=hxw_tzc0V42CiB7mh5jIxlgwDVJ-zFZhlLtKrHEg8ho,2419
|
73
|
-
edsl/jobs/buckets/TokenBucket.py,sha256=
|
74
|
-
edsl/jobs/interviews/Interview.py,sha256=
|
73
|
+
edsl/jobs/buckets/TokenBucket.py,sha256=2K9MV-8QRODK83jFNuD55kfEKhWGqk9ipC4IkMCh2gg,6008
|
74
|
+
edsl/jobs/interviews/Interview.py,sha256=gmSYBXQbFpE8X6dNaAYkLaWu0Zb_gJZsab5ydRD2JBg,11388
|
75
75
|
edsl/jobs/interviews/InterviewStatistic.py,sha256=hY5d2EkIJ96NilPpZAvZZzZoxLXM7ss3xx5MIcKtTPs,1856
|
76
76
|
edsl/jobs/interviews/InterviewStatisticsCollection.py,sha256=_ZZ0fnZBQiIywP9Q_wWjpWhlfcPe2cn32GKut10t5RI,788
|
77
77
|
edsl/jobs/interviews/InterviewStatusDictionary.py,sha256=MSyys4hOWe1d8gfsUvAPbcKrs8YiPnz8jpufBSJL7SU,2485
|
78
78
|
edsl/jobs/interviews/InterviewStatusLog.py,sha256=6u0F8gf5tha39VQL-IK_QPkCsQAYVOx_IesX7TDDX_A,3252
|
79
79
|
edsl/jobs/interviews/InterviewStatusMixin.py,sha256=VV0Pel-crUsLoGpTifeIIkXsLGj0bfuO--UtpRnH-dU,1251
|
80
|
-
edsl/jobs/interviews/InterviewTaskBuildingMixin.py,sha256=
|
80
|
+
edsl/jobs/interviews/InterviewTaskBuildingMixin.py,sha256=hP0XyNRjBZtEJ-c1l_Lo82Ff7WG3l1T2hb0UXDF0Oy0,11155
|
81
81
|
edsl/jobs/interviews/ReportErrors.py,sha256=RSzDU2rWwtjfztj7sqaMab0quCiY-X2bG3AEOxhTim8,1745
|
82
82
|
edsl/jobs/interviews/interview_exception_tracking.py,sha256=tIcX92udnkE5fcM5_WXjRF9xgTq2P0uaDXxZf3NQGG0,3271
|
83
83
|
edsl/jobs/interviews/interview_status_enum.py,sha256=KJ-1yLAHdX-p8TiFnM0M3v1tnBwkq4aMCuBX6-ytrI8,229
|
@@ -85,7 +85,7 @@ edsl/jobs/interviews/retry_management.py,sha256=9Efn4B3aV45vbocnF6J5WQt88i2FgFjo
|
|
85
85
|
edsl/jobs/runners/JobsRunnerAsyncio.py,sha256=L48NdyDiKrgUMQVwvd1wr2uOzT99oYfwXnlStDLHU9I,11934
|
86
86
|
edsl/jobs/runners/JobsRunnerStatusData.py,sha256=-mxcmX0a38GGO9DQ-ItTmj6mvCUk5uC-UudT77lXTG4,10327
|
87
87
|
edsl/jobs/runners/JobsRunnerStatusMixin.py,sha256=yxnXuOovwHgfDokNuluH_qulBcM0gCcbpCQibqVKXFI,3137
|
88
|
-
edsl/jobs/tasks/QuestionTaskCreator.py,sha256=
|
88
|
+
edsl/jobs/tasks/QuestionTaskCreator.py,sha256=f-hF7TMdMMjQ5AQMpMJXrFdBUNSLrLHHl1sun774f_U,10394
|
89
89
|
edsl/jobs/tasks/TaskCreators.py,sha256=DbCt5BzJ0CsMSquqLyLdk8el031Wst7vCszVW5EltX8,2418
|
90
90
|
edsl/jobs/tasks/TaskHistory.py,sha256=ZVellGW1cvwqdHt98dYPl0FYhk3VqRGHAZETDOxEkqg,10939
|
91
91
|
edsl/jobs/tasks/TaskStatusLog.py,sha256=bqH36a32F12fjX-M-4lNOhHaK2-WLFzKE-r0PxZPRjI,546
|
@@ -93,11 +93,11 @@ edsl/jobs/tasks/task_management.py,sha256=KMToZuXzMlnHRHUF_VHL0-lHMTGhklf2GHVuwE
|
|
93
93
|
edsl/jobs/tasks/task_status_enum.py,sha256=DOyrz61YlIS8R1W7izJNphcLrJ7I_ReUlfdRmk23h0Q,5333
|
94
94
|
edsl/jobs/tokens/InterviewTokenUsage.py,sha256=u_6-IHpGFwZ6qMEXr24-jyLVUSSp4dSs_4iAZsBv7O4,1100
|
95
95
|
edsl/jobs/tokens/TokenUsage.py,sha256=odj2-wDNEbHl9noyFAQ0DSKV0D9cv3aDOpmXufKZ8O4,1323
|
96
|
-
edsl/language_models/LanguageModel.py,sha256=
|
97
|
-
edsl/language_models/ModelList.py,sha256=
|
96
|
+
edsl/language_models/LanguageModel.py,sha256=cou6R-oNYk-_C8vfCQMkaeUbbAFEtBcG4d5lTZKN0YI,19082
|
97
|
+
edsl/language_models/ModelList.py,sha256=G8tzHqzz4exc28BGvGgVRk1Xwu8EDCiVWxMC5l8VnvI,2862
|
98
98
|
edsl/language_models/RegisterLanguageModelsMeta.py,sha256=2bvWrVau2BRo-Bb1aO-QATH8xxuW_tF7NmqBMGDOfSg,8191
|
99
99
|
edsl/language_models/__init__.py,sha256=bvY7Gy6VkX1gSbNkRbGPS-M1kUnb0EohL0FSagaEaTs,109
|
100
|
-
edsl/language_models/registry.py,sha256=
|
100
|
+
edsl/language_models/registry.py,sha256=D815xgW65iuqZTqjBu8II4uXpjpzl2vBHCB1zZ1Qqcw,3618
|
101
101
|
edsl/language_models/repair.py,sha256=xaNunBRpMWgceSPOzk-ugp5WXtgLuuhj23TgXUeOobw,5963
|
102
102
|
edsl/language_models/unused/ReplicateBase.py,sha256=J1oqf7mEyyKhRwNUomnptVqAsVFYCbS3iTW0EXpKtXo,3331
|
103
103
|
edsl/notebooks/Notebook.py,sha256=qwDqUN2Gujr7WUneRrshzRBjHvcPpOIBRyqcrAOc90Q,7341
|
@@ -124,9 +124,9 @@ edsl/questions/QuestionBudget.py,sha256=K8cc1YOfoLWRoZBAkWO7WsMDZne0a5oAJMSxv2Jz
|
|
124
124
|
edsl/questions/QuestionCheckBox.py,sha256=YHS-LEvR_1CWyg4usOlWfj9Gb_cCQlfIWIWhYRWn7Wo,6129
|
125
125
|
edsl/questions/QuestionExtract.py,sha256=fjnsNLS2fNW6dfFuRyc2EgKEHx8ujjONmg2nSRynje4,3988
|
126
126
|
edsl/questions/QuestionFreeText.py,sha256=ASj1s0EQYcZerJp476fscu_xEME8mKzVK3sPL6egiuU,3289
|
127
|
-
edsl/questions/QuestionFunctional.py,sha256=
|
127
|
+
edsl/questions/QuestionFunctional.py,sha256=jlC1eNE-kpp9o5CXKo-c3Re4PIq1_WmdJ66u9nD-W7w,4967
|
128
128
|
edsl/questions/QuestionList.py,sha256=Wf7xDXJsQBsAD_yOrzZ_GstKGT7aZjimTkU6qyqOhhM,4051
|
129
|
-
edsl/questions/QuestionMultipleChoice.py,sha256=
|
129
|
+
edsl/questions/QuestionMultipleChoice.py,sha256=C6FjGZxLESvpq76PjxbSR_yrrExJpEvF31JSbY1luuQ,6605
|
130
130
|
edsl/questions/QuestionNumerical.py,sha256=QArFDhP9Adb4l6y-udnUqPNk2Q6vT4pGsY13TkHsLGs,3631
|
131
131
|
edsl/questions/QuestionRank.py,sha256=NEAwDt1at0zEM2S-E7jXMjglnlB0WhUlxSVJkzH4xSs,5876
|
132
132
|
edsl/questions/RegisterQuestionsMeta.py,sha256=unON0CKpW-mveyhg9V3_BF_GYYwytMYP9h2ZZPetVNM,1994
|
@@ -138,25 +138,25 @@ edsl/questions/derived/QuestionLinearScale.py,sha256=7tybIaMaDTMkTFC6CymusW69so-
|
|
138
138
|
edsl/questions/derived/QuestionTopK.py,sha256=TouXKZt_h6Jd-2rAjkEOCJOzzei4Wa-3hjYq9CLxWws,2744
|
139
139
|
edsl/questions/derived/QuestionYesNo.py,sha256=KtMGuAPYWv-7-9WGa0fIS2UBxf6KKjFpuTk_h8FPZbg,2076
|
140
140
|
edsl/questions/derived/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
141
|
-
edsl/questions/descriptors.py,sha256=
|
141
|
+
edsl/questions/descriptors.py,sha256=W0_mGZKKiXv2E2BKIy8-4n_QDILh9sun85Oev1YRoLs,14791
|
142
142
|
edsl/questions/question_registry.py,sha256=ZD7Y_towDdlnnmLq12vVewgQ3fEk9Ur0tCTWK8-WqeQ,5241
|
143
143
|
edsl/questions/settings.py,sha256=er_z0ZW_dgmC5CHLWkaqBJiuWgAYzIund85M5YZFQAI,291
|
144
144
|
edsl/results/Dataset.py,sha256=DZgb3vIj69ON7APQ6DimjBwAS1xZvZiXOg68CjW9E3I,8662
|
145
|
-
edsl/results/DatasetExportMixin.py,sha256=
|
146
|
-
edsl/results/Result.py,sha256=
|
147
|
-
edsl/results/Results.py,sha256=
|
145
|
+
edsl/results/DatasetExportMixin.py,sha256=Iq3Kzdoc6HmjihdsFzj_mhmRpoeBwF8AREVK8FZmlaI,25047
|
146
|
+
edsl/results/Result.py,sha256=53lz1mGqmnt2wHl-Ccimbla7cNlg_mLUgOBQa6Qd19k,14433
|
147
|
+
edsl/results/Results.py,sha256=IUHfmcBVtZ3me4VvVBQsdKKtuMXaZtLkzIrH5US7aUY,38155
|
148
148
|
edsl/results/ResultsDBMixin.py,sha256=Vs95zbSB4G7ENY4lU7OBdekg9evwTrtPH0IIL2NAFTk,7936
|
149
149
|
edsl/results/ResultsExportMixin.py,sha256=XizBsPNxziyffirMA4kS7UHpYM1WIE4s1K-B7TqTfDw,1266
|
150
150
|
edsl/results/ResultsFetchMixin.py,sha256=VEa0TKDcXbnTinSKs9YaE4WjOSLmlp9Po1_9kklFvSo,848
|
151
151
|
edsl/results/ResultsGGMixin.py,sha256=SAYz8p4wb1g8x6KhBVz9NHOGib2c2XsqtTclpADrFeM,4344
|
152
|
-
edsl/results/ResultsToolsMixin.py,sha256=
|
152
|
+
edsl/results/ResultsToolsMixin.py,sha256=mseEFxJCf9sjXdIxpjITt_UZBwdXxw2o2VLg5jMrALA,3017
|
153
153
|
edsl/results/__init__.py,sha256=2YcyiVtXi-3vIV0ZzOy1PqBLm2gaziufJVi4fdNrAt8,80
|
154
154
|
edsl/scenarios/FileStore.py,sha256=AevvU1qdLSmL4Q7cb1PhUiaJk1i5T0sgkTKBYf0KDN4,8722
|
155
155
|
edsl/scenarios/Scenario.py,sha256=eQRMV6JD6mrlIMXc7-NK0I-LK5px2oC6rAR_w-qJPnE,14829
|
156
156
|
edsl/scenarios/ScenarioHtmlMixin.py,sha256=EmugmbPJYW5eZS30rM6pDMDQD9yrrvHjmgZWB1qBfq4,1882
|
157
157
|
edsl/scenarios/ScenarioImageMixin.py,sha256=VJ5FqyPrL5-ieORlWMpnjmOAFIau8QFZCIZyEBKgb6I,3530
|
158
|
-
edsl/scenarios/ScenarioList.py,sha256=
|
159
|
-
edsl/scenarios/ScenarioListExportMixin.py,sha256=
|
158
|
+
edsl/scenarios/ScenarioList.py,sha256=lFdhlVG9NMAuZ4MBzz7VoIMT3NVWaNUjEHhGOQm1Hn8,19631
|
159
|
+
edsl/scenarios/ScenarioListExportMixin.py,sha256=4fAcz_nfGrGZbzH_ZCWyf6CZoWxFvMM6xRJDWnYlevY,995
|
160
160
|
edsl/scenarios/ScenarioListPdfMixin.py,sha256=sRCHVG7z4u4ST4ce-I_Y4md8ZzC9-tj4an9PMouaHVg,3765
|
161
161
|
edsl/scenarios/__init__.py,sha256=KRwZCLf2R0qyJvv1NGbd8M51Bt6Ia6Iylg-Xq_2Fa6M,98
|
162
162
|
edsl/shared.py,sha256=lgLa-mCk2flIhxXarXLtfXZjXG_6XHhC2A3O8yRTjXc,20
|
@@ -170,7 +170,7 @@ edsl/surveys/Memory.py,sha256=-ikOtkkQldGB_BkPCW3o7AYwV5B_pIwlREw7aVCSHaQ,1113
|
|
170
170
|
edsl/surveys/MemoryPlan.py,sha256=BeLuqS5Q8G2jSluHYFCAxVmj7cNPK-rDQ3mUsuDjikQ,7979
|
171
171
|
edsl/surveys/Rule.py,sha256=ddZyZSObs4gsKtFSmcXkPigXDX8rrh1NFvAplP02TcA,11092
|
172
172
|
edsl/surveys/RuleCollection.py,sha256=sN7aYDQJG3HmE-WxohgpctcQbHewjwE6NAqEVTxvFP8,13359
|
173
|
-
edsl/surveys/Survey.py,sha256=
|
173
|
+
edsl/surveys/Survey.py,sha256=eB8S3KQ0d7nyJ0RqhCimmOXcO-d2_GquxvHMR0g6t90,48567
|
174
174
|
edsl/surveys/SurveyCSS.py,sha256=NjJezs2sTlgFprN6IukjGKwNYmNdXnLjzV2w5K4z4RI,8415
|
175
175
|
edsl/surveys/SurveyExportMixin.py,sha256=vj9bZReHx0wBK9sVuS0alzPIUDdg6AFFMd7bl1RKWKI,6555
|
176
176
|
edsl/surveys/SurveyFlowVisualizationMixin.py,sha256=Z-YqeedMqWOtCFy003YJ9aneJ1n4bn70lDoILwLtTc0,3966
|
@@ -197,7 +197,7 @@ edsl/utilities/interface.py,sha256=AaKpWiwWBwP2swNXmnFlIf3ZFsjfsR5bjXQAW47tD-8,1
|
|
197
197
|
edsl/utilities/repair_functions.py,sha256=tftmklAqam6LOQQu_-9U44N-llycffhW8LfO63vBmNw,929
|
198
198
|
edsl/utilities/restricted_python.py,sha256=5-_zUhrNbos7pLhDl9nr8d24auRlquR6w-vKkmNjPiA,2060
|
199
199
|
edsl/utilities/utilities.py,sha256=oU5Gg6szTGqsJ2yBOS0aC3XooezLE8By3SdrQLLpqvA,10107
|
200
|
-
edsl-0.1.
|
201
|
-
edsl-0.1.
|
202
|
-
edsl-0.1.
|
203
|
-
edsl-0.1.
|
200
|
+
edsl-0.1.31.dev1.dist-info/LICENSE,sha256=_qszBDs8KHShVYcYzdMz3HNMtH-fKN_p5zjoVAVumFc,1111
|
201
|
+
edsl-0.1.31.dev1.dist-info/METADATA,sha256=tsrurkFgZhvJzc-CO2ZiYEAoBmVHYyYgULThTH8kcWQ,4137
|
202
|
+
edsl-0.1.31.dev1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
203
|
+
edsl-0.1.31.dev1.dist-info/RECORD,,
|
File without changes
|
File without changes
|