teams-transcripts 0.5.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.
- legacy/__init__.py +0 -0
- legacy/transcript_download.py +3969 -0
- teams_transcripts/__init__.py +1 -0
- teams_transcripts/__main__.py +288 -0
- teams_transcripts/adapters/__init__.py +1 -0
- teams_transcripts/adapters/cdp/__init__.py +1 -0
- teams_transcripts/adapters/cdp/browser.py +196 -0
- teams_transcripts/adapters/cdp/connection.py +168 -0
- teams_transcripts/adapters/cdp/helpers.py +449 -0
- teams_transcripts/adapters/cdp/teams.py +463 -0
- teams_transcripts/adapters/vertex.py +274 -0
- teams_transcripts/domain/__init__.py +1 -0
- teams_transcripts/domain/chat.py +115 -0
- teams_transcripts/domain/html.py +126 -0
- teams_transcripts/domain/mcps.py +343 -0
- teams_transcripts/domain/models.py +531 -0
- teams_transcripts/domain/participants.py +292 -0
- teams_transcripts/domain/scoring.py +106 -0
- teams_transcripts/domain/speakers.py +130 -0
- teams_transcripts/domain/summary.py +266 -0
- teams_transcripts/domain/timestamps.py +350 -0
- teams_transcripts/domain/vtt.py +444 -0
- teams_transcripts/infrastructure/__init__.py +1 -0
- teams_transcripts/infrastructure/config.py +987 -0
- teams_transcripts/infrastructure/errors.py +120 -0
- teams_transcripts/infrastructure/logging.py +69 -0
- teams_transcripts/infrastructure/signals.py +143 -0
- teams_transcripts/mcp_server.py +818 -0
- teams_transcripts/ports/__init__.py +1 -0
- teams_transcripts/ports/agent.py +58 -0
- teams_transcripts/ports/browser.py +126 -0
- teams_transcripts/services/__init__.py +1 -0
- teams_transcripts/services/downloader.py +1283 -0
- teams_transcripts/services/extraction.py +1603 -0
- teams_transcripts/services/listing.py +826 -0
- teams_transcripts/services/navigation.py +1721 -0
- teams_transcripts/services/output.py +84 -0
- teams_transcripts/services/tenant.py +684 -0
- teams_transcripts-0.5.0.dist-info/METADATA +1438 -0
- teams_transcripts-0.5.0.dist-info/RECORD +42 -0
- teams_transcripts-0.5.0.dist-info/WHEEL +4 -0
- teams_transcripts-0.5.0.dist-info/entry_points.txt +4 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
legacy/transcript_download.py,sha256=MW1YpmbT_eZ1Si1KChR6vGJcp1sYVeWg8CrO3Vi1HSg,152887
|
|
3
|
+
teams_transcripts/__init__.py,sha256=z82l30E-BteylIqXiLYc8PgjHO9Bnwrq3M8rq_BQ2KY,81
|
|
4
|
+
teams_transcripts/__main__.py,sha256=X35RSmjL3TnBpOgl-rdWv17cPlBgSp55zMp38lg0XTA,10026
|
|
5
|
+
teams_transcripts/mcp_server.py,sha256=eFsAbPIyfCP3FoYPB18h0m0PkkLX-mcXykCxQLlMdJk,29103
|
|
6
|
+
teams_transcripts/adapters/__init__.py,sha256=n6BhWpMCs2C_N0Hha71yfRIl2WAguALs7DGCh-AlzvQ,78
|
|
7
|
+
teams_transcripts/adapters/vertex.py,sha256=vk-aftc4JLGgLzt91iIdWoM8ijdImoN1r1LOB2fQG_w,8219
|
|
8
|
+
teams_transcripts/adapters/cdp/__init__.py,sha256=eb0OtawHymyyRXuRmg_g_SEjW1yuCTqyfNIgo79919Y,77
|
|
9
|
+
teams_transcripts/adapters/cdp/browser.py,sha256=9wk6sQRGBpWH8u_AKRRbFlzJW2mHXDAYxB7-nUCP3P8,5957
|
|
10
|
+
teams_transcripts/adapters/cdp/connection.py,sha256=4Y7lklFuPKVvxo_VeHyhqbVwnpCpit2Z3gg1WvY3e90,5137
|
|
11
|
+
teams_transcripts/adapters/cdp/helpers.py,sha256=NsvulYUQ5kHPUk7c3MnrlqSccy2qfZu9opMZ22Pm1Yo,15337
|
|
12
|
+
teams_transcripts/adapters/cdp/teams.py,sha256=S_g6Ibj2ig5aexChxsK7ycsIYdK3RSRdiRrivvtY83Q,14275
|
|
13
|
+
teams_transcripts/domain/__init__.py,sha256=PJVCiCSCU6CFxPVUmlvzk9mX8xZL8eR8epaXwHV9jHs,73
|
|
14
|
+
teams_transcripts/domain/chat.py,sha256=dwJr65jBcnaVByipUjW5Av-Wc5hPWCGdtIssgwOYweU,3972
|
|
15
|
+
teams_transcripts/domain/html.py,sha256=Hzfe_fgwCXeU03CxPLOdi_jlO4Cs4E9w0hNZyRwQsrU,4048
|
|
16
|
+
teams_transcripts/domain/mcps.py,sha256=-rgj_YZTuyhGmLeCkq5UzWA8cylu2qIuif01jvIQ6xI,11332
|
|
17
|
+
teams_transcripts/domain/models.py,sha256=FokgKacnrUV3fj1pX4VCzAhXdYcygTiG1UsvQ8YapZI,19657
|
|
18
|
+
teams_transcripts/domain/participants.py,sha256=0q-KT_Fzf2tA2Ae6fm_0MVT88qs4mouvT8zqYs-Sm1U,10265
|
|
19
|
+
teams_transcripts/domain/scoring.py,sha256=2UuFlQqcu5qWNKlxLNHRSQ7egGVmbtoc52O2GlqIcjY,3289
|
|
20
|
+
teams_transcripts/domain/speakers.py,sha256=OGLSYm6FP-BV0MtNmkcimtyrDY7iyeCP9s-9_cev2po,4490
|
|
21
|
+
teams_transcripts/domain/summary.py,sha256=FgEyFBqmt76QhJZP1s7lvV19K0X4bMGZk00nA3BBy80,9440
|
|
22
|
+
teams_transcripts/domain/timestamps.py,sha256=311vWTWKE61VCVyInBHZgDOBo95gc7kkKCnzcsfhnzg,11288
|
|
23
|
+
teams_transcripts/domain/vtt.py,sha256=QKbPebsK2tcbTEW89yxb8E8bwrz1eZz3H_itXeJBF-M,14375
|
|
24
|
+
teams_transcripts/infrastructure/__init__.py,sha256=tDyqghE0WxedVIj2q39aSbeubtpdCThUTEnD526DZY8,82
|
|
25
|
+
teams_transcripts/infrastructure/config.py,sha256=qtSmaTKMsDcCnh_m1ivGNJtwjnGZyxXzXAoqYknXS9Q,45015
|
|
26
|
+
teams_transcripts/infrastructure/errors.py,sha256=AHyKJQXEsqPvxuu6_iVlm2rw6OjX7EWLAyxW8feWi28,4038
|
|
27
|
+
teams_transcripts/infrastructure/logging.py,sha256=nMnXVs7xcyuPZHB5N_PcghK4kvXkiRXUFGnzI74jLX0,2185
|
|
28
|
+
teams_transcripts/infrastructure/signals.py,sha256=bY16bXDPHWFCosbM9JMwqPdpfqjahE3A5ace4K9Ptxk,4911
|
|
29
|
+
teams_transcripts/ports/__init__.py,sha256=WBfVbrY1PuDVuGzwghQ1G4DzLRh7wlvA9rWRIdOqiuM,71
|
|
30
|
+
teams_transcripts/ports/agent.py,sha256=IoqJvcQnpe6bEtXG6h3XHT6P5pW-2xREA6K6qPpcAck,1587
|
|
31
|
+
teams_transcripts/ports/browser.py,sha256=d2RiPD-1-znkUlsVE-QGdGXSFRr2CRR-lDt32VvoKHs,3544
|
|
32
|
+
teams_transcripts/services/__init__.py,sha256=Uq33iWQ6llol5Yo9XGPLP2wS1G6nEeO_wIN2FYc5EVM,81
|
|
33
|
+
teams_transcripts/services/downloader.py,sha256=30Vf_YAl5_JfBLWnU0LSv4ab99MuYh0nyzYa45L2JGw,47732
|
|
34
|
+
teams_transcripts/services/extraction.py,sha256=F1OM9xFn1Lxoxx2rOe5fv22jnsZKKaTjamHwYlfkNl4,58630
|
|
35
|
+
teams_transcripts/services/listing.py,sha256=WWpOm09qz-JzniiE9LQOOfbnrq34-rnB2bMN9OpiYyA,28458
|
|
36
|
+
teams_transcripts/services/navigation.py,sha256=XjyGYCmrIMZYWcrdguFSncmjhnYwqrDJq7gWZB6fOZ8,63100
|
|
37
|
+
teams_transcripts/services/output.py,sha256=qD3O4DPY9hamc3v_Hyp1cBkYhM20rSQ29q3ATetg_Ww,2680
|
|
38
|
+
teams_transcripts/services/tenant.py,sha256=kc2sjAhr2lfvGZ2dLjMrHZ3M8ve2Zs8J-TUOns48n94,24085
|
|
39
|
+
teams_transcripts-0.5.0.dist-info/METADATA,sha256=uBpIGQMHKfGhJv4F5Z-LC1-Jdp57gN898jEotrJ2X7k,54589
|
|
40
|
+
teams_transcripts-0.5.0.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
|
|
41
|
+
teams_transcripts-0.5.0.dist-info/entry_points.txt,sha256=lOjqWKI1J_5Ze-GrCVX1JqCdEeACJcNcNJfE4GNZ44c,187
|
|
42
|
+
teams_transcripts-0.5.0.dist-info/RECORD,,
|