studyctl 2.0.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.
Files changed (58) hide show
  1. studyctl/__init__.py +3 -0
  2. studyctl/calendar.py +140 -0
  3. studyctl/cli/__init__.py +56 -0
  4. studyctl/cli/_config.py +128 -0
  5. studyctl/cli/_content.py +462 -0
  6. studyctl/cli/_lazy.py +35 -0
  7. studyctl/cli/_review.py +491 -0
  8. studyctl/cli/_schedule.py +125 -0
  9. studyctl/cli/_setup.py +164 -0
  10. studyctl/cli/_shared.py +83 -0
  11. studyctl/cli/_state.py +69 -0
  12. studyctl/cli/_sync.py +156 -0
  13. studyctl/cli/_web.py +228 -0
  14. studyctl/content/__init__.py +5 -0
  15. studyctl/content/markdown_converter.py +271 -0
  16. studyctl/content/models.py +31 -0
  17. studyctl/content/notebooklm_client.py +434 -0
  18. studyctl/content/splitter.py +159 -0
  19. studyctl/content/storage.py +105 -0
  20. studyctl/content/syllabus.py +416 -0
  21. studyctl/history.py +982 -0
  22. studyctl/maintenance.py +69 -0
  23. studyctl/mcp/__init__.py +1 -0
  24. studyctl/mcp/server.py +58 -0
  25. studyctl/mcp/tools.py +234 -0
  26. studyctl/pdf.py +89 -0
  27. studyctl/review_db.py +277 -0
  28. studyctl/review_loader.py +375 -0
  29. studyctl/scheduler.py +242 -0
  30. studyctl/services/__init__.py +6 -0
  31. studyctl/services/content.py +39 -0
  32. studyctl/services/review.py +127 -0
  33. studyctl/settings.py +367 -0
  34. studyctl/shared.py +425 -0
  35. studyctl/state.py +120 -0
  36. studyctl/sync.py +229 -0
  37. studyctl/tui/__main__.py +33 -0
  38. studyctl/tui/app.py +395 -0
  39. studyctl/tui/study_cards.py +396 -0
  40. studyctl/web/__init__.py +1 -0
  41. studyctl/web/app.py +68 -0
  42. studyctl/web/routes/__init__.py +1 -0
  43. studyctl/web/routes/artefacts.py +57 -0
  44. studyctl/web/routes/cards.py +86 -0
  45. studyctl/web/routes/courses.py +91 -0
  46. studyctl/web/routes/history.py +69 -0
  47. studyctl/web/server.py +260 -0
  48. studyctl/web/static/app.js +853 -0
  49. studyctl/web/static/icon-192.svg +4 -0
  50. studyctl/web/static/icon-512.svg +4 -0
  51. studyctl/web/static/index.html +50 -0
  52. studyctl/web/static/manifest.json +21 -0
  53. studyctl/web/static/style.css +657 -0
  54. studyctl/web/static/sw.js +14 -0
  55. studyctl-2.0.0.dist-info/METADATA +49 -0
  56. studyctl-2.0.0.dist-info/RECORD +58 -0
  57. studyctl-2.0.0.dist-info/WHEEL +4 -0
  58. studyctl-2.0.0.dist-info/entry_points.txt +3 -0
@@ -0,0 +1,58 @@
1
+ studyctl/__init__.py,sha256=dhA8-etQVH1RfnZtBKyQcn4721FXpt58HkkaSZsZNQc,68
2
+ studyctl/calendar.py,sha256=ZJb4ol3Bq95Zxpe26osSv25VDbrDetzC5c8EDIWj8F4,4131
3
+ studyctl/history.py,sha256=gmMRuKAwmeL-R_61-1pYkpXfQxpo8sFsgYHyKodgTIk,30446
4
+ studyctl/maintenance.py,sha256=EMslF3XloJy_i6uepUEyzGOsqYXGWPi5mPffqC1OIzI,2461
5
+ studyctl/pdf.py,sha256=sBeJTPE7cwoA00m40XtVQFvhTFmjMIcoD22Xn5toCnY,2633
6
+ studyctl/review_db.py,sha256=Kq0TX4gCk7HR1Gtesh6qToshROUIyPg27aQhe4EmDmk,8442
7
+ studyctl/review_loader.py,sha256=vJnanKypjAu1-Z9WWH5yCsCa8A4uURlJgIQcHig39ps,12375
8
+ studyctl/scheduler.py,sha256=8zWSlva21B4X6pMZ3TAb4WzCGyv7y6Le66uE8Cs1Irs,8103
9
+ studyctl/settings.py,sha256=A-ursEHM2hbWUZKTCAVj3iTn5b2saehq1MvQ0DBv3Hs,11666
10
+ studyctl/shared.py,sha256=fhN1su96zUp-XhFn2nCY3GI3-QiMRxhUaxroic1GgmY,14877
11
+ studyctl/state.py,sha256=fcDOvP38MGLyktKaYSinhA7BmA7aaWyIFcCP5pN_bro,3946
12
+ studyctl/sync.py,sha256=3uMedOG13od-2i5wBdeRZg2ptsUAXAVg9fLBakxe9EI,7416
13
+ studyctl/cli/__init__.py,sha256=_dQ4FCaqh6KLWg1FfP2Jnh99aqEP_PZ7d6NLDCJGBvg,2150
14
+ studyctl/cli/_config.py,sha256=FBO1nPjlr_z5jnWgo3dgfdWRZiCZ9IXvasf4xs3Tp_k,4189
15
+ studyctl/cli/_content.py,sha256=W5hIgd8NgmgBbP7xcaFQmEPWe7I9E0Ue0Ui0mj6DMAM,18058
16
+ studyctl/cli/_lazy.py,sha256=fgy-fuqTm6oM8SvnmZvGnTthEm1PNqtpyofRDeqw0iY,1289
17
+ studyctl/cli/_review.py,sha256=Zb67kMJDVGbHwwVRpnU8iClyivFO4Cos-eD1uWv5UGw,17380
18
+ studyctl/cli/_schedule.py,sha256=Yi4susBwaPAo3Wk0gMv-EKKU-oSlmbqxL2QZaIodzTA,4315
19
+ studyctl/cli/_setup.py,sha256=C57aCoH4KxkiGpJWaWb3iY7MsjgZfC-65Yll928aIeU,7026
20
+ studyctl/cli/_shared.py,sha256=OoNuUY_BIN6EoWkMYVVS57mlEphLLNgzlerHOsN_TRc,2495
21
+ studyctl/cli/_state.py,sha256=mvbcgP0U_IB8WieLGJ2BaXAprlsz9ocmUg4l7-MPdzE,2383
22
+ studyctl/cli/_sync.py,sha256=PGGJO-lR7xd6ly_AnEHmTlUbPhZHLHCvCKAoQpxmRlg,6221
23
+ studyctl/cli/_web.py,sha256=QqDngcUX976k1wJglDZKzVM5B6Rd_l9pq_zGS2asJc8,7530
24
+ studyctl/content/__init__.py,sha256=ai5TbdYGEhPhTaEy0XN5vnvP8QPadYKsmmdB_FKaJ9w,188
25
+ studyctl/content/markdown_converter.py,sha256=vWeCJtBt6g9cGDTagH4bomVFg-Y88Gv7-LUV7Wvq3Bk,8601
26
+ studyctl/content/models.py,sha256=vx_UyWGlmlxXkWFalH7aq4H0uLcJNtKPdamQWCaCgUg,491
27
+ studyctl/content/notebooklm_client.py,sha256=28Wv-9EuZPCi0duLW5j6lQX4fFUqgH8FDLE6Iy9KwQY,15203
28
+ studyctl/content/splitter.py,sha256=4JSkWFZTkatGHxKPSP9TN0_tCGSdqxIdIDhyDeV9BcQ,5133
29
+ studyctl/content/storage.py,sha256=rB0DyxDFkJTNja0581THYeK9lSjjkS0RTJucbVT8EwY,3150
30
+ studyctl/content/syllabus.py,sha256=ELBJSYnqSMBDs6CLjM-rVImhPdmeMDrk7wEzGM2Jah0,12988
31
+ studyctl/mcp/__init__.py,sha256=7cDKWGUBlKmn3lBNzokUj9SoXy1Nn6fsfx_ggOe0z9E,79
32
+ studyctl/mcp/server.py,sha256=9NMJ9Et4u4_RFhtIsDpZ00EhzG05DnKg8SUg0wFn9S0,1346
33
+ studyctl/mcp/tools.py,sha256=wCp6kHz2rFR0Oo_iOuLdHGaFhtj-I_Xdp-NJhaSKZLc,8610
34
+ studyctl/services/__init__.py,sha256=Mv6UPceDd9IyQNOqCQyWrJTi55zVi_FLdrDXuK0UjfU,201
35
+ studyctl/services/content.py,sha256=dKVfR9WkEx9gW27ohUiour6x8iyZV1MXTHPlQfm_Zqg,1111
36
+ studyctl/services/review.py,sha256=LVwJvW6iGFk26iSk_A3urE3EH7QwPZcxjjA3qUsnyXs,3714
37
+ studyctl/tui/__main__.py,sha256=WLcVGo1FrCBB9JsZhduV8mAMvkFdSwepMXrlsUod3Uw,787
38
+ studyctl/tui/app.py,sha256=pdi72bLClyOp6Hwdzv78qQ1P6-k_VdLf5w8tPlK5FyU,12516
39
+ studyctl/tui/study_cards.py,sha256=mZAOqzqgPmtDkFZwBxYahhNAGn6A2DLSHML2AyoEKRU,13283
40
+ studyctl/web/__init__.py,sha256=hVu7yPH5LwiFMSP5LYpu6SqkyBRmr4wy3mg-mZpEfSw,64
41
+ studyctl/web/app.py,sha256=KggM_bZ3Ihnk8uWG3x4IdiVB9S_mw7nh4t2vyJRaZzU,2069
42
+ studyctl/web/server.py,sha256=9t4lJfU3EjrHukvdDMrX-N7mef6MS6b6EOqmtiuINn4,9163
43
+ studyctl/web/routes/__init__.py,sha256=xNbKAjgfTpEgbJMc53uyovP__nNmYG9Fpoi939bSfM4,29
44
+ studyctl/web/routes/artefacts.py,sha256=GyaPmmJUkBMtYgxhdUxCyeHpE-F9G5fmVLqTTpX7c5A,2036
45
+ studyctl/web/routes/cards.py,sha256=eWDyYIW7RML44OcecRWxBtV_VjqmWs-t8ootOsB71KE,2450
46
+ studyctl/web/routes/courses.py,sha256=U1UGgpjNAAVg16dunnnoLRTedZUIEOP0b-HcmtG24a8,2815
47
+ studyctl/web/routes/history.py,sha256=V19D1flhJIWkk3-xG3mJT_LZ8iH38_aSsAMdUY-PopE,1699
48
+ studyctl/web/static/app.js,sha256=N0pc-WedwZCUdAeZmU8tj42iJiGg4QGTYDcFE6BpZI4,26911
49
+ studyctl/web/static/icon-192.svg,sha256=1OPF1FuQW4uZgXn0aGVnnq6ypAs94S9KiFQiqsHklMM,212
50
+ studyctl/web/static/icon-512.svg,sha256=1OPF1FuQW4uZgXn0aGVnnq6ypAs94S9KiFQiqsHklMM,212
51
+ studyctl/web/static/index.html,sha256=AmZZzYKonypSWr22cB6pXZsKf-v8j78XT1qNhKjP5q0,2847
52
+ studyctl/web/static/manifest.json,sha256=1Yj1suLNqV0a_KLCU9V9zPhpNqfUjVynisHyvzmhxA4,450
53
+ studyctl/web/static/style.css,sha256=cfw1vQuAmhDqxe-96p8opULstQBCH5WnSDLVFoPNk3w,13744
54
+ studyctl/web/static/sw.js,sha256=zmcfIhZNExADFGX95qxUDMzc5pSY8p3bxFBbznZZi3w,405
55
+ studyctl-2.0.0.dist-info/METADATA,sha256=tI_WpOlGbpWBThcDrHDrtIS5eat4SF2h33o1cS1bdzE,2074
56
+ studyctl-2.0.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
57
+ studyctl-2.0.0.dist-info/entry_points.txt,sha256=w4DvaovDk7K3AA3GAfftMDY9hSgLdsoTVp84-NsG5Cc,86
58
+ studyctl-2.0.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ studyctl = studyctl.cli:cli
3
+ studyctl-mcp = studyctl.mcp.server:main