← Back to Documentation

Python SDK

Official TurraTech library for Python applications.

Installation

pip install turratech

Or using poetry:

poetry add turratech

Quick Start

import turratech turratech.api_key = 'sk_live_your_secret_key' # Create a payment payment = turratech.Payment.create( amount=2500, currency='usd', payment_method='pm_card_visa', description='Order #1234' )

Requirements

Python 3.7 or higher is required. The SDK is fully typed and compatible with mypy.