Skip to content

Commit

Permalink
Merge pull request #7 from yoomoney/release/v2.3.2
Browse files Browse the repository at this point in the history
Release/2.3.2
  • Loading branch information
tonchik-tm authored Dec 24, 2021
2 parents 6738889 + 9958a79 commit f6953e9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### v2.3.2 от 24.12.2021
* Поправлены тексты в Readme

### v2.3.1 от 21.09.2021
* Поддержка сбора данных с помощью формы ЮKassa

Expand Down
18 changes: 9 additions & 9 deletions README.en.md
Original file line number Diff line number Diff line change
@@ -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/)
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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)
```
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Russian | [English](https://github.com/yoomoney/yookassa-payout-sdk-python/blob/

1. Установите pip.
2. В консоли выполните команду
```python
```bash
pip install yookassa-payout
```

Expand Down
2 changes: 1 addition & 1 deletion src/yookassa_payout/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = "YooMoney"
__email__ = 'cms@yoomoney.ru'
__version__ = '2.3.1'
__version__ = '2.3.2'

0 comments on commit f6953e9

Please sign in to comment.