content-core 0.1.0__py3-none-any.whl → 0.1.2__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.

Potentially problematic release.


This version of content-core might be problematic. Click here for more details.

@@ -156,4 +156,5 @@ async def extract_youtube_transcript(state: ProcessSourceState):
156
156
  return {
157
157
  "content": formatter.format_transcript(transcript),
158
158
  "title": title,
159
+ "metadata": {"video_id": video_id, "transcript": transcript.to_raw_data()},
159
160
  }
@@ -1,10 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: content-core
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Extract what matters from any media source
5
5
  Author-email: LUIS NOVO <lfnovo@gmail.com>
6
+ License-File: LICENSE
6
7
  Requires-Python: >=3.10
7
- Requires-Dist: aiohttp>=3.11.16
8
+ Requires-Dist: aiohttp>=3.11
8
9
  Requires-Dist: bs4>=0.0.2
9
10
  Requires-Dist: dicttoxml>=1.7.16
10
11
  Requires-Dist: esperanto>=1.2.0
@@ -243,8 +244,10 @@ make lint
243
244
  make help
244
245
  ```
245
246
 
247
+ ## License
248
+
249
+ This project is licensed under the [MIT License](LICENSE). See the [LICENSE](LICENSE) file for details.
250
+
246
251
  ## Contributing
247
- Contributions are welcome! Please follow standard practices (fork, feature branch, pull request).
248
252
 
249
- ## License
250
- This project is licensed under the MIT License - see the LICENSE file for details.
253
+ Contributions are welcome! Please see our [Contributing Guide](CONTRIBUTING.md) for more details on how to get started.
@@ -21,12 +21,13 @@ content_core/processors/pdf.py,sha256=yndt8EGvV5_IxcFbFp4lb4g9T84w6cJ4LPdiTduO7a
21
21
  content_core/processors/text.py,sha256=MiXNILDKcLO5sWTzp-LNJ8yC764_gmUEvDB7GUd7Wys,1145
22
22
  content_core/processors/url.py,sha256=LcDB_FcmJMcwqM75DX2ERXcOry98e63WEjwd6l8u3ho,6268
23
23
  content_core/processors/video.py,sha256=aEe3M_POENPwI1tK4mUNxSeGewsmjex7lvMmELdcQeo,5183
24
- content_core/processors/youtube.py,sha256=RdkMWVV3iy4HMZfkT_eq_fUfSbwbimN8LrKTcdti0JA,5700
24
+ content_core/processors/youtube.py,sha256=3DioyLZT-wHmLcJ-vnONjMdZ1qWpeuHhQtsZw2nIE5M,5784
25
25
  content_core/tools/__init__.py,sha256=DuJmd7fE-NpDvLP8IW1XY5MUkAQcdks52rn2jk4N8jQ,231
26
26
  content_core/tools/cleanup.py,sha256=5IdKedsFyRQMdYzgFSKtsfyxJldbroXQXHesHICNENI,523
27
27
  content_core/tools/extract.py,sha256=-r2_jsuMMXyXxGVqWhh1ilNPo_UMYAbw3Pkp1FzPy5g,577
28
28
  content_core/tools/summarize.py,sha256=DPfeglLWB08q8SvHrsKpOKZ35XjduUDs2J02ISwjdj0,596
29
- content_core-0.1.0.dist-info/METADATA,sha256=tkjNmmkdSfe3Mt64qOFicBwmHDAnHCEC0fbZW7wFMJo,7305
30
- content_core-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
31
- content_core-0.1.0.dist-info/entry_points.txt,sha256=9fGQUk6bxBVXj9PRwfWVPn54ClSEJV7J-KBLXtjOhQw,99
32
- content_core-0.1.0.dist-info/RECORD,,
29
+ content_core-0.1.2.dist-info/METADATA,sha256=XwTLrqBRa4ofhkWEIEQRGs_knnPpbhw0T6d9ALSOsZg,7369
30
+ content_core-0.1.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
31
+ content_core-0.1.2.dist-info/entry_points.txt,sha256=9fGQUk6bxBVXj9PRwfWVPn54ClSEJV7J-KBLXtjOhQw,99
32
+ content_core-0.1.2.dist-info/licenses/LICENSE,sha256=myj0z2T4qIkenCgLsRfx7Wk6UqCQNj5c7O14Qx4zpGg,1066
33
+ content_core-0.1.2.dist-info/RECORD,,
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Luis Novo
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.