From 9958a7963450f67a2f240bfc4351fc051c5d297e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D1=82=D0=BE=D0=BD=20=D0=9D=2E=20=D0=9D=D0=B8?= =?UTF-8?q?=D0=BA=D0=BE=D0=BB=D0=B0=D0=B5=D0=B2?= Date: Fri, 24 Dec 2021 15:44:01 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D1=8B=20=D1=82=D0=B5=D0=BA=D1=81=D1=82=D1=8B=20?= =?UTF-8?q?=D0=B2=20Readme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 3 +++ README.en.md | 18 +++++++++--------- README.md | 2 +- src/yookassa_payout/__init__.py | 2 +- 4 files changed, 14 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e34062d..740e9cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +### v2.3.2 от 24.12.2021 +* Поправлены тексты в Readme + ### v2.3.1 от 21.09.2021 * Поддержка сбора данных с помощью формы ЮKassa diff --git a/README.en.md b/README.en.md index e6af7a9..3e43ccd 100644 --- a/README.en.md +++ b/README.en.md @@ -1,4 +1,4 @@ -# YooKassa Payout API Python Client Library +# YooMoney Payout API Python Client Library [![Build Status](https://travis-ci.org/yoomoney/yookassa-payout-sdk-python.svg?branch=master)](https://travis-ci.org/yoomoney/yookassa-payout-sdk-python) [![Latest Stable Version](https://img.shields.io/pypi/v/yookassa-payout.svg)](https://pypi.org/project/yookassa-payout/) @@ -7,18 +7,18 @@ [Russian](https://github.com/yoomoney/yookassa-payout-sdk-python/blob/master/README.md) | English -Client to work on [Mass Payment Protocol](https://yookassa.ru/docs/payouts/api/using-api/basics?lang=en) +Client to work on the [Protocol for mass payouts](https://yookassa.ru/docs/payouts/api/using-api/basics?lang=en) ## Opportunities You can with this SDK: -1. [Generate a certificate](https://yookassa.ru/docs/payment-solution/supplementary/security?lang=en) for interaction with YooKassa. +1. [Generate a certificate](https://yookassa.ru/docs/payment-solution/supplementary/security?lang=en) for interaction with YooMoney. 2. [Transfer money](https://yookassa.ru/docs/payouts/api/make-deposition/basics?lang=en) to individuals for wallets in YooMoney, mobile phone numbers, Bank cards and accounts (makeDeposition). 3. [To test the possibility of transfer of remittances](https://yookassa.ru/docs/payouts/api/make-deposition/basics?lang=en#test-deposition) to wallets in YooMoney (testDeposition). -4. [Keep track of the balance of payments](https://yookassa.ru/docs/payouts/api/balance?lang=en) (balance). +4. [Keep track of the balance of payouts](https://yookassa.ru/docs/payouts/api/balance?lang=en) (balance). 5. [Receive notifications](https://yookassa.ru/docs/payouts/api/error-deposition-notification?lang=en) the unsuccessful status of transfers to a Bank account, card, or mobile phone (errorDepositionNotification). ## Requirements -* Python 3.5 (и выше) +* Python 3.5 (or later version) * pip ## Installation @@ -107,7 +107,7 @@ In response to the request, the Manager will send a file with the certificate wi Place the received certificate on your server ## Start of work -1. Determine what types of payments you need and whether you want to check your balance. +1. Determine what types of payouts you need and whether you want to check your balance. 2. Import required classes ```python from yookassa_payout.domain.common.keychain import KeyChain @@ -126,9 +126,9 @@ keychain = KeyChain('publicCert.cer', 'privateCert.pem', 'password') Configuration.configure('000000', keychain) ``` -6. Call the appropriate method. [More information about making payments](https://yookassa.ru/docs/payouts/api/using-api/basics?lang=en) +6. Call the appropriate method. [More information about making payouts](https://yookassa.ru/docs/payouts/api/using-api/basics?lang=en) -#### Example of payment to a Bank account +#### Example of payout to a Bank account ```python # Importing classes from yookassa_payout.configuration import Configuration @@ -168,6 +168,6 @@ request.client_order_id = '215d8da0-000f-50be-b000-0003308c89be' request.request_dt = '2020-03-04T15:39:45.456+03:00' request.payment_params = recipient -# The carrying out of the payment +# The carrying out of the payout result = Payout.create_deposition(request) ``` diff --git a/README.md b/README.md index 1318c69..1589279 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Russian | [English](https://github.com/yoomoney/yookassa-payout-sdk-python/blob/ 1. Установите pip. 2. В консоли выполните команду -```python +```bash pip install yookassa-payout ``` diff --git a/src/yookassa_payout/__init__.py b/src/yookassa_payout/__init__.py index ddbd677..d8e1c69 100644 --- a/src/yookassa_payout/__init__.py +++ b/src/yookassa_payout/__init__.py @@ -2,4 +2,4 @@ __author__ = "YooMoney" __email__ = 'cms@yoomoney.ru' -__version__ = '2.3.1' +__version__ = '2.3.2'