Skip to content

Commit

Permalink
Merge pull request #13 from crossjam/update-docs
Browse files Browse the repository at this point in the history
Updates for changed short help, add feedmeta help
  • Loading branch information
crossjam authored Oct 27, 2023
2 parents 0cf7766 + a142630 commit 4a0d514
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,11 @@ Options:
--help Show this message and exit.
Commands:
entries Fetch entries for the authed feedbin user and emit as JSON
feed Fetch entries for feedbin feed FEED_ID and emit as JSON
starred Fetch feedbin starred entries for the authed feedbin user...
subscriptions Fetch feedbin subscriptions for the authed feedbin user...
entries Fetch feed entries for feedbin user
feed Fetch feed entries for feedbin feed
feedmeta Retrieve feed metadata
starred Fetch starred entries for feedbin user
subscriptions Fetch feed subscriptions for feedbin user
```
<!-- [[[end]]] -->
Expand Down
28 changes: 28 additions & 0 deletions subcommands/feedmeta.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
## Feedmeta

See the main [README.md](../README.md) for top level options for
logging and authentication.

<!-- [[[cog
import cog
from feedbin_tools import cli
from click.testing import CliRunner
runner = CliRunner()
result = runner.invoke(cli.cli, ["feedmeta", "--help"])
help = result.output.replace("Usage: cli", "Usage: feedbin-tools")
cog.out(
"```\n{}\n```".format(help)
)
]]] -->
```
Usage: feedbin-tools feedmeta [OPTIONS] [FEED_IDS]...
Retrieve the feed information for each ID in FEED_IDS
Emit data in JSONL
Options:
--help Show this message and exit.
```
<!-- [[[end]]] -->

0 comments on commit 4a0d514

Please sign in to comment.