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.
onlinepayments-sdk-python3
Advanced tools
SDK to communicate with the Online Payments platform using the Online Payments Server API
The Python SDK helps you to communicate with the payment platform server API. Its primary features are:
convenient Python library for the API calls and responses
handling of all the details concerning authentication
handling of required meta data
Its use is demonstrated by an example for each possible call. The examples execute a call using the provided API key.
This repository consists out of three main components:
#. The source code of the SDK itself: /onlinepayments/sdk/
#. The source code of the SDK unit tests: /tests/unit/
#. The source code of the example integration tests:
/tests/integration/
Note that the source code of the unit tests and integration tests can only be found on GitHub.
Python 3.5 or higher is required. In addition, the following package is required:
requests <https://requests.readthedocs.io/>
__ 2.20.0 or higherThis package will be installed automatically if the SDK is installed manually or using pip following the below instructions.
To install the SDK using pip, execute the following command:
::
pip install onlinepayments-sdk-python3
Alternatively, you can install the SDK from a source distribution file:
#. Download the latest version of the Python SDK from GitHub. Choose the
onlinepayments-sdk-python3-x.y.z.zip
file from the
releases <https://github.com/wl-online-payments-direct/sdk-python3/releases>
__
page, where x.y.z
is the version number.
#. Execute the following command in the folder where the SDK was
downloaded to:
::
pip install onlinepayments-sdk-python3-x.y.z.zip
After the Python SDK has been installed, it can be uninstalled using the following command:
::
pip uninstall onlinepayments-sdk-python3
The required package can be uninstalled in the same way.
| There are two types of tests: unit tests and integration tests. The unit tests will work out-of-the-box; for the integration tests some configuration is required. | First, some environment variables need to be set:
onlinePayments.api.apiKeyId
for the API key id to use.onlinePayments.api.secretApiKey
for the secret API key to use.onlinePayments.api.merchantId
for your merchant ID.In order to run the unit and integration tests, the
mock <https://pypi.python.org/pypi/mock>
__ backport and
mockito <https://pypi.python.org/pypi/mockito>
__ packages are
required. These can be installed using the following command:
::
pip install mock mockito
The following commands can then be executed from the tests
directory
to execute the tests:
Unit tests:
::
python run_unit_tests.py
Integration tests:
::
python run_integration_tests.py
Both unit and integration tests:
::
python run_all_tests.py
FAQs
SDK to communicate with the Online Payments platform using the Online Payments Server API
We found that onlinepayments-sdk-python3 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.