vagary-cli 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.
vagary_cli/__init__.py ADDED
@@ -0,0 +1,12 @@
1
+ """Vagary CLI (docs/planning/MCP_AND_CLI.md §5).
2
+
3
+ 0.0.1 is a placeholder claiming the PyPI name ahead of the first functional release. The real CLI
4
+ keeps two constraints from the spec: it never imports services/common (it is an API client, not an
5
+ app node), and command modules are imported lazily so `vagary --help` stays fast.
6
+ """
7
+
8
+ __version__ = "0.0.1"
9
+
10
+
11
+ def main() -> None:
12
+ print("vagary: the Vagary CLI is under development — see https://vagary.app")
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.5
2
+ Name: vagary-cli
3
+ Version: 0.0.1
4
+ Summary: Command-line client for Vagary — search and browse your saved X.com posts. Placeholder ahead of the first functional release.
5
+ Project-URL: Homepage, https://vagary.app
6
+ Requires-Python: >=3.10
7
+ Description-Content-Type: text/markdown
8
+
9
+ # Vagary CLI
10
+
11
+ Command-line client for [Vagary](https://vagary.app) — search and browse your saved X.com posts
12
+ (likes, bookmarks, your own posts) from the terminal.
13
+
14
+ **This is a placeholder release.** The first functional version — `vagary login` (browser OAuth),
15
+ `vagary search`, `vagary browse`, `vagary stats`, with `--json` output for scripting — is under
16
+ active development.
17
+
18
+ ```bash
19
+ uv tool install vagary-cli # or: pipx install vagary-cli
20
+ ```
@@ -0,0 +1,5 @@
1
+ vagary_cli/__init__.py,sha256=S5qQjovgIk7E4eOMWsUy3jUMIfQ3bpbkDSghCx1JS6c,463
2
+ vagary_cli-0.0.1.dist-info/METADATA,sha256=YeqYhDeBFGPkZswbwser2SnhltVsicLPM5-Cg8NBbJI,755
3
+ vagary_cli-0.0.1.dist-info/WHEEL,sha256=zOwg4jB6zX2kU910N-cMawjivD6tO8NEWvE12je1bVk,87
4
+ vagary_cli-0.0.1.dist-info/entry_points.txt,sha256=MMsDkIb5Wkfl0WYiUFJYeUNS-TFxiexHwIXDphDcOis,43
5
+ vagary_cli-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,2 @@
1
+ [console_scripts]
2
+ vagary = vagary_cli:main