Skip to main content

Python SDK to interact with AbacatePay's API

Project description

AbacatePay SDK

PyPI Version PyPI Downloads

A Python SDK to simplify interactions with the AbacatePay API.
This SDK provides tools for billing management, customer handling, and more.

English | Português


Table of Contents


Installation

Using pip

pip install abacatepay

Using Poetry

poetry add abacatepay

Getting Started

To use the SDK, import it and initialize the client with your API key:

import abacatepay

client = abacatepay.AbacatePay("<your-api-key>")

Usage Examples

Create a Billing

from abacatepay.products import Product


products = [
    Product(
        external_id="123",
        name="Test Product",
        quantity=1,
        price=50_00,
        description="Example product"
    ),
    # or as dict
    {
        'external_id': "321",
        'name': "Product as dict",
        'quantity': 1,
        'price': 10_00,
        'description': "Example using dict"
    }
]

billing = client.billing.create(
    products=products,
    return_url="https://yourwebsite.com/return",
    completion_url="https://yourwebsite.com/complete"
)

print(billing.data.url)

List All Billings

billings = client.billing.list()
for billing in billings:
    print(billing.id, billing.status)

print(len(billings))

Customer Management

from abacatepay.customers import CustomerMetadata

customer = CustomerMetadata(  # Its can also be only a dict
    email="customer@example.com",
    name="Customer Name",
    cellphone="(12) 3456-7890",
    tax_id="123-456-789-10"
)

created_customer = client.customers.create(customer)
print(created_customer.id)

Contributing

We welcome contributions to the AbacatePay SDK! To get started, please follow the steps in our Contributing Guide.

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

abacatepay-1.0.9.tar.gz (11.5 kB view details)

Uploaded Source

Built Distribution

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

abacatepay-1.0.9-py3-none-any.whl (17.0 kB view details)

Uploaded Python 3

File details

Details for the file abacatepay-1.0.9.tar.gz.

File metadata

  • Download URL: abacatepay-1.0.9.tar.gz
  • Upload date:
  • Size: 11.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for abacatepay-1.0.9.tar.gz
Algorithm Hash digest
SHA256 f6732f8bfdd6a905eedcee0125f6f0a803ab076bcc56162862f87ff2c5d38559
MD5 1b097fa14e82c561925925456c922c7e
BLAKE2b-256 8b40fa43d027f10b3f73a356aaf205ea4a87589c8958fcd91b9f1a156c405359

See more details on using hashes here.

File details

Details for the file abacatepay-1.0.9-py3-none-any.whl.

File metadata

  • Download URL: abacatepay-1.0.9-py3-none-any.whl
  • Upload date:
  • Size: 17.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for abacatepay-1.0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 dba09ff3286ad659aeef46170499e61b0f473d3a892365dfe12dc8a072e4706b
MD5 7a60945aa2051b9fcd8fe1234d89b1a2
BLAKE2b-256 e011a6e5938e4f91f057d7a211e18c21a9d6cd983e20092f274980d793b5c9d0

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