Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
PyPayment is a wrapper for payment provider APIs
Main idea – unified interface for every provider
This library simplifies payment integration
Install the latest version with PyPI
pip install -U pypayment
# 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=<payment_unique_id>
# 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
Contributions are welcome! Here's how you can help:
This project is licensed under the MIT License - see the LICENSE file for details
FAQs
Payment Providers API Wrapper
We found that pypayment demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.