Skip to main content

Python bindings for Archetype. Archetype makes API monetization and usage based billing for APIs easy.

Project description

Archetype Python Library

The Archetype Python library provides convenient access to the Archetype API from applications written in Python. It includes a pre-defined set of classes for API resources that initialize themselves dynamically from API responses which makes it compatible with a wide range of versions of the Archetype API.

The SDK has everything you need to build and manage API subscriptions, usage-based billing, tracking metered usage, issue volume based discounts, graduated pricing models and more.

About Archetype

Archetype is the revenue infrastruce that make API monetization quick and painless. It works by integrating powerful, reliable purchase server with cross-platform support. Our open-source framework provides a backend and a wrapper around payment processors like Stripe to save engineers months from having to build custom billing infrastructure for their APIs.

Whether you are building a new API or already have millions of customers, you can use Archetype to:

Sign up to get started.

Documentation

If looking to use our APIs directly, the API reference is here.

With Archetype, you can keep track of all your app transactions in one place — whether your customers are charged through iOS, Android, or the web. As the single source of truth for your API business, we make sure your customers' subscription status is always up to date.

Installation

Explore the docs and view the quickstart guide

You don't need this source code unless you want to modify the package. If you just want to use the package, just run:

pip install --upgrade archetypesdk

Requirements

Python 3.6+ (PyPy supported)

Usage

The library needs to be configured with your account's app_id and secret key which is available in your Archetype Dashboard. Set archetype.app_id and archetype.secret_key to their values:

import archetypesdk as archetype

archetype.app_id = "ARCHETYPE_APP_ID"
archetype.secret_key = "ARCHETYPE_SECRET_KEY"

CUSTOM_CUSTOMER_UID = "XXX"

# list customers
customers = archetype.Customer.All()

# print the first customer's email
print(customers[0]["email"])

# retrieve specific Customer
customer = archetype.Customer.Retrieve(CUSTOM_CUSTOMER_UID)

# print that customer's email
print(customer["email"])

## Track a Metered Usage

archetype.BillableMetric.LogUsage(
    custom_uid=CUSTOM_CUSTOMER_UID, 
    billable_metric_id=BILLABLE_METRIC_ID, 
    used_amount=AMOUNT,
)


# Authorize a Flask Request with Archetype Middelware

from flask import Flask

app = Flask(__name__)

@app.route("/a", methods=["GET", "POST"])
@archetype.Auth
def auth_test_url():
    return jsonify({"response": "success!"}), 200

# Authorize a Django Request with Archetype Middelware

@archetype.Auth
def sensitive_fbv(request, *args, **kwargs):
    return HttpResponse()

# Authorize a FastAPI Request with Archetype Middelware
from archetypesdk.fastapi import authorized

@app.get("/authorize")
async def hello_world(is_authorized = Depends(authorized)):
    return {"response": "Success"}

You can leverage the SDK to create and configure billable metrics, products, token management, authorization and more. Check out the docs for more examples and use cases.

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

archetypesdk-1.0.16.tar.gz (23.5 kB view details)

Uploaded Source

Built Distribution

archetypesdk-1.0.16-py3-none-any.whl (26.7 kB view details)

Uploaded Python 3

File details

Details for the file archetypesdk-1.0.16.tar.gz.

File metadata

  • Download URL: archetypesdk-1.0.16.tar.gz
  • Upload date:
  • Size: 23.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.8

File hashes

Hashes for archetypesdk-1.0.16.tar.gz
Algorithm Hash digest
SHA256 dae89faaeff6fe0335b54ebb56add3d6ac52264bf51a5be3dc6da658cdfc0cc4
MD5 c02f577c814a5d83d2716e5df92ea377
BLAKE2b-256 ae0774fb2f1cbe4e848aadcbb9e02c02a4d089ef621fcefca032b5f9473b7b7d

See more details on using hashes here.

File details

Details for the file archetypesdk-1.0.16-py3-none-any.whl.

File metadata

File hashes

Hashes for archetypesdk-1.0.16-py3-none-any.whl
Algorithm Hash digest
SHA256 cd90086d84636aef5b0caef5ef577dc371c701c4da19a6d8b016c947e7a54318
MD5 15039b9f64e84997d033353f2f3b2669
BLAKE2b-256 ba48cef4ac244129e985ec0efaf11b9a1b2684fecbd0e3033f713af3a9b06dec

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