content-core 0.1.1__tar.gz → 0.1.2__tar.gz
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.
- {content_core-0.1.1 → content_core-0.1.2}/PKG-INFO +2 -2
- {content_core-0.1.1 → content_core-0.1.2}/pyproject.toml +2 -2
- {content_core-0.1.1 → content_core-0.1.2}/uv.lock +4 -5
- {content_core-0.1.1 → content_core-0.1.2}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/.github/workflows/publish.yml +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/.gitignore +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/.python-version +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/.windsurfrules +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/CONTRIBUTING.md +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/LICENSE +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/Makefile +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/README.md +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/prompts/content/cleanup.jinja +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/prompts/content/summarize.jinja +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/__init__.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/common/__init__.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/common/exceptions.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/common/state.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/common/utils.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/config.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/content/__init__.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/content/cleanup/__init__.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/content/cleanup/core.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/content/extraction/__init__.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/content/extraction/graph.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/content/summary/__init__.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/content/summary/core.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/notebooks/run.ipynb +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/processors/audio.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/processors/office.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/processors/pdf.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/processors/text.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/processors/url.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/processors/video.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/processors/youtube.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/prompter.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/py.typed +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/templated_message.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/tools/__init__.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/tools/cleanup.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/tools/extract.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/src/content_core/tools/summarize.py +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/tests/input_content/file.docx +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/tests/input_content/file.epub +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/tests/input_content/file.md +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/tests/input_content/file.mp3 +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/tests/input_content/file.mp4 +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/tests/input_content/file.pdf +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/tests/input_content/file.pptx +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/tests/input_content/file.txt +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/tests/input_content/file.xlsx +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/tests/input_content/file_audio.mp3 +0 -0
- {content_core-0.1.1 → content_core-0.1.2}/tests/integration/test_extraction.py +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: content-core
|
|
3
|
-
Version: 0.1.
|
|
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
6
|
License-File: LICENSE
|
|
7
7
|
Requires-Python: >=3.10
|
|
8
|
-
Requires-Dist: aiohttp>=3.11
|
|
8
|
+
Requires-Dist: aiohttp>=3.11
|
|
9
9
|
Requires-Dist: bs4>=0.0.2
|
|
10
10
|
Requires-Dist: dicttoxml>=1.7.16
|
|
11
11
|
Requires-Dist: esperanto>=1.2.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "content-core"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.2"
|
|
4
4
|
description = "Extract what matters from any media source"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [
|
|
@@ -8,7 +8,7 @@ authors = [
|
|
|
8
8
|
]
|
|
9
9
|
requires-python = ">=3.10"
|
|
10
10
|
dependencies = [
|
|
11
|
-
"aiohttp>=3.11
|
|
11
|
+
"aiohttp>=3.11",
|
|
12
12
|
"bs4>=0.0.2",
|
|
13
13
|
"esperanto>=1.2.0",
|
|
14
14
|
"google-genai>=1.10.0",
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
version = 1
|
|
2
|
-
revision = 1
|
|
3
2
|
requires-python = ">=3.10"
|
|
4
3
|
resolution-markers = [
|
|
5
4
|
"python_full_version < '3.11'",
|
|
@@ -355,7 +354,7 @@ wheels = [
|
|
|
355
354
|
|
|
356
355
|
[[package]]
|
|
357
356
|
name = "content-core"
|
|
358
|
-
version = "0.1.
|
|
357
|
+
version = "0.1.2"
|
|
359
358
|
source = { editable = "." }
|
|
360
359
|
dependencies = [
|
|
361
360
|
{ name = "aiohttp" },
|
|
@@ -391,7 +390,7 @@ dev = [
|
|
|
391
390
|
|
|
392
391
|
[package.metadata]
|
|
393
392
|
requires-dist = [
|
|
394
|
-
{ name = "aiohttp", specifier = ">=3.11
|
|
393
|
+
{ name = "aiohttp", specifier = ">=3.11" },
|
|
395
394
|
{ name = "bs4", specifier = ">=0.0.2" },
|
|
396
395
|
{ name = "dicttoxml", specifier = ">=1.7.16" },
|
|
397
396
|
{ name = "esperanto", specifier = ">=1.2.0" },
|
|
@@ -685,7 +684,7 @@ name = "ipykernel"
|
|
|
685
684
|
version = "6.29.5"
|
|
686
685
|
source = { registry = "https://pypi.org/simple" }
|
|
687
686
|
dependencies = [
|
|
688
|
-
{ name = "appnope", marker = "
|
|
687
|
+
{ name = "appnope", marker = "platform_system == 'Darwin'" },
|
|
689
688
|
{ name = "comm" },
|
|
690
689
|
{ name = "debugpy" },
|
|
691
690
|
{ name = "ipython" },
|
|
@@ -2312,7 +2311,7 @@ name = "tqdm"
|
|
|
2312
2311
|
version = "4.67.1"
|
|
2313
2312
|
source = { registry = "https://pypi.org/simple" }
|
|
2314
2313
|
dependencies = [
|
|
2315
|
-
{ name = "colorama", marker = "
|
|
2314
|
+
{ name = "colorama", marker = "platform_system == 'Windows'" },
|
|
2316
2315
|
]
|
|
2317
2316
|
sdist = { url = "https://files.pythonhosted.org/packages/a8/4b/29b4ef32e036bb34e4ab51796dd745cdba7ed47ad142a9f4a1eb8e0c744d/tqdm-4.67.1.tar.gz", hash = "sha256:f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2", size = 169737 }
|
|
2318
2317
|
wheels = [
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|