Python Client Library
The Recurly Python Client library is an open source library to interact with Recurly’s subscription management from your Python website. The library interacts with Recurly’s REST API.
View the GitHub project site or download as a zip file.
Configuration
First, import the recurly library and setup your authentication credentials:
import recurly
recurly.SUBDOMAIN = 'your-subdomain'
recurly.API_KEY = 'abcdef01234567890abcdef01234567890'
recurly.js.PRIVATE_KEY = '01234567890abcdef01234567890abcdef'
# Set a default currency for your API requests
recurly.DEFAULT_CURRENCY = 'USD'
Recurly API Google Group
Looking for help? Join our Recurly API Google Group to ask questions and share ideas with the Recurly API community.
