Metadata-Version: 2.1
Name: paystack-cli
Version: 0.1.2
Summary: A command line app for interacting with Paystack's API
License: MIT
Keywords: paystack-python,pypaystack,paystack,paystackapi
Author: Gbenga Adeyi
Author-email: adeyigbenga005@gmail.com
Requires-Python: >=3.9,<3.13
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: pypaystack2 (>=2.0.0,<3.0.0)
Requires-Dist: typer[all] (>=0.9.0,<0.10.0)
Description-Content-Type: text/markdown

# paystack cli
A command line app for interacting with [Paystack's](https://paystack.com/) API. Built with
[Typer](https://typer.tiangolo.com/) and [Pypaystack2](https://gray-adeyi.github.io/pypaystack2/)

![utility in use](./paystack-cli.png)

## Installation
Binaries of paystack cli be found [here](https://github.com/gray-adeyi/paystack-cli/releases/tag/0.1.2). Alternatively, Paystack cli can be installed from pypi
with pip as shown below.
```bash
pip install paystack-cli
```

## First time configurations
You're required to add your paystack auth_key on first use as shown below
```bash
paystack config AUTH_KEY
```
This sets up your paystack cli for use in development mode if the test secret key is used. This auth_key can be
removed with `paystack reset`. Run `paystack --help` to see available commands

## Source code
[https://github.com/gray-adeyi/paystack-cli](https://github.com/gray-adeyi/paystack-cli)
