Skip to main content

A Django plugin to add Memberpress REST API and Webhook integrations.

Project description

Django Plugin For memberpress REST API Client

pypi django-memberpress-client memberpress hack.d Lawrence McDaniel

memberpress

A lightweight, performant Django plugin that implements REST api and Webhook integrations for the Wordpress memberpress Pro plugin.

Installation

pip install django-memberpress-client

Set the Django settings using tutor.

from django.conf import settings

settings.MEMBERPRESS_API_KEY = 'set-me-please'
settings.MEMBERPRESS_API_BASE_URL = 'https://set-me-please.com/'

You'll find the memberpress API Key in the Wordpress admin site. memberpress API Key

Usage

REST API

# from a Python module inside your existing Django project.
from memberpress_client.member import Member

member = Member(username="jsmith")

if member.should_raise_paywall:
    # not a member, free trial has expired, subscription expired,
    # subscription renewal payment transaction declined, etc.
    your_custom_paywall_code()

# and, there is lots more detailed information about the member,
# their subscription status, their recent transactions history,
# and so on...
print(member.is_active_subscription)
print(member.is_trial_subscription)
print(member.latest_transaction.amount)
print(member.recent_subscriptions[0].created_at)
print(member.active_memberships[0].pricing_title)

Webhooks

This plugin listens for events from memberpress' webhooks framework, a Pro 'developer tools' premium option of memberpress. Add a url of the form https://yourdomain.com/mp/api/v1/webhook to the Developer "Webhooks" page. memberpress webhooks

urls:

Django admin console

Developers

Use these class objects rather than working directly with the memberpress json dicts returned by the api. These class objects include structural and type-checking validations, plus they handle dict value data type conversations for you.

class hierarchy

class Memberpress:

    class MemberpressEvent(Memberpress):

    class MemberpressAPIClient(Memberpress):
        class Member(MemberpressAPIClient):
        class Membership(MemberpressAPIClient):
        class Subscriber(MemberpressAPIClient):
        class Transaction(MemberpressAPIClient):

constants

Use these built-in constants rather than working directly with memberpress' dict key string values:

  • MemberpressEvents: discrete list of memberpress event types. The str value exactly matches the event dict key "event".
  • MemberpressEventTypes: discrete list of memberpress event_types
from memberpress_client.constants import MemberpressEvents

print(MemberpressEvents.AFTER_CC_EXPIRES_REMINDER)
after-cc-expires-reminder

print(MemberpressEvents.AFTER_MEMBER_SIGNUP_REMINDER)
after-member-signup-reminder

print(MemberpressEvents.LOGIN)
login

print(MemberpressEvents.MEMBER_ACCOUNT_UPDATED)
member-account-updated

print(MemberpressEvents.SUBSCRIPTION_EXPIRED)
subscription-expired
# ...
# ectetera, etcetera, etcetera ...
# ...
print(MemberpressEvents.TRANSACTION_COMPLETED)
transaction-completed

developer getting started guide

Keep in mind that this code package is intended to install as an add-on to your existing Django project. Therefore, the 'production' settings and requirements intentionally ommit all Django and Django support packages other than those that are unique to this repo. The 'local' settings and requirements compensate for this by including all of the settings and requirements that you'd typically find in 'common' and/or 'production'.

You should be able to follow the normal workflow for setting up a Django project for local development. This substantially consists of the following:

  • install all service-level dependencies on your local dev machine. This includes MySQL and Redis.
  • clone this repo
  • create and activate a Python virtual environment
  • run make quickstart

Other common dev chores are automated in the Makefile, noting however that some syntax is specific to macOS environments (my sincerest apologies), plus, it assumes that you've installed mysql and redis using homebrew.

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

django-memberpress-client-0.0.5.tar.gz (34.1 kB view hashes)

Uploaded Source

Built Distribution

django_memberpress_client-0.0.5-py2.py3-none-any.whl (43.4 kB view hashes)

Uploaded Python 2 Python 3

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