The Library supports all APIs under the following services:
- Payments via API (mobile money, cards, account, etc.)
- Recurring Payments
- Transaction Status
A full getting started guide for integrating SeerBit can be found at getting started docs.
The documentation, installation guide, detailed description of the SeerBit API and all of its features is available on the documentation website
- Python 3.9
- Pip
Run this command on the terminal:
pip install seerbit-python-v2
You can contribute to this repository so that anyone can benefit from it:
- Improved features
- Resolved bug fixes and issues
You can also check the demos
Instantiate a client and set the parameters.
fromseerbit.clientimportClientfromseerbit.enumsimportEnvironmentEnumfromseerbit.seerbitlibimportSeerBitclient=Client()
client.api_base=SeerBit.LIVE_API_BASEclient.environment=EnvironmentEnum.LIVE.valueclient.private_key="private_key"client.public_key="public_key"client.timeout=20To initiate a transaction request you need to perform authentication operation and acquire a token.
fromseerbit.service.authenticationimportAuthenticationauth_service=Authentication(client)
auth_service.auth()
token=auth_service.get_token()After you have retrieved your token, pass it to the AccountService constructor along with your client object. You can then construct your payload and call the authorize() method of the AccountService class.
fromrandomimportrandintfromseerbit.service.account_serviceimportAccountServicerandom_number=randint(10000000, 99999999)
payment_ref="SBT_"+str(random_number)
account_payload= {
"publicKey": client.public_key,
"amount": "100.00",
"fee": "10",
"fullName": "John Doe",
"mobileNumber": "08037456590",
"currency": "NGN",
"country": "NG",
"paymentReference": payment_ref,
"email": "johndoe@gmail.com",
"productId": "Foods",
"productDescription": "Uba Account Transaction ",
"clientAppCode": "kpp64",
"channelType": "BANK_ACCOUNT",
"redirectUrl": "https://checkout.seerbit.com",
"deviceType": "Apple Laptop",
"sourceIP": "127.0.0.1:3456",
"accountName": "John S Doe",
"accountNumber": "1234567890",
"bankCode": "033",
"bvn": "12345678901",
"dateOfBirth": "04011984",
"retry": "false",
"invoiceNumber": "1234567891abc123ac"
}
account_service=AccountService(client, token)
json_response=account_service.authorize(account_payload)Find more examples here.
GNU General Public License. For more information, see the LICENSE file.
