Skip to main content

InApp purchase validation API wrappers

Project description

pyinapp

travis pypi

In-app purchase validation has never been so friendly and convenient!

Installation

pip install pyinapp

Usage

Currently pyinapp supports Google Play and App Store receipts validation.

Google Play:

from pyinapp import GooglePlayValidator, InAppValidationError


bundle_id = 'com.yourcompany.yourapp'
api_key = 'API key from the developer console'
validator = GooglePlayValidator(bundle_id, api_key)

try:
    purchases = validator.validate('receipt', 'signature')
    process_purchases(purchases)
except InAppValidationError:
    """ handle validation error """

App Store:

from pyinapp import AppStoreValidator, InAppValidationError


bundle_id = 'com.yourcompany.yourapp'
validator = AppStoreValidator(bundle_id)

try:
    purchases = validator.validate('receipt')
    process_purchases(purchases)
except InAppValidationError:
    """ handle validation error """

Important! If your version is under 0.1.3, you need to check the type of purchases. For the sake of convenience you can process purchases this way:

def process_purchases(purchases):
    process(*purchases) if isinstance(purchases, list) else process(purchases)


def process(*purchases):
    for p in purchases:
        """ for instance, save p to db and add a player some coins for it """

This approach allows to process both Google Play and App Store purchases the same way.

Purchase

Purchase is a universal wrapper for Google Play and App Store receipts. It contains the following fields:

  • transaction_id: id of the purchase (transaction_id for App Store and orderId for Google Play);

  • product_id: what product has been purchased (product_id for App Store and productId for Google Play);

  • quantity: how many products have been purchased (quantity for App Store and always 1 for Google Play - there’s no such field in Google Play receipt);

  • purchased_at: when the product has been purchased, UNIX timestamp (purchase_date for App Store and purchaseTime for Google Play).

  • response: (App Store only) the response (in JSON format) from the App Store.

Contributing

To run tests, you’ll need tox. After installing, simply run it:

tox

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

pyinapp-0.1.5.tar.gz (3.5 kB view details)

Uploaded Source

Built Distribution

pyinapp-0.1.5-py3-none-any.whl (5.5 kB view details)

Uploaded Python 3

File details

Details for the file pyinapp-0.1.5.tar.gz.

File metadata

  • Download URL: pyinapp-0.1.5.tar.gz
  • Upload date:
  • Size: 3.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.3

File hashes

Hashes for pyinapp-0.1.5.tar.gz
Algorithm Hash digest
SHA256 60e573ac96b720eeabd4df1583beeb99f5b4f0b09dab042b128ea4cf7104ad22
MD5 311715296caf7c91d7161e0fb5538acb
BLAKE2b-256 579cf7fa3a8c7e875c53dcf5fe9201292e11e75df7f7a50fa39369fecb82ce28

See more details on using hashes here.

File details

Details for the file pyinapp-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: pyinapp-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 5.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.3

File hashes

Hashes for pyinapp-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 902a0c2529005f877ea57f1b9b6eab503003e5f42c3e1f6ba73604d41acc2dff
MD5 850afd043fc961c02babee008d189d03
BLAKE2b-256 01026e86f951a45ae3cc52fa6620bc1d3818826a583411ac6a209b6edf578686

See more details on using hashes here.

Supported by

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