Skip to main content

GoPay's Python SDK for Payments REST API

Project description

GoPay's Python SDK for Payments REST API

Build Status

Requirements

Installation

The simplest way to install SDK is to use PIP:

pip install gopay

Basic usage

import gopay
from gopay.enums import TokenScope, Language

# minimal configuration
payments = gopay.payments({
    "goid": "{{YOUR-GOID}}",
    "client_id": "{{YOUR-CLIENT-ID}}",
    "client_secret": "{{YOUR-CLIENT-SECRET}}",
    "gateway_url": 'https://gw.sandbox.gopay.com/api'
})

# full configuration
payments = gopay.payments({
    "goid": "{{YOUR-GOID}}",
    "client_id": "{{YOUR-CLIENT-ID}}",
    "client_secret": "{{YOUR-CLIENT-SECRET}}",
    "gateway_url": 'https://gw.sandbox.gopay.com/api'
    "scope": TokenScope.ALL,
    "language": Language.CZECH
})

# Sandbox URL: https://gw.sandbox.gopay.com/api
# Production URL: https://gate.gopay.cz/api

Configuration

Required fields

Required field Data type Documentation
goid string GoID assigned by GoPay (production or sandbox)
client_id string Client ID assigned by GoPay (production or sandbox)
client_secret string Client Secret assigned by GoPay (production or sandbox)
gateway_url string URL of the environment - production or sandbox (see Docs)

Optional fields

Optional field Data type Default value Documentation
scope string gopay.enums.TokenScope.ALL https://doc.gopay.com/#access-token
language string gopay.enums.Language.ENGLISH default language to use + localization of errors

Available methods

API SDK method
Create a payment payments.create_payment(payment: dict)
Get status of a payment payments.get_status(payment_id: str | int)
Refund a payment payments.refund_payment(payment_id: int | str, amount: int)
Create a recurring payment payments.create_recurrence(payment_id: int | str, payment: dict)
Cancel a recurring payment payments.void_recurrence(payment_id: int | str)
Capture a preauthorized payment payments.capture_authorization(payment_id: int | str)
Capture a preauthorized payment partially payments.capture_authorization_partial(payment_id: int | str, payment: dict)
Void a preauthorized payment payments.void_authorization(payment_id: int | str)
Get payment card details payments.get_card_details(card_id: int | str)
Delete a saved card payments.delete_card(card_id: int | str)
Get allowed payment methods for a currency payments.get_payment_instruments(goid: int | str, currency: gopay.enums.Currency)
Get all allowed payment methods payments.get_payment_instruments_all(goid: int | str)
Generate an account statement payments.get_account_statement(statement_request: dict)

SDK response? Has my call succeed?

SDK returns wrapped API response. Every method returns gopay.http.Response object. Structure of the json should be same as in documentation. SDK throws no exception. Please create an issue if you catch one.

response = payments.create_payment(...)
if response.success:
    print(f"Hooray, API returned {response}")
    return response.json["gw_url"] # url for initiation of gateway
else:
    # errors format: https://doc.gopay.com#HTTP-result-codes
    print(f"Oops, API returned  {response.status_code}: {response}")
Property/Method Description
response.success Checks if API call was successful
response.json decoded response, returned objects are converted into a dictionary if possiblem
response.status_code HTTP status code
response.raw_body raw bytes of the reponse content

Are required fields and allowed values validated?

Not yet. API validates fields pretty extensively so there is no need to duplicate validation in SDK. That's why SDK just calls API which behavior is well documented in doc.gopay.com. In the future, we might use Pydantic for parsing and validation.


Advanced usage

Initiation of the payment gateway

# create payment and pass url to template (e.g. Flask, Django)
response = payments.create_payment(...)
if response.has_succeed():
    context = {
        'gateway_url': response.json['gw_url'],
        'embedjs_url': payments.get_embedjs_url
    }
    # render template

Inline gateway

<form action="{{ gateway_url }}" method="post" id="gopay-payment-button">
  <button name="pay" type="submit">Pay</button>
  <script type="text/javascript" src="{{ embedjs_url }}"></script>
</form>

Redirect gateway

<form action="{{ gateway_url }}" method="post">
  <button name="pay" type="submit">Pay</button>
</form>

Asynchronous initialization using JavaScript

Enums

Instead of hardcoding bank codes string you can use predefined enums. Check using enums in create-payment example

Type Description
Language Payment language, localization of error messages
Token scope Authorization scope for OAuth2
Payment enums Enums for creating payment
Response enums Result of creating payment, executing payment operations

Cache access token

Access token expires after 30 minutes it's expensive to use new token for every request. By default, tokens are stored in memory gopay.services.DefaultCache so they are reused as long as the object exists. But you can implement your cache and store tokens in Memcache, Redis, files, ... It's up to you.

Your cache should inherit from gopay.services.AbstractCache and implement its methods get_token and set_token. Be aware that there are two scopes (TokenScope) and SDK can be used for different clients (client_id, gateway_url). So key passed to methods is unique identifier (str) that is built for current environment. Below you can see example implementation of caching tokens in memory:

from gopay.services import AbstractCache
from gopay.http import AccessToken

class MyCache(AbstractCache):
    def __init__(self):
        self.tokens: dict[str, AccessToken] = {}

    def get_token(self, key: str) -> AccessToken | None:
        return self.tokens.get(key) # return None if token doesn't exist

    def set_token(self, key: str, token: AccessToken) -> None:
        self.tokens[key] = token

# register cache in optional service configuration
payments = gopay.payments(
    {...}, # your config
    {"cache": MyCache()}
)

Log HTTP communication

You can log every request and response from communication with API. Check available loggers below. Or you can implement your own logger, just implement function that matches the following signature:

def logger(gopay.http.Request, gopay.http.Response) -> Any: ...
# or
Callable[[gopay.http.Response, gopay.http.Request], Any]

For example:

from gopay.http import Request, Response

def my_logger(request: Request, response: Response) -> None:
    print(vars(request))
    print(vars(response))

# register logger in optional service configuration
payments = gopay.payments(
    {...}, # your config
    {"logger": my_logger}
)

The default logger uses logging.debug to log the responses and requests.

Contributing

Contributions from others would be very much appreciated! Send pull request/ issue. Thanks!

License

Copyright (c) 2023 GoPay.com. MIT Licensed, see LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gopay-2.3.0.tar.gz (11.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gopay-2.3.0-py3-none-any.whl (13.7 kB view details)

Uploaded Python 3

File details

Details for the file gopay-2.3.0.tar.gz.

File metadata

  • Download URL: gopay-2.3.0.tar.gz
  • Upload date:
  • Size: 11.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.3 CPython/3.13.5 Windows/11

File hashes

Hashes for gopay-2.3.0.tar.gz
Algorithm Hash digest
SHA256 b53d74109050bb7c209416dc5acb58dad5b53b84f70e73c73717042a09debf26
MD5 aa019cf6eb038651d2fef6167057f4d9
BLAKE2b-256 4de4009e7163dfb204382c1b07da4ca1230fa288ad96b2f1e9ffcab4080d3aee

See more details on using hashes here.

File details

Details for the file gopay-2.3.0-py3-none-any.whl.

File metadata

  • Download URL: gopay-2.3.0-py3-none-any.whl
  • Upload date:
  • Size: 13.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.3 CPython/3.13.5 Windows/11

File hashes

Hashes for gopay-2.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 893657d4d4ee313521546bed36ede836da86d31db745df8fdeabb23a255cb0da
MD5 63a66eba64f8e0608874f2a8cfb28062
BLAKE2b-256 73bb0532d54b787a26544623d2021cd121ccd3258de1705c080543ac57200333

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page