https://github.com/timnekk/pypayment
Unified Interface for Payment APIs
https://github.com/timnekk/pypayment
aaio api betatransfer lava payment payok python qiwi yoomoney
Last synced: 9 months ago
JSON representation
Unified Interface for Payment APIs
- Host: GitHub
- URL: https://github.com/timnekk/pypayment
- Owner: TimNekk
- License: apache-2.0
- Created: 2022-06-06T15:25:53.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-09-24T07:32:22.000Z (10 months ago)
- Last Synced: 2025-09-24T09:35:52.050Z (10 months ago)
- Topics: aaio, api, betatransfer, lava, payment, payok, python, qiwi, yoomoney
- Language: Python
- Homepage: https://timnekk.github.io/PyPayment/
- Size: 1.2 MB
- Stars: 23
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
---
**Documentation**: https://timnekk.github.io/PyPayment/
**Source Code**: https://github.com/TimNekk/PyPayment
---
**PyPayment** is a wrapper for payment provider APIs
> Main idea – **unified interface** for every provider
This library simplifies payment integration
### Supported Providers
- [Qiwi P2P](https://p2p.qiwi.com/)
- [YooMoney](https://yoomoney.ru/)
- [PayOk](https://payok.online/)
- [BetaTransfer](https://betatransfer.io/)
- [Aaio](https://aaio.so/)
- [Lava](https://lava.kz/)
## Installation
Install the latest version with [PyPI](https://pypi.org/project/pypayment/)
```bash
pip install -U pypayment
```
## Quickstart
```python
# Choose payment provider. For example, Qiwi
from pypayment import Payment, QiwiPayment, PaymentStatus
# Authorize payment provider
QiwiPayment.authorize("my_secret_key")
# Create a payment and get its url
payment: Payment = QiwiPayment(amount=100)
print(payment.url) # https://oplata.qiwi.com/form/?invoice_uid=
# Wait for payment to be completed
while payment.status != PaymentStatus.PAID:
input("Press Enter to update payment status...")
# Use `update()` method to update payment's `status` and `income`
payment.update()
print("Payment is completed!")
print(payment.income) # 90.0 (if commission is 10%)
```
> [!NOTE]
> For more details see [documentation](https://timnekk.github.io/PyPayment/)
## Contributing
**Contributions are welcome! Here's how you can help:**
1. Fork it
2. Create your feature branch
3. Commit your changes
4. Push to the branch
5. Create a new Pull Request
6. Get your code reviewed
7. Merge your code
8. Get a 🌟
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details