planvortex 0.0.1__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.
- planvortex-0.0.1/.gitignore +23 -0
- planvortex-0.0.1/CHANGELOG.md +15 -0
- planvortex-0.0.1/LICENSE +21 -0
- planvortex-0.0.1/PKG-INFO +77 -0
- planvortex-0.0.1/README.md +50 -0
- planvortex-0.0.1/pyproject.toml +58 -0
- planvortex-0.0.1/src/planvortex/__init__.py +11 -0
- planvortex-0.0.1/src/planvortex/py.typed +0 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Entornos y build
|
|
2
|
+
.venv/
|
|
3
|
+
venv/
|
|
4
|
+
dist/
|
|
5
|
+
build/
|
|
6
|
+
*.egg-info/
|
|
7
|
+
site/
|
|
8
|
+
|
|
9
|
+
# Cachés de herramientas
|
|
10
|
+
__pycache__/
|
|
11
|
+
*.py[cod]
|
|
12
|
+
.pytest_cache/
|
|
13
|
+
.mypy_cache/
|
|
14
|
+
.ruff_cache/
|
|
15
|
+
.coverage
|
|
16
|
+
coverage.xml
|
|
17
|
+
htmlcov/
|
|
18
|
+
|
|
19
|
+
# Credenciales
|
|
20
|
+
.env
|
|
21
|
+
.env.live
|
|
22
|
+
|
|
23
|
+
.DS_Store
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this package are documented here. The format follows
|
|
4
|
+
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to
|
|
5
|
+
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [0.0.1] - 2026-08-26
|
|
10
|
+
|
|
11
|
+
Placeholder release. It reserves the `planvortex` name on PyPI and proves the trusted-publishing
|
|
12
|
+
pipeline end to end before there is anything to lose. It contains no client.
|
|
13
|
+
|
|
14
|
+
[Unreleased]: https://github.com/taliasoftworks/PlanVortexPython/compare/v0.0.1...HEAD
|
|
15
|
+
[0.0.1]: https://github.com/taliasoftworks/PlanVortexPython/releases/tag/v0.0.1
|
planvortex-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Talia Softworks
|
|
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.
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: planvortex
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Official Python client for the PlanVortex API
|
|
5
|
+
Project-URL: Homepage, https://planvortex.com
|
|
6
|
+
Project-URL: Documentation, https://planvortex.com/documentation
|
|
7
|
+
Project-URL: Repository, https://github.com/taliasoftworks/PlanVortexPython
|
|
8
|
+
Project-URL: Changelog, https://github.com/taliasoftworks/PlanVortexPython/blob/main/CHANGELOG.md
|
|
9
|
+
Project-URL: Issues, https://github.com/taliasoftworks/PlanVortexPython/issues
|
|
10
|
+
Author-email: Talia Softworks <contact@planvortex.com>
|
|
11
|
+
License-Expression: MIT
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Keywords: bluesky,facebook,instagram,linkedin,planvortex,publishing,scheduling,social media,tiktok
|
|
14
|
+
Classifier: Development Status :: 1 - Planning
|
|
15
|
+
Classifier: Intended Audience :: Developers
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
22
|
+
Classifier: Topic :: Internet :: WWW/HTTP
|
|
23
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
|
+
Classifier: Typing :: Typed
|
|
25
|
+
Requires-Python: >=3.10
|
|
26
|
+
Description-Content-Type: text/markdown
|
|
27
|
+
|
|
28
|
+
# planvortex
|
|
29
|
+
|
|
30
|
+
The official Python client for the [PlanVortex](https://planvortex.com) API — connect social
|
|
31
|
+
accounts, schedule and publish posts, read comments and messages, and pull stats, from Python.
|
|
32
|
+
|
|
33
|
+
> ## ⚠️ Not released yet
|
|
34
|
+
>
|
|
35
|
+
> **`0.0.1` is a placeholder.** It reserves the name on PyPI and proves the release pipeline; it
|
|
36
|
+
> contains no client and there is nothing useful to install yet. The first usable release will be
|
|
37
|
+
> `0.1.0`.
|
|
38
|
+
>
|
|
39
|
+
> If you need a PlanVortex client today, the Node one is published and complete:
|
|
40
|
+
> [`npm i planvortex`](https://www.npmjs.com/package/planvortex).
|
|
41
|
+
>
|
|
42
|
+
> Watch this repository to hear about `0.1.0`.
|
|
43
|
+
|
|
44
|
+
## What it will be
|
|
45
|
+
|
|
46
|
+
- **Synchronous and asynchronous**, same surface: `PlanVortex` and `AsyncPlanVortex`.
|
|
47
|
+
- **Typed**, from the same OpenAPI specification the API publishes at
|
|
48
|
+
<https://planvortex.com/openapi.json>. Returned shapes are `TypedDict`, so `_id` stays `_id`.
|
|
49
|
+
- **One runtime dependency**, `httpx2` — a different package from `httpx` classic, so it will not
|
|
50
|
+
collide with whatever your project already uses.
|
|
51
|
+
- **Server-side.** The `client_credentials` flow needs your `client_secret`. Connecting an account
|
|
52
|
+
from a browser is what the temporal connect token is for.
|
|
53
|
+
- Python 3.10 and newer.
|
|
54
|
+
|
|
55
|
+
```python
|
|
56
|
+
from planvortex import PlanVortex
|
|
57
|
+
|
|
58
|
+
pv = PlanVortex() # reads PLANVORTEX_CLIENT_ID and PLANVORTEX_CLIENT_SECRET
|
|
59
|
+
|
|
60
|
+
upload = pv.uploads.create(org_id, file="./sourdough.jpg")
|
|
61
|
+
pv.publications.create(
|
|
62
|
+
org_id,
|
|
63
|
+
account_id,
|
|
64
|
+
social_network="instagram",
|
|
65
|
+
text="New oven, new loaves",
|
|
66
|
+
files=[upload["_id"]],
|
|
67
|
+
)
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
## Links
|
|
71
|
+
|
|
72
|
+
- [API documentation](https://planvortex.com/documentation)
|
|
73
|
+
- [Developers](https://planvortex.com/developers)
|
|
74
|
+
- [Node client](https://github.com/taliasoftworks/PlanVortexNode)
|
|
75
|
+
- [Contributing](CONTRIBUTING.md) · [Security](SECURITY.md) · [Changelog](CHANGELOG.md)
|
|
76
|
+
|
|
77
|
+
MIT © Talia Softworks
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# planvortex
|
|
2
|
+
|
|
3
|
+
The official Python client for the [PlanVortex](https://planvortex.com) API — connect social
|
|
4
|
+
accounts, schedule and publish posts, read comments and messages, and pull stats, from Python.
|
|
5
|
+
|
|
6
|
+
> ## ⚠️ Not released yet
|
|
7
|
+
>
|
|
8
|
+
> **`0.0.1` is a placeholder.** It reserves the name on PyPI and proves the release pipeline; it
|
|
9
|
+
> contains no client and there is nothing useful to install yet. The first usable release will be
|
|
10
|
+
> `0.1.0`.
|
|
11
|
+
>
|
|
12
|
+
> If you need a PlanVortex client today, the Node one is published and complete:
|
|
13
|
+
> [`npm i planvortex`](https://www.npmjs.com/package/planvortex).
|
|
14
|
+
>
|
|
15
|
+
> Watch this repository to hear about `0.1.0`.
|
|
16
|
+
|
|
17
|
+
## What it will be
|
|
18
|
+
|
|
19
|
+
- **Synchronous and asynchronous**, same surface: `PlanVortex` and `AsyncPlanVortex`.
|
|
20
|
+
- **Typed**, from the same OpenAPI specification the API publishes at
|
|
21
|
+
<https://planvortex.com/openapi.json>. Returned shapes are `TypedDict`, so `_id` stays `_id`.
|
|
22
|
+
- **One runtime dependency**, `httpx2` — a different package from `httpx` classic, so it will not
|
|
23
|
+
collide with whatever your project already uses.
|
|
24
|
+
- **Server-side.** The `client_credentials` flow needs your `client_secret`. Connecting an account
|
|
25
|
+
from a browser is what the temporal connect token is for.
|
|
26
|
+
- Python 3.10 and newer.
|
|
27
|
+
|
|
28
|
+
```python
|
|
29
|
+
from planvortex import PlanVortex
|
|
30
|
+
|
|
31
|
+
pv = PlanVortex() # reads PLANVORTEX_CLIENT_ID and PLANVORTEX_CLIENT_SECRET
|
|
32
|
+
|
|
33
|
+
upload = pv.uploads.create(org_id, file="./sourdough.jpg")
|
|
34
|
+
pv.publications.create(
|
|
35
|
+
org_id,
|
|
36
|
+
account_id,
|
|
37
|
+
social_network="instagram",
|
|
38
|
+
text="New oven, new loaves",
|
|
39
|
+
files=[upload["_id"]],
|
|
40
|
+
)
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Links
|
|
44
|
+
|
|
45
|
+
- [API documentation](https://planvortex.com/documentation)
|
|
46
|
+
- [Developers](https://planvortex.com/developers)
|
|
47
|
+
- [Node client](https://github.com/taliasoftworks/PlanVortexNode)
|
|
48
|
+
- [Contributing](CONTRIBUTING.md) · [Security](SECURITY.md) · [Changelog](CHANGELOG.md)
|
|
49
|
+
|
|
50
|
+
MIT © Talia Softworks
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# NOTA: este pyproject es el del 0.0.1 de RELLENO. Solo tiene lo justo para construir una wheel
|
|
2
|
+
# valida, reservar el nombre en PyPI y ejercitar el trusted publishing. La fase 2 del roadmap lo
|
|
3
|
+
# reescribe entero: httpx2, ruff, mypy --strict, pytest, cobertura y la matriz de CI.
|
|
4
|
+
|
|
5
|
+
[build-system]
|
|
6
|
+
requires = ["hatchling>=1.27"]
|
|
7
|
+
build-backend = "hatchling.build"
|
|
8
|
+
|
|
9
|
+
[project]
|
|
10
|
+
name = "planvortex"
|
|
11
|
+
version = "0.0.1"
|
|
12
|
+
description = "Official Python client for the PlanVortex API"
|
|
13
|
+
readme = "README.md"
|
|
14
|
+
requires-python = ">=3.10"
|
|
15
|
+
license = "MIT"
|
|
16
|
+
license-files = ["LICENSE"]
|
|
17
|
+
authors = [{ name = "Talia Softworks", email = "contact@planvortex.com" }]
|
|
18
|
+
keywords = [
|
|
19
|
+
"planvortex",
|
|
20
|
+
"social media",
|
|
21
|
+
"scheduling",
|
|
22
|
+
"publishing",
|
|
23
|
+
"instagram",
|
|
24
|
+
"facebook",
|
|
25
|
+
"linkedin",
|
|
26
|
+
"tiktok",
|
|
27
|
+
"bluesky",
|
|
28
|
+
]
|
|
29
|
+
classifiers = [
|
|
30
|
+
# 1 - Planning, porque es exactamente lo que es: un hueco reservado. La 0.1.0 lo sube a 4 - Beta.
|
|
31
|
+
"Development Status :: 1 - Planning",
|
|
32
|
+
"Intended Audience :: Developers",
|
|
33
|
+
"Programming Language :: Python :: 3",
|
|
34
|
+
"Programming Language :: Python :: 3.10",
|
|
35
|
+
"Programming Language :: Python :: 3.11",
|
|
36
|
+
"Programming Language :: Python :: 3.12",
|
|
37
|
+
"Programming Language :: Python :: 3.13",
|
|
38
|
+
"Programming Language :: Python :: 3.14",
|
|
39
|
+
"Topic :: Internet :: WWW/HTTP",
|
|
40
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
41
|
+
"Typing :: Typed",
|
|
42
|
+
]
|
|
43
|
+
# Sin dependencias a proposito: el relleno no importa nada. httpx2 entra en la fase 2, cuando haya
|
|
44
|
+
# un cliente que lo use, y no antes: nadie deberia arrastrar una transitiva por instalar un hueco.
|
|
45
|
+
dependencies = []
|
|
46
|
+
|
|
47
|
+
[project.urls]
|
|
48
|
+
Homepage = "https://planvortex.com"
|
|
49
|
+
Documentation = "https://planvortex.com/documentation"
|
|
50
|
+
Repository = "https://github.com/taliasoftworks/PlanVortexPython"
|
|
51
|
+
Changelog = "https://github.com/taliasoftworks/PlanVortexPython/blob/main/CHANGELOG.md"
|
|
52
|
+
Issues = "https://github.com/taliasoftworks/PlanVortexPython/issues"
|
|
53
|
+
|
|
54
|
+
[tool.hatch.build.targets.wheel]
|
|
55
|
+
packages = ["src/planvortex"]
|
|
56
|
+
|
|
57
|
+
[tool.hatch.build.targets.sdist]
|
|
58
|
+
include = ["src/", "README.md", "CHANGELOG.md", "LICENSE", "pyproject.toml"]
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"""Official Python client for the PlanVortex API.
|
|
2
|
+
|
|
3
|
+
This ``0.0.1`` is a **placeholder**. It reserves the name on PyPI and proves the release
|
|
4
|
+
pipeline; it contains no client. The first usable release is ``0.1.0``.
|
|
5
|
+
|
|
6
|
+
See https://github.com/taliasoftworks/PlanVortexPython
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
__version__ = "0.0.1"
|
|
10
|
+
|
|
11
|
+
__all__ = ["__version__"]
|
|
File without changes
|