Popularity
0.9
Growing
Activity
0.0
Stable
11
2
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) -
Gunbot Quant
An open-source toolkit for quantitative analysis of crypto & stock markets, featuring an advanced market screener, portfolio backtester, and companion tools for the Gunbot trading bot.
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
Promo
www.saashub.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')