Metadata-Version: 2.1
Name: squadco
Version: 1.0.1
Summary: Python API Wrapper for Squadco.com Payment services
Home-page: https://github.com/joey1123455/squad-py.git
Author: Uche David, Joseph Folayan, Peter Adetunji
Author-email: debugtitan.hub@outlook.com, folayanjoey@gmail.com, peteradetunji30@gmail.com
License: MIT
Keywords: squadco payment gateway,squadco python package,squad
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 2
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

# SQUAD PYTHON

A Python wrapper for [Squadco API](https://squadinc.gitbook.io/squad-api-documentation/)

The api call descriptions are from the official documentation.


## Getting Started

To install the wrapper, enter the following into the terminal.
```bash
pip install squadco
```

Every api call requires this secret_key. Make sure to use this key when getting started. 
```python
from squad import Squad
client = Squad("SECRET_KEY")

```

If you want to use the Live Endpoint, pass the test=False in the client initialization.
```python
from squad import Squad
client = Squad("SECRET_KEY",test=False)

```

##  Sample Usage

```python
from squad import Squad
client = Squad("SECRET_KEY")

verify_transaction = client.payments.verify_transaction(txn_ref="SQDEBU6383961457377100021")
print(verify_transaction)
```


