Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
The Unofficial* Vipps Python library provides convenient access to the Vipps AS API from applications written in the Python language.
See the Vipps Developers resources
pip install vipps
Test on Python3.7
Vipps eCommerce API version 2. Initiate payment and get redirect Url:
from vipps import VippsEcomApi
payment = VippsEcomApi(
client_id="fb492b5e-7907-4d83-ba20-c7fb60ca35de",
client_secret="Y8Kteew6GE2ZmeycEt6egg==",
vipps_subscription_key="0f14ebcab0ec4b29ae0cb90d91b4a84a",
merchant_serial_number="123456",
vipps_server="https://apitest.vipps.no",
callback_prefix="https://example.com/vipps/callbacks-for-payment-updates"
fall_back="https://example.com/vipps/fallback-order-result-page/acme-shop-123-order123abc"
)
# Initiate payment
initiate = payment.init_payment(
order_id="acme-shop-123-order123abc",
amount=200,
transaction_text="One pair of Vipps socks",
)
# Redirect Url
redirect_url = initiate.get("url")
# Capture Payment
capture = payment.capture_payment(
order_id="acme-shop-123-order123abc",
amount=200,
transaction_text="One pair of Vipps socks",
)
# Cancel Payment
cancel = payment.cancel_payment(
order_id="acme-shop-123-order123abc",
transaction_text="One pair of Vipps socks",
)
# Refund Payment
refund = payment.refund_payment(
order_id="acme-shop-123-order123abc",
amount=200,
transaction_text="One pair of Vipps socks",
)
# Payment details
details = payment.details_payment(
order_id="acme-shop-123-order123abc"
)
I am not affiliate or associate of the Vipps AS in any possible way. Used publicly available info to build this software.
touch Dockerfile
nano Dockerfile
# Dockerfile
FROM python:latest
RUN apt update
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
RUN pip install --upgrade pip
docker build -t ipy .
docker run -it -v ${PWD}:/home --name py ipy bash
mkdir /home/vipps-python
cd /home/vipps-python
mkdir vipps
mkdir tests
touch vipps/__init__.py
touch LICENSE
touch README.md
touch pyproject.toml
touch setup.cfg
touch setup.py
nano pyproject.toml
# pyproject.toml
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
nano setup.cfg
# setup.cfg
[metadata]
name = vipps
version = 0.3
author = Almaz Kunpeissov
author_email = hi@akun.dev
description = Python bindings for the Vipps API
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/almazkun/vipps-python
keywords = vipps api payments
license = MIT License
license_files = LICENSE
project_urls =
Documentation = https://github.com/almazkun/vipps-python
Source = https://github.com/almazkun/vipps-python
Tracker = https://github.com/almazkun/vipps-python/issues
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages = find:
python_requires = >=3.7
include_package_data = true
zip_safe = false
install_requires = requests >= 2
[options.packages.find]
exclude =
tests
tests.*
nano setup.py
from setuptools import setup
setup()
python3 -m pip install --upgrade build
python3 -m build
python3 -m pip install --user --upgrade twine
python3 -m twine upload --repository testpypi dist/*
curl https://test.pypi.org/project/vipps/0.1/
python3 -m pip install --index-url https://test.pypi.org/simple/ --no-deps vipps
python3
import vipps
python3 -m twine upload dist/*
FAQs
Python bindings for the Vipps API
We found that vipps 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.