Skip to content

Repository files navigation

PyPayment

Unified Interface for Payment APIs

PyPIPython 3RuffGitmoji

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

Installation

Install the latest version with PyPI

pip install -U pypayment

Quickstart

# Choose payment provider. For example, QiwifrompypaymentimportPayment, QiwiPayment, PaymentStatus# Authorize payment providerQiwiPayment.authorize("my_secret_key")
# Create a payment and get its urlpayment: Payment=QiwiPayment(amount=100)
print(payment.url) # https://oplata.qiwi.com/form/?invoice_uid=<payment_unique_id># Wait for payment to be completedwhilepayment.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

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 file for details

Releases

Used by

Contributors

Languages