Metadata-Version: 2.1
Name: venmo-cli
Version: 0.1.0
Summary: A simple CLI for Venmo
Home-page: https://github.com/AstroCB/venmo-cli
Author: Cameron Bernhardt
Author-email: me@cameronbernhardt.com
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: black (==22.12.0)
Requires-Dist: certifi (==2022.12.7)
Requires-Dist: charset-normalizer (==2.1.1)
Requires-Dist: click (==8.1.3)
Requires-Dist: idna (==3.4)
Requires-Dist: mypy-extensions (==0.4.3)
Requires-Dist: pathspec (==0.10.3)
Requires-Dist: platformdirs (==2.6.0)
Requires-Dist: requests (==2.28.1)
Requires-Dist: tomli (==2.0.1)
Requires-Dist: typing-extensions (==4.4.0)
Requires-Dist: urllib3 (==1.26.13)
Requires-Dist: venmo-api (==0.3.1)

# venmo-cli
venmo-cli is a simple CLI for Venmo, built on the [Venmo API](https://github.com/mmohades/Venmo) by mmohades. As with his API, use this tool _at your own risk_ as it is **not** sponsored/maintained by PayPal or Venmo.

## Sample usage

```
$ venmo --help
Usage: venmo [OPTIONS] COMMAND [ARGS]...

  venmo-cli: Venmo for the command-line

Options:
  --help  Show this message and exit.

Commands:
  logout   Logs out of your current session
  pay      Sends money to another user
  request  Requests money from another user
```

```
$ venmo pay --help
Usage: venmo pay [OPTIONS] USERNAME

  Sends money to another user

Options:
  -a, --amount FLOAT             [required]
  -m, --msg TEXT                 [default: 🤖]
  -p, --privacy PAYMENT_PRIVACY  [default: friends]
  --help                         Show this message and exit.
```

```
$ venmo pay cameronbernhardt -a 5 -m "thanks for the pizza" --privacy=private
Paid $5 to @cameronbernhardt with message 'thanks for the pizza'
```

```
$ venmo request cameronbernhardt -a 10 -m "lunch"
Requested $10 from @cameronbernhardt with message 'lunch'
```
