planvortex 0.0.1__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.
planvortex/__init__.py ADDED
@@ -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__"]
planvortex/py.typed ADDED
File without changes
@@ -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,6 @@
1
+ planvortex/__init__.py,sha256=09gje7A98HOiC4vFw3SGT4edGOiFPqwJEqHOXltlDzI,322
2
+ planvortex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ planvortex-0.0.1.dist-info/METADATA,sha256=O4tQ961T725dl99uCYSHYpEFnE5mDoT2fyhUFMLZArQ,3157
4
+ planvortex-0.0.1.dist-info/WHEEL,sha256=zOwg4jB6zX2kU910N-cMawjivD6tO8NEWvE12je1bVk,87
5
+ planvortex-0.0.1.dist-info/licenses/LICENSE,sha256=xi20W4ZrAw_R4unBoBLInHz8jSyGWMqLLWAFtOlL4bc,1072
6
+ planvortex-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.32.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -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.