python-substack 0.2.0__tar.gz → 0.3.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.2.0 → python_substack-0.3.0}/PKG-INFO +12 -1
- {python_substack-0.2.0 → python_substack-0.3.0}/README.md +10 -0
- {python_substack-0.2.0 → python_substack-0.3.0}/pyproject.toml +2 -1
- {python_substack-0.2.0 → python_substack-0.3.0}/substack/__init__.py +1 -1
- {python_substack-0.2.0 → python_substack-0.3.0}/LICENSE +0 -0
- {python_substack-0.2.0 → python_substack-0.3.0}/substack/api.py +0 -0
- {python_substack-0.2.0 → python_substack-0.3.0}/substack/cli.py +0 -0
- {python_substack-0.2.0 → python_substack-0.3.0}/substack/exceptions.py +0 -0
- {python_substack-0.2.0 → python_substack-0.3.0}/substack/mdrender.py +0 -0
- {python_substack-0.2.0 → python_substack-0.3.0}/substack/nodes.py +0 -0
- {python_substack-0.2.0 → python_substack-0.3.0}/substack/post.py +0 -0
- {python_substack-0.2.0 → python_substack-0.3.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.3.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
|
|
@@ -28,6 +28,7 @@ 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)
|
|
30
30
|
Project-URL: Changelog, https://github.com/ma2za/python-substack/blob/main/CHANGELOG.md
|
|
31
|
+
Project-URL: Documentation, https://ma2za.github.io/python-substack/
|
|
31
32
|
Project-URL: Homepage, https://github.com/ma2za/python-substack
|
|
32
33
|
Project-URL: Issues, https://github.com/ma2za/python-substack/issues
|
|
33
34
|
Project-URL: Repository, https://github.com/ma2za/python-substack
|
|
@@ -45,6 +46,10 @@ publish them through Python, a command-line interface, or MCP.
|
|
|
45
46
|
[](LICENSE)
|
|
46
47
|
[](https://pepy.tech/project/python-substack)
|
|
47
48
|
|
|
49
|
+
[Documentation](https://ma2za.github.io/python-substack/) ·
|
|
50
|
+
[Getting started](https://ma2za.github.io/python-substack/getting-started.html) ·
|
|
51
|
+
[PyPI](https://pypi.org/project/python-substack/)
|
|
52
|
+
|
|
48
53
|
> [!IMPORTANT]
|
|
49
54
|
> Creating and publishing are separate operations. `substack drafts create`
|
|
50
55
|
> always creates an unpublished draft. It never schedules, sends, publishes,
|
|
@@ -248,12 +253,18 @@ See [MCP server](docs/mcp.md) for the tool list and safety notes.
|
|
|
248
253
|
|
|
249
254
|
## Project documentation
|
|
250
255
|
|
|
256
|
+
- [Documentation site](https://ma2za.github.io/python-substack/)
|
|
257
|
+
- [Installation and first draft](docs/getting-started.md)
|
|
258
|
+
- [Unified CLI](docs/cli.md)
|
|
259
|
+
- [Python SDK](docs/python-sdk.md)
|
|
251
260
|
- [Authentication](docs/authentication.md)
|
|
252
261
|
- [Markdown reference](docs/markdown.md)
|
|
253
262
|
- [Legacy CLI commands](docs/legacy-cli.md)
|
|
254
263
|
- [Low-level Python API](docs/low-level-api.md)
|
|
255
264
|
- [YAML drafts](docs/yaml.md)
|
|
256
265
|
- [MCP server](docs/mcp.md)
|
|
266
|
+
- [Safety and publishing behavior](docs/safety.md)
|
|
267
|
+
- [Troubleshooting](docs/troubleshooting.md)
|
|
257
268
|
- [Compatibility policy](docs/compatibility.md)
|
|
258
269
|
- [Contributing](CONTRIBUTING.md)
|
|
259
270
|
- [Security policy](SECURITY.md)
|
|
@@ -10,6 +10,10 @@ publish them through Python, a command-line interface, or MCP.
|
|
|
10
10
|
[](LICENSE)
|
|
11
11
|
[](https://pepy.tech/project/python-substack)
|
|
12
12
|
|
|
13
|
+
[Documentation](https://ma2za.github.io/python-substack/) ·
|
|
14
|
+
[Getting started](https://ma2za.github.io/python-substack/getting-started.html) ·
|
|
15
|
+
[PyPI](https://pypi.org/project/python-substack/)
|
|
16
|
+
|
|
13
17
|
> [!IMPORTANT]
|
|
14
18
|
> Creating and publishing are separate operations. `substack drafts create`
|
|
15
19
|
> always creates an unpublished draft. It never schedules, sends, publishes,
|
|
@@ -213,12 +217,18 @@ See [MCP server](docs/mcp.md) for the tool list and safety notes.
|
|
|
213
217
|
|
|
214
218
|
## Project documentation
|
|
215
219
|
|
|
220
|
+
- [Documentation site](https://ma2za.github.io/python-substack/)
|
|
221
|
+
- [Installation and first draft](docs/getting-started.md)
|
|
222
|
+
- [Unified CLI](docs/cli.md)
|
|
223
|
+
- [Python SDK](docs/python-sdk.md)
|
|
216
224
|
- [Authentication](docs/authentication.md)
|
|
217
225
|
- [Markdown reference](docs/markdown.md)
|
|
218
226
|
- [Legacy CLI commands](docs/legacy-cli.md)
|
|
219
227
|
- [Low-level Python API](docs/low-level-api.md)
|
|
220
228
|
- [YAML drafts](docs/yaml.md)
|
|
221
229
|
- [MCP server](docs/mcp.md)
|
|
230
|
+
- [Safety and publishing behavior](docs/safety.md)
|
|
231
|
+
- [Troubleshooting](docs/troubleshooting.md)
|
|
222
232
|
- [Compatibility policy](docs/compatibility.md)
|
|
223
233
|
- [Contributing](CONTRIBUTING.md)
|
|
224
234
|
- [Security policy](SECURITY.md)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "python-substack"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.3.0"
|
|
4
4
|
description = "Write and safely manage Substack drafts from Markdown with Python, CLI, and MCP."
|
|
5
5
|
authors = ["Paolo Mazza <mazzapaolo2019@gmail.com>"]
|
|
6
6
|
license = "MIT"
|
|
@@ -29,6 +29,7 @@ classifiers = [
|
|
|
29
29
|
]
|
|
30
30
|
|
|
31
31
|
[tool.poetry.urls]
|
|
32
|
+
"Documentation" = "https://ma2za.github.io/python-substack/"
|
|
32
33
|
"Changelog" = "https://github.com/ma2za/python-substack/blob/main/CHANGELOG.md"
|
|
33
34
|
"Issues" = "https://github.com/ma2za/python-substack/issues"
|
|
34
35
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
__author__ = "Paolo Mazza"
|
|
4
4
|
__email__ = "mazzapaolo2019@gmail.com"
|
|
5
5
|
__license__ = "MIT License"
|
|
6
|
-
__version__ = "0.
|
|
6
|
+
__version__ = "0.3.0"
|
|
7
7
|
__url__ = "https://github.com/ma2za/python-substack"
|
|
8
8
|
__download_url__ = "https://pypi.python.org/pypi/python-substack"
|
|
9
9
|
__description__ = (
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|