All Projects → MadSpindel → Swish Python

MadSpindel / Swish Python

Licence: mit
💰 Swish Python Client Library

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Swish Python

Payment Request
Payment Request API
Stars: ✭ 422 (+2382.35%)
Mutual labels:  e-commerce, payments
Ecommerce Laravel Bootstrap
Responsive, Multi-Vendor, MultiLanguage Online Store Platform (shopping cart solution)
Stars: ✭ 99 (+482.35%)
Mutual labels:  e-commerce, payments
Aimeos Laravel
Laravel ecommerce package for professional, ultra fast online shops, complex B2B applications and #gigacommerce
Stars: ✭ 5,204 (+30511.76%)
Mutual labels:  e-commerce
Ecommerce Codeigniter Bootstrap
Responsive, Multi-Vendor, MultiLanguage Online Store Platform (shopping cart solution)
Stars: ✭ 788 (+4535.29%)
Mutual labels:  e-commerce
Pinax Stripe
a payments Django app for Stripe
Stars: ✭ 650 (+3723.53%)
Mutual labels:  payments
Example Storefront
Example Storefront is Reaction Commerce’s headless ecommerce storefront - Next.js, GraphQL, React. Built using Apollo Client and the commerce-focused React UI components provided in the Storefront Component Library (reactioncommerce/reaction-component-library). It connects with Reaction backend with the GraphQL API.
Stars: ✭ 471 (+2670.59%)
Mutual labels:  e-commerce
Invoiceninja
Invoices, Expenses and Tasks built with Laravel and Flutter
Stars: ✭ 6,247 (+36647.06%)
Mutual labels:  payments
Uikit Ecommerce Template
E-commerce template built with UIKIt
Stars: ✭ 453 (+2564.71%)
Mutual labels:  e-commerce
Lightpay
Atomic swaps for the Lightning Payment Network
Stars: ✭ 17 (+0%)
Mutual labels:  payments
Recurly Js
Simple subscription billing in the browser
Stars: ✭ 635 (+3635.29%)
Mutual labels:  payments
Thelia
Thelia is an open source tool for creating e-business websites and managing online content. Repo containing the new major version (v2)
Stars: ✭ 752 (+4323.53%)
Mutual labels:  e-commerce
Dotplant2
E-Commerce CMS - Yii Framework 2 (yii2, shop)
Stars: ✭ 636 (+3641.18%)
Mutual labels:  e-commerce
Braintree php
Braintree PHP library
Stars: ✭ 491 (+2788.24%)
Mutual labels:  payments
Go2o
基于DDD的o2o的业务模型及基础, 使用Golang+gRPC/Thrift实现
Stars: ✭ 700 (+4017.65%)
Mutual labels:  e-commerce
Payment
💰 A jQuery-free general purpose library for building credit card forms, validating inputs and formatting numbers.
Stars: ✭ 467 (+2647.06%)
Mutual labels:  payments
Vc Platform
VirtoCommerce Platform repository
Stars: ✭ 828 (+4770.59%)
Mutual labels:  e-commerce
Framework
The truly Laravel E-commerce Framework
Stars: ✭ 456 (+2582.35%)
Mutual labels:  e-commerce
Django Payments
Universal payment handling for Django.
Stars: ✭ 575 (+3282.35%)
Mutual labels:  payments
Payment Icons
💳 Payment / Ecommerce related svg icon packs
Stars: ✭ 671 (+3847.06%)
Mutual labels:  payments
Eclair
A scala implementation of the Lightning Network.
Stars: ✭ 892 (+5147.06%)
Mutual labels:  payments

swish

Build Status codecov.io

💰 Swish Python Client Library

This client library is designed to support the Swish handel API.

Offical Integration Guide

🏗 Installation

It's easy! Just install it with pip:

pip install swish

📋 Quick Start Example

import swish

swish_client = swish.SwishClient(
    environment=swish.Environment.Test,
    merchant_swish_number='1231181189',
    cert=('/path/to/cert.pem', '/path/to/key.pem'),
    verify='/path/to/swish.pem'
)

payment = swish_client.create_payment(
    payee_payment_reference='0123456789',
    callback_url='https://example.com/api/swishcb/paymentrequests',
    payer_alias='46712345678',
    amount=100,
    currency='SEK',
    message='Kingston USB Flash Drive 8 GB'
)

# YOUR CODE: Save payment.id and other info in your database for later!
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].