Popularity
0.8
Stable
Activity
0.0
Stable
12
3
4
Code Quality Rank:
L5
Programming language: Python
License: MIT License
Latest version: v0.2
Pyqiwi alternatives and similar packages
Based on the "Finance" category.
Alternatively, view Pyqiwi alternatives based on common mentions on social networks and blogs.
-
PyThalesians
Python library for backtesting trading strategies & analyzing financial markets (formerly pythalesians) -
Tax-Calculator
USA Federal Individual Income and Payroll Tax Microsimulation Model -
Beancount DKB
Beancount Importers for DKB (Deutsche Kredit Bank) CSV Exports
Write Clean Python Code. Always.
Sonar helps you commit clean code every time. With over 225 unique rules to find Python bugs, code smells & vulnerabilities, Sonar finds the issues while you focus on the work.
Promo
www.sonarsource.com
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Pyqiwi or a related project?
README
Pyqiwi
Lib for QIWI payment system
Installation
pip install pyqiwi
Usage
from decimal import Decimal
from datetime import datetime, timedelta
from pyqiwi import Qiwi
qiwi = Qiwi('<shop_id>', '<app_id>', '<app_password>', '<notifications_password>')
qiwi.create_invoice(
invoice_id='101', # Must be unique for your shop
amount=Decimal('22.00'),
currency='RUB',
comment='Order #101',
user='tel:+79998887766',
lifetime=datetime.now()+timedelta(hours=1), # Must be in Europe/Moscow timezone
)
print 'Invoice info:', qiwi.get_invoice('101')
print 'To pay invoice go to:', qiwi.get_invoice_url('101')