ed-api-client 0.1.0__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.
@@ -0,0 +1,530 @@
1
+ from dataclasses import dataclass, field
2
+ from typing import List, Dict, Set
3
+ import datetime
4
+ import dateutil.parser
5
+ import pylcs
6
+ import re
7
+
8
+ from ed_api_client.websockets import File
9
+
10
+
11
+ def getOverlap(idx):
12
+
13
+ aStart = None
14
+ aEnd = None
15
+
16
+ bStart = None
17
+ bEnd = None
18
+
19
+ for i in range(0, len(idx)):
20
+ if idx[i] >= 0:
21
+ if aStart is None:
22
+ aStart = i
23
+ bStart = idx[i]
24
+ else:
25
+ if aStart is not None:
26
+ aEnd = i
27
+ bEnd = idx[i - 1] + 1
28
+ break
29
+
30
+ if aStart is None:
31
+ return None, None
32
+
33
+ if aEnd is None:
34
+ aEnd = len(idx)
35
+ bEnd = idx[len(idx) - 1] + 1
36
+
37
+ return (aStart, aEnd), (bStart, bEnd)
38
+
39
+
40
+ def getMaskedSection(text, start=None, end=None, maskChar="~"):
41
+ if start is None:
42
+ start = 0
43
+
44
+ if end is None:
45
+ end = len(text)
46
+
47
+ return "".join(
48
+ [text[i] if text[i] == "\n" else maskChar for i in range(start, end)]
49
+ )
50
+
51
+
52
+ def getCodeCharacterCount(text):
53
+
54
+ count = 0
55
+
56
+ for i in range(0, len(text)):
57
+ if text[i].isspace():
58
+ continue
59
+ if text[i] == "}" or text[i] == ")":
60
+ continue
61
+
62
+ count += 1
63
+
64
+ return count
65
+
66
+
67
+ def getMaskedProportion(text, maskChar="~", ignoreChar='#'):
68
+
69
+ whitespaceCount = 0
70
+ maskedCount = 0
71
+ unmaskedCount = 0
72
+
73
+ for i in range(0, len(text)):
74
+ if text[i].isspace() or text[i] == ignoreChar:
75
+ whitespaceCount += 1
76
+ elif text[i] == maskChar:
77
+ maskedCount += 1
78
+ else:
79
+ unmaskedCount += 1
80
+
81
+ if maskedCount + unmaskedCount == 0:
82
+ return 0
83
+ else:
84
+ return maskedCount / (maskedCount + unmaskedCount)
85
+
86
+
87
+ def getPastedSections(code, pastes, minOverlapLength=5):
88
+
89
+ offsets = []
90
+ for i in range(0, len(code)):
91
+ if code[i].isspace():
92
+ continue
93
+ offsets.append(i)
94
+
95
+ # print(code)
96
+ # print(offsets)
97
+
98
+ maskedCode = re.sub(r"\s+", "", code)
99
+ pastedSections = []
100
+
101
+ ps = [re.sub(r"\s+", "", p) for p in pastes]
102
+
103
+ while len(ps) > 0:
104
+
105
+ ps.sort(key=len, reverse=True)
106
+
107
+ paste = ps.pop(0)
108
+ if len(paste) < minOverlapLength:
109
+ break
110
+
111
+ idx = pylcs.lcs_string_idx(maskedCode, paste)
112
+
113
+ overlapCode, overlapPaste = getOverlap(idx)
114
+ if overlapCode is None:
115
+ continue
116
+
117
+ overlapLength = overlapCode[1] - overlapCode[0]
118
+
119
+ if overlapLength < minOverlapLength:
120
+ continue
121
+
122
+ pastedSections.append(
123
+ (offsets[overlapCode[0]], offsets[overlapCode[1] - 1] + 1)
124
+ )
125
+
126
+ maskedCode = (
127
+ maskedCode[: overlapCode[0]]
128
+ + ("~" * overlapLength)
129
+ + maskedCode[overlapCode[1] :]
130
+ )
131
+
132
+ pasteRemainderA = paste[: overlapPaste[0]]
133
+ if len(pasteRemainderA) >= minOverlapLength:
134
+ ps.append(pasteRemainderA)
135
+
136
+ pasteRemainderB = paste[overlapPaste[1] :]
137
+ if len(pasteRemainderB) >= minOverlapLength:
138
+ ps.append(pasteRemainderB)
139
+
140
+ return pastedSections
141
+
142
+
143
+ @dataclass
144
+ class Event:
145
+ at: datetime.datetime
146
+ clientId: int
147
+ userId: int
148
+
149
+ type: str = field(default=None, init=False)
150
+
151
+ def from_json(json: dict):
152
+
153
+ t = json.get("type")
154
+ if t == "join":
155
+ return JoinEvent.from_json(json)
156
+ if t == "init":
157
+ return InitEvent.from_json(json)
158
+ if t == "cursor":
159
+ return CursorEvent.from_json(json)
160
+ if t == "edit":
161
+ return EditEvent.from_json(json)
162
+ if t == "leave":
163
+ return LeaveEvent.from_json(json)
164
+
165
+ print("unhandled event type", t, json)
166
+
167
+
168
+ @dataclass
169
+ class AttemptEvent(Event):
170
+ type = "attempt"
171
+
172
+ def from_timestamp(timestamp: str):
173
+ return AttemptEvent(dateutil.parser.isoparse(timestamp), None, None)
174
+
175
+
176
+ @dataclass
177
+ class SubmissionEvent(Event):
178
+ type = "submission"
179
+ passed: bool
180
+
181
+ def from_json(json: dict):
182
+ return SubmissionEvent(
183
+ dateutil.parser.isoparse(json["at"]), None, None, json["passed"]
184
+ )
185
+
186
+
187
+ @dataclass
188
+ class JoinEvent(Event):
189
+ type = "join"
190
+
191
+ def from_json(json: dict):
192
+ return JoinEvent(
193
+ dateutil.parser.isoparse(json["at"]), json["client_id"], json["user_id"]
194
+ )
195
+
196
+
197
+ @dataclass
198
+ class LeaveEvent(Event):
199
+ type = "leave"
200
+
201
+ def from_json(json: dict):
202
+ return LeaveEvent(
203
+ dateutil.parser.isoparse(json["at"]), json["client_id"], json["user_id"]
204
+ )
205
+
206
+
207
+ @dataclass
208
+ class InitEvent(Event):
209
+
210
+ type = "init"
211
+ fileId: int
212
+ contents: str
213
+
214
+ def from_json(json: dict):
215
+ # print(json)
216
+ return InitEvent(
217
+ dateutil.parser.isoparse(json["at"]),
218
+ json["client_id"],
219
+ json["user_id"],
220
+ json.get("data", {}).get("file_id", ""),
221
+ json.get("data", {}).get("contents", ""),
222
+ )
223
+
224
+
225
+ @dataclass
226
+ class CursorEvent(Event):
227
+ type = "cursor"
228
+ cursorStart: int
229
+ cursorEnd: int
230
+ fileId: int
231
+
232
+ def from_json(json: dict):
233
+ # print(json)
234
+
235
+ cursor = json.get("data", {}).get("cursor")
236
+
237
+ return CursorEvent(
238
+ dateutil.parser.isoparse(json["at"]),
239
+ json["client_id"],
240
+ json["user_id"],
241
+ None if cursor is None else cursor["start"],
242
+ None if cursor is None else cursor["end"],
243
+ json.get("data", {}).get("file_id"),
244
+ )
245
+
246
+
247
+ @dataclass
248
+ class EditEvent(Event):
249
+ type = "edit"
250
+ fileId: int
251
+ edits: List[Event] = field(default_factory=list)
252
+
253
+ def from_json(json: dict):
254
+ # print(json)
255
+
256
+ event = EditEvent(
257
+ dateutil.parser.isoparse(json["at"]),
258
+ json["client_id"],
259
+ json["user_id"],
260
+ json.get("data", {}).get("file_id"),
261
+ )
262
+
263
+ for e in json.get("data", {}).get("edits", []):
264
+ event.edits.append(Edit.from_json(e))
265
+
266
+ return event
267
+
268
+
269
+ @dataclass
270
+ class Edit:
271
+ type: str = field(default=None, init=False)
272
+
273
+ def from_json(json: dict):
274
+ t = json.get("type")
275
+ if t == "skip":
276
+ return SkipEdit.from_json(json)
277
+ if t == "insert":
278
+ return InsertEdit.from_json(json)
279
+ if t == "delete":
280
+ return DeleteEdit.from_json(json)
281
+
282
+ print("unhandled edit type", t, json)
283
+
284
+
285
+ @dataclass
286
+ class SkipEdit(Edit):
287
+ type = "skip"
288
+ value: int
289
+
290
+ def from_json(json: dict):
291
+ return SkipEdit(json["value"])
292
+
293
+
294
+ @dataclass
295
+ class InsertEdit(Edit):
296
+ type = "insert"
297
+ value: str
298
+
299
+ def from_json(json: dict):
300
+ return InsertEdit(json["value"])
301
+
302
+
303
+ @dataclass
304
+ class DeleteEdit(Edit):
305
+ type = "delete"
306
+ value: int
307
+
308
+ def from_json(json: dict):
309
+ return DeleteEdit(json["value"])
310
+
311
+
312
+ @dataclass
313
+ class WorkspaceLog:
314
+ events: List[Event] = field(default_factory=list)
315
+
316
+ def from_json(json: dict):
317
+
318
+ attemptsAndResults = []
319
+ for ca in json.get("challenge_attempts", []):
320
+ attemptsAndResults.append(AttemptEvent.from_timestamp(ca))
321
+
322
+ for cr in json.get("challenge_results", []):
323
+ attemptsAndResults.append(SubmissionEvent.from_json(cr))
324
+
325
+ # print(attemptsAndResults)
326
+
327
+ attemptsAndResults = sorted(attemptsAndResults, key=lambda d: d.at)
328
+
329
+ # print(attemptsAndResults)
330
+
331
+ log = WorkspaceLog()
332
+ for e in json.get("events", []):
333
+
334
+ event = Event.from_json(e)
335
+ if event is None:
336
+ continue
337
+
338
+ while len(attemptsAndResults) > 0 and attemptsAndResults[0].at < event.at:
339
+ log.events.append(attemptsAndResults.pop(0))
340
+
341
+ log.events.append(event)
342
+
343
+ while len(attemptsAndResults) > 0:
344
+ log.events.append(attemptsAndResults.pop(0))
345
+
346
+ return log
347
+
348
+
349
+ @dataclass
350
+ class FileSummary(File):
351
+ activeTime: datetime.timedelta = datetime.timedelta(0)
352
+ prevActiveTime: datetime.datetime = None
353
+
354
+ typingTime: datetime.timedelta = datetime.timedelta(0)
355
+ prevTypingTime: datetime.datetime = None
356
+
357
+ externalPastes: List[str] = field(default_factory=list)
358
+
359
+ pastedProportion: float = 0
360
+ pastedMask: str = ""
361
+
362
+ transcribedProportion: float = 0
363
+ transcribedMask: str = ""
364
+
365
+ editCount: int = 0
366
+
367
+ def from_file(file: File):
368
+ fs = FileSummary(file.id, file.path, file.content)
369
+ fs.pastedMask = getMaskedSection(file.content, maskChar='#')
370
+ fs.transcribedMask = getMaskedSection(file.content, maskChar='#')
371
+ return fs
372
+
373
+
374
+ @dataclass
375
+ class WorkspaceSummary:
376
+
377
+ totalActiveTime: datetime.timedelta
378
+ totalTypingTime: datetime.timedelta
379
+
380
+ fileSummaries: Dict[int, FileSummary]
381
+
382
+ def from_log(
383
+ files: List[File],
384
+ log: WorkspaceLog,
385
+ stopAtFirstSuccessfullSubmission: bool = True,
386
+ maxIdleSeconds=30,
387
+ minSuspiciousPasteChars=50,
388
+ maxContinuousTypingSeconds=2,
389
+ ):
390
+
391
+ fileSummaries = {}
392
+ for file in files:
393
+ fileSummaries[file.id] = FileSummary.from_file(file)
394
+
395
+ selections = set()
396
+
397
+ currSelection = None
398
+ for event in log.events:
399
+
400
+ if event is None:
401
+ continue
402
+
403
+ # print(event)
404
+ if event.type == "submission":
405
+ if event.passed and stopAtFirstSuccessfullSubmission:
406
+ break
407
+
408
+ if event.type != "cursor" and event.type != "edit" and event.type != "init":
409
+ continue
410
+
411
+ file = fileSummaries.get(event.fileId)
412
+ if file is None:
413
+ continue
414
+
415
+ if file.prevActiveTime is not None:
416
+ elapsed = event.at - file.prevActiveTime
417
+ if elapsed.total_seconds() < maxIdleSeconds:
418
+ file.activeTime += elapsed
419
+
420
+ file.prevActiveTime = event.at
421
+
422
+ if event.type == "init":
423
+ # file has been reset
424
+ file.content = event.contents
425
+ file.transcribedMask = event.contents
426
+ file.pastedMask = event.contents
427
+
428
+ if event.type == "cursor":
429
+ if event.cursorStart is None or event.cursorEnd is None:
430
+ currSelection = None
431
+ continue
432
+
433
+ if event.cursorEnd - event.cursorStart > minSuspiciousPasteChars:
434
+ currSelection = (event.cursorStart, event.cursorEnd)
435
+ selection = file.content[event.cursorStart : event.cursorEnd]
436
+ selections.add(selection.strip())
437
+
438
+ if event.type != "edit":
439
+ continue
440
+
441
+ pos = 0
442
+
443
+ isUninterrupted = False
444
+ if file.prevTypingTime is not None:
445
+ elapsed = event.at - file.prevTypingTime
446
+ if elapsed.total_seconds() < maxContinuousTypingSeconds:
447
+ isUninterrupted = True
448
+
449
+ if elapsed.total_seconds() < maxIdleSeconds:
450
+ file.typingTime += elapsed
451
+
452
+ file.prevTypingTime = event.at
453
+
454
+ for edit in event.edits:
455
+ if edit.type == "skip":
456
+ pos = pos + edit.value
457
+ currSelection = None
458
+
459
+ if edit.type == "delete":
460
+ file.content = file.content[:pos] + file.content[pos + edit.value :]
461
+ file.transcribedMask = (
462
+ file.transcribedMask[:pos]
463
+ + file.transcribedMask[pos + edit.value :]
464
+ )
465
+
466
+ if edit.type == "insert":
467
+
468
+ if currSelection is not None:
469
+ print(
470
+ f"Inserting {len(edit.value)} to replace selection: ({currSelection[0]}, {currSelection[1]})"
471
+ )
472
+ if (
473
+ isUninterrupted
474
+ and getCodeCharacterCount(file.content[pos:]) < 5
475
+ ):
476
+ file.transcribedMask = (
477
+ file.transcribedMask[:pos]
478
+ + getMaskedSection(edit.value)
479
+ + file.transcribedMask[pos:]
480
+ )
481
+ else:
482
+ file.transcribedMask = (
483
+ file.transcribedMask[:pos]
484
+ + edit.value
485
+ + file.transcribedMask[pos:]
486
+ )
487
+
488
+ if len(edit.value) > minSuspiciousPasteChars:
489
+ if edit.value.strip() not in selections:
490
+ # print(edit.value.replace('\n', '>'))
491
+ # print(file.content.replace('\n', '>'))
492
+ file.externalPastes.append(edit.value)
493
+
494
+ file.content = file.content[:pos] + edit.value + file.content[pos:]
495
+ pos = pos + len(edit.value)
496
+
497
+ # print('>>>>>>>>>>>>>>>>>>>>>>>>>>>>')
498
+ # print(edit)
499
+ # print(file.content)
500
+ # print('>>>>>>>>>>>>>>>>>>>>>>>>>>>>')
501
+
502
+ # if "}\n\nimport java.util.ArrayList;" in file.content:
503
+ # break
504
+
505
+ totalActiveTime = datetime.timedelta(0)
506
+ totalTypingTime = datetime.timedelta(0)
507
+ for fileId, file in fileSummaries.items():
508
+ totalActiveTime += file.activeTime
509
+ totalTypingTime += file.typingTime
510
+
511
+ pastedSections = getPastedSections(
512
+ file.content, file.externalPastes, minSuspiciousPasteChars
513
+ )
514
+ file.pastedMask = file.content
515
+ pastedLength = 0
516
+ for section in pastedSections:
517
+ sectionLength = section[1] - section[0]
518
+ file.pastedMask = (
519
+ file.pastedMask[: section[0]]
520
+ + getMaskedSection(file.pastedMask, section[0], section[1])
521
+ + file.pastedMask[section[1] :]
522
+ )
523
+ pastedLength += sectionLength
524
+
525
+ if len(file.content) > 0:
526
+ file.pastedProportion = pastedLength / len(file.content)
527
+
528
+ file.transcribedProportion = getMaskedProportion(file.transcribedMask)
529
+
530
+ return WorkspaceSummary(totalActiveTime, totalTypingTime, fileSummaries)
@@ -0,0 +1,118 @@
1
+ Metadata-Version: 2.3
2
+ Name: ed-api-client
3
+ Version: 0.1.0
4
+ Summary: A client for interacting with the Ed LMS
5
+ License: MIT
6
+ Author: David Milne
7
+ Author-email: d.n.milne@gmail.com
8
+ Requires-Python: >=3.6,<4.0
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.6
12
+ Classifier: Programming Language :: Python :: 3.7
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Requires-Dist: DateTime (>=5.1,<6.0)
20
+ Requires-Dist: dataclasses (==0.6)
21
+ Requires-Dist: pylcs (>=0.1.1,<0.2.0)
22
+ Requires-Dist: python-dateutil (>=2.9.0,<3.0.0)
23
+ Requires-Dist: requests (>=2.31.0,<3.0.0)
24
+ Description-Content-Type: text/markdown
25
+
26
+ # ed-api-client
27
+
28
+
29
+
30
+ ## Getting started
31
+
32
+ To make it easy for you to get started with GitLab, here's a list of recommended next steps.
33
+
34
+ Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
35
+
36
+ ## Add your files
37
+
38
+ - [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
39
+ - [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:
40
+
41
+ ```
42
+ cd existing_repo
43
+ git remote add origin https://gitlab.com/dmilne/ed-api-client.git
44
+ git branch -M main
45
+ git push -uf origin main
46
+ ```
47
+
48
+ ## Integrate with your tools
49
+
50
+ - [ ] [Set up project integrations](https://gitlab.com/dmilne/ed-api-client/-/settings/integrations)
51
+
52
+ ## Collaborate with your team
53
+
54
+ - [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
55
+ - [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
56
+ - [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
57
+ - [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
58
+ - [ ] [Automatically merge when pipeline succeeds](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html)
59
+
60
+ ## Test and Deploy
61
+
62
+ Use the built-in continuous integration in GitLab.
63
+
64
+ - [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html)
65
+ - [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
66
+ - [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
67
+ - [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
68
+ - [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
69
+
70
+ ***
71
+
72
+ # Editing this README
73
+
74
+ When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template.
75
+
76
+ ## Suggestions for a good README
77
+ Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
78
+
79
+ ## Name
80
+ Choose a self-explaining name for your project.
81
+
82
+ ## Description
83
+ Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
84
+
85
+ ## Badges
86
+ On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
87
+
88
+ ## Visuals
89
+ Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
90
+
91
+ ## Installation
92
+ Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
93
+
94
+ ## Usage
95
+ Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
96
+
97
+ ## Support
98
+ Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
99
+
100
+ ## Roadmap
101
+ If you have ideas for releases in the future, it is a good idea to list them in the README.
102
+
103
+ ## Contributing
104
+ State if you are open to contributions and what your requirements are for accepting them.
105
+
106
+ For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
107
+
108
+ You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
109
+
110
+ ## Authors and acknowledgment
111
+ Show your appreciation to those who have contributed to the project.
112
+
113
+ ## License
114
+ For open source projects, say how it is licensed.
115
+
116
+ ## Project status
117
+ If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
118
+
@@ -0,0 +1,13 @@
1
+ ed_api_client/__init__.py,sha256=0Uu4EOjKpXVE9dzKrP2L8BBPRdiG6FHeXSWWc7s4wXA,332
2
+ ed_api_client/assignments.py,sha256=zIY0WV6VASTE6XIghQhi6MUc5hsKPYaNQg_nWaOQWP4,8700
3
+ ed_api_client/canvas.py,sha256=LuyRa7Szs9QVk4q9I7HtIrnTBYL6TDEmae4IHySSnKg,1989
4
+ ed_api_client/challenges.py,sha256=sB6h3tgqDwOFmvdZ3yJmGBxbm7qIpfHvg8ZIKNbOJ1Q,9668
5
+ ed_api_client/client.py,sha256=JWcxL9lj8ZN3CkOza9-vInC2ofQuHTvCdpgpaszIky0,8207
6
+ ed_api_client/quizzes.py,sha256=sR6r4CppYxzRh1M3gZP34HaavLiH7NFP_s1libxRXyg,7326
7
+ ed_api_client/slides.py,sha256=_O3yix3-VKWTLf99j3XkN_NXvqwcjtgD3NibNj6w1LA,5811
8
+ ed_api_client/users.py,sha256=8YZ_up1p1XTb-efcXe8YSOgt4GSkQa0OH9O5nPyQ2Ns,1236
9
+ ed_api_client/websockets.py,sha256=vcNyE-2s-HaT68GBUr4J9zEbkyN94ZbD9pVJ67xIMb0,2658
10
+ ed_api_client/workspaces.py,sha256=XS9VEeSOqZvUegaQBVKk33Ol4ffA3j7NJ8CzudENNow,14263
11
+ ed_api_client-0.1.0.dist-info/METADATA,sha256=LZ-teVE9wXa-qP3GV30f_-o5jSl4EbN2CFFi80FFUDg,7153
12
+ ed_api_client-0.1.0.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
13
+ ed_api_client-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 2.1.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any