python-substack 0.4.0__tar.gz → 0.5.0__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.
- {python_substack-0.4.0 → python_substack-0.5.0}/PKG-INFO +2 -2
- {python_substack-0.4.0 → python_substack-0.5.0}/pyproject.toml +67 -67
- {python_substack-0.4.0 → python_substack-0.5.0}/substack/__init__.py +13 -13
- {python_substack-0.4.0 → python_substack-0.5.0}/substack/api.py +835 -792
- {python_substack-0.4.0 → python_substack-0.5.0}/substack/cli.py +7 -1
- {python_substack-0.4.0 → python_substack-0.5.0}/substack/exceptions.py +44 -32
- {python_substack-0.4.0 → python_substack-0.5.0}/LICENSE +0 -0
- {python_substack-0.4.0 → python_substack-0.5.0}/README.md +0 -0
- {python_substack-0.4.0 → python_substack-0.5.0}/substack/mdrender.py +0 -0
- {python_substack-0.4.0 → python_substack-0.5.0}/substack/nodes.py +0 -0
- {python_substack-0.4.0 → python_substack-0.5.0}/substack/post.py +0 -0
- {python_substack-0.4.0 → python_substack-0.5.0}/substack_mcp/mcp_server.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-substack
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Summary: Write and safely manage Substack drafts from Markdown with Python, CLI, and MCP.
|
|
5
5
|
License: MIT
|
|
6
6
|
License-File: LICENSE
|
|
@@ -23,7 +23,7 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
23
23
|
Provides-Extra: mcp
|
|
24
24
|
Requires-Dist: PyYAML (>=6.0,<7.0)
|
|
25
25
|
Requires-Dist: fastmcp (>=3.1.1,<4.0.0) ; extra == "mcp"
|
|
26
|
-
Requires-Dist: markdown-it-py (>=3
|
|
26
|
+
Requires-Dist: markdown-it-py (>=3,<5)
|
|
27
27
|
Requires-Dist: mdit-py-plugins (>=0.5,<0.7)
|
|
28
28
|
Requires-Dist: python-dotenv (>=1.2.1,<2.0.0)
|
|
29
29
|
Requires-Dist: requests (>=2.32.0,<3.0.0)
|
|
@@ -1,67 +1,67 @@
|
|
|
1
|
-
[tool.poetry]
|
|
2
|
-
name = "python-substack"
|
|
3
|
-
version = "0.
|
|
4
|
-
description = "Write and safely manage Substack drafts from Markdown with Python, CLI, and MCP."
|
|
5
|
-
authors = ["Paolo Mazza <mazzapaolo2019@gmail.com>"]
|
|
6
|
-
license = "MIT"
|
|
7
|
-
packages = [
|
|
8
|
-
{ include = "substack" },
|
|
9
|
-
{ include = "substack_mcp" }
|
|
10
|
-
]
|
|
11
|
-
|
|
12
|
-
readme = "README.md"
|
|
13
|
-
|
|
14
|
-
repository = "https://github.com/ma2za/python-substack"
|
|
15
|
-
homepage = "https://github.com/ma2za/python-substack"
|
|
16
|
-
|
|
17
|
-
keywords = ["substack", "substack-api", "cli", "newsletter", "publishing", "automation", "mcp"]
|
|
18
|
-
classifiers = [
|
|
19
|
-
"Development Status :: 4 - Beta",
|
|
20
|
-
"Intended Audience :: Developers",
|
|
21
|
-
"Programming Language :: Python :: 3",
|
|
22
|
-
"Programming Language :: Python :: 3.10",
|
|
23
|
-
"Programming Language :: Python :: 3.11",
|
|
24
|
-
"Programming Language :: Python :: 3.12",
|
|
25
|
-
"Programming Language :: Python :: 3.13",
|
|
26
|
-
"Topic :: Communications :: Email",
|
|
27
|
-
"Topic :: Internet :: WWW/HTTP",
|
|
28
|
-
"Topic :: Software Development :: Libraries :: Python Modules"
|
|
29
|
-
]
|
|
30
|
-
|
|
31
|
-
[tool.poetry.urls]
|
|
32
|
-
"Documentation" = "https://ma2za.github.io/python-substack/"
|
|
33
|
-
"Changelog" = "https://github.com/ma2za/python-substack/blob/main/CHANGELOG.md"
|
|
34
|
-
"Issues" = "https://github.com/ma2za/python-substack/issues"
|
|
35
|
-
|
|
36
|
-
[tool.poetry.dependencies]
|
|
37
|
-
python = "<4.0,>=3.10"
|
|
38
|
-
|
|
39
|
-
requests = "^2.32.0"
|
|
40
|
-
python-dotenv = "^1.2.1"
|
|
41
|
-
PyYAML = "^6.0"
|
|
42
|
-
markdown-it-py = "
|
|
43
|
-
mdit-py-plugins = ">=0.5,<0.7"
|
|
44
|
-
fastmcp = { version = "^3.1.1", optional = true }
|
|
45
|
-
|
|
46
|
-
[tool.poetry.extras]
|
|
47
|
-
mcp = ["fastmcp"]
|
|
48
|
-
|
|
49
|
-
[tool.poetry.group.dev.dependencies]
|
|
50
|
-
pytest = "^9.1.1"
|
|
51
|
-
pre-commit = "^4.6.1"
|
|
52
|
-
|
|
53
|
-
[tool.pytest.ini_options]
|
|
54
|
-
markers = [
|
|
55
|
-
"live: opt-in tests that call the live Substack service",
|
|
56
|
-
]
|
|
57
|
-
|
|
58
|
-
[tool.poetry.scripts]
|
|
59
|
-
substack = "substack.cli:main"
|
|
60
|
-
substack-auth-check = "substack.cli:auth_check"
|
|
61
|
-
substack-publish-markdown = "substack.cli:publish_markdown"
|
|
62
|
-
substack-publish-yaml = "substack.cli:publish_yaml"
|
|
63
|
-
substack-mcp = "substack_mcp.mcp_server:main"
|
|
64
|
-
|
|
65
|
-
[build-system]
|
|
66
|
-
requires = ["poetry-core>=1.0.0"]
|
|
67
|
-
build-backend = "poetry.core.masonry.api"
|
|
1
|
+
[tool.poetry]
|
|
2
|
+
name = "python-substack"
|
|
3
|
+
version = "0.5.0"
|
|
4
|
+
description = "Write and safely manage Substack drafts from Markdown with Python, CLI, and MCP."
|
|
5
|
+
authors = ["Paolo Mazza <mazzapaolo2019@gmail.com>"]
|
|
6
|
+
license = "MIT"
|
|
7
|
+
packages = [
|
|
8
|
+
{ include = "substack" },
|
|
9
|
+
{ include = "substack_mcp" }
|
|
10
|
+
]
|
|
11
|
+
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
|
|
14
|
+
repository = "https://github.com/ma2za/python-substack"
|
|
15
|
+
homepage = "https://github.com/ma2za/python-substack"
|
|
16
|
+
|
|
17
|
+
keywords = ["substack", "substack-api", "cli", "newsletter", "publishing", "automation", "mcp"]
|
|
18
|
+
classifiers = [
|
|
19
|
+
"Development Status :: 4 - Beta",
|
|
20
|
+
"Intended Audience :: Developers",
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"Programming Language :: Python :: 3.10",
|
|
23
|
+
"Programming Language :: Python :: 3.11",
|
|
24
|
+
"Programming Language :: Python :: 3.12",
|
|
25
|
+
"Programming Language :: Python :: 3.13",
|
|
26
|
+
"Topic :: Communications :: Email",
|
|
27
|
+
"Topic :: Internet :: WWW/HTTP",
|
|
28
|
+
"Topic :: Software Development :: Libraries :: Python Modules"
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[tool.poetry.urls]
|
|
32
|
+
"Documentation" = "https://ma2za.github.io/python-substack/"
|
|
33
|
+
"Changelog" = "https://github.com/ma2za/python-substack/blob/main/CHANGELOG.md"
|
|
34
|
+
"Issues" = "https://github.com/ma2za/python-substack/issues"
|
|
35
|
+
|
|
36
|
+
[tool.poetry.dependencies]
|
|
37
|
+
python = "<4.0,>=3.10"
|
|
38
|
+
|
|
39
|
+
requests = "^2.32.0"
|
|
40
|
+
python-dotenv = "^1.2.1"
|
|
41
|
+
PyYAML = "^6.0"
|
|
42
|
+
markdown-it-py = ">=3,<5"
|
|
43
|
+
mdit-py-plugins = ">=0.5,<0.7"
|
|
44
|
+
fastmcp = { version = "^3.1.1", optional = true }
|
|
45
|
+
|
|
46
|
+
[tool.poetry.extras]
|
|
47
|
+
mcp = ["fastmcp"]
|
|
48
|
+
|
|
49
|
+
[tool.poetry.group.dev.dependencies]
|
|
50
|
+
pytest = "^9.1.1"
|
|
51
|
+
pre-commit = "^4.6.1"
|
|
52
|
+
|
|
53
|
+
[tool.pytest.ini_options]
|
|
54
|
+
markers = [
|
|
55
|
+
"live: opt-in tests that call the live Substack service",
|
|
56
|
+
]
|
|
57
|
+
|
|
58
|
+
[tool.poetry.scripts]
|
|
59
|
+
substack = "substack.cli:main"
|
|
60
|
+
substack-auth-check = "substack.cli:auth_check"
|
|
61
|
+
substack-publish-markdown = "substack.cli:publish_markdown"
|
|
62
|
+
substack-publish-yaml = "substack.cli:publish_yaml"
|
|
63
|
+
substack-mcp = "substack_mcp.mcp_server:main"
|
|
64
|
+
|
|
65
|
+
[build-system]
|
|
66
|
+
requires = ["poetry-core>=1.0.0"]
|
|
67
|
+
build-backend = "poetry.core.masonry.api"
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
"""A library that provides a Python interface to the Substack API."""
|
|
2
|
-
|
|
3
|
-
__author__ = "Paolo Mazza"
|
|
4
|
-
__email__ = "mazzapaolo2019@gmail.com"
|
|
5
|
-
__license__ = "MIT License"
|
|
6
|
-
__version__ = "0.
|
|
7
|
-
__url__ = "https://github.com/ma2za/python-substack"
|
|
8
|
-
__download_url__ = "https://pypi.python.org/pypi/python-substack"
|
|
9
|
-
__description__ = (
|
|
10
|
-
"Write and safely manage Substack drafts from Markdown with Python, CLI, and MCP."
|
|
11
|
-
)
|
|
12
|
-
|
|
13
|
-
from .api import Api
|
|
1
|
+
"""A library that provides a Python interface to the Substack API."""
|
|
2
|
+
|
|
3
|
+
__author__ = "Paolo Mazza"
|
|
4
|
+
__email__ = "mazzapaolo2019@gmail.com"
|
|
5
|
+
__license__ = "MIT License"
|
|
6
|
+
__version__ = "0.5.0"
|
|
7
|
+
__url__ = "https://github.com/ma2za/python-substack"
|
|
8
|
+
__download_url__ = "https://pypi.python.org/pypi/python-substack"
|
|
9
|
+
__description__ = (
|
|
10
|
+
"Write and safely manage Substack drafts from Markdown with Python, CLI, and MCP."
|
|
11
|
+
)
|
|
12
|
+
|
|
13
|
+
from .api import Api
|