Skip to main content

Chargehound Python Bindings

Project description

Build Status PyPI version

Installation

pip install chargehound

Usage

Import chargehound and set your API key.

import chargehound
chargehound.api_key = '{ YOUR_API_KEY }'

Requests

Every resource is accessed via the Chargehound module.

dispute = chargehound.Disputes.submit('dp_123', fields={'customer_name': 'Susie'})

Response

Responses from the API are automatically parsed from JSON and returned as Python objects.

Responses also include the HTTP status code on the response object as the status field.

dispute = chargehound.Disputes.retrieve('dp_123')

print dispute.state
# 'needs_response'
print dispute.response.status
# 200

Documentation

Disputes

Errors

Development

To build and install from the latest source:

$ git clone git@github.com:chargehound/chargehound-python.git
$ pip install -r dev_requirements.txt

Run tests:

$ python setup.py test

Deployment

To deploy a new version of the SDK, you will need Pandoc (http://pandoc.org/) installed. Pandoc will convert the README.md into the .rst format required for the Python repository. Instructions are here: http://pandoc.org/installing.html.

Next, install PyPandoc, the Python wrapper for Pandoc, following these instructions.

The last pre-requisite is Twine, a utility for interacting with PyPi.

Once Pandoc, PyPandoc and Twine are installed, you can build and deploy a new module to PyPi with the following steps:

  1. Update the CHANGELOG to describe what feature have been added.

  2. Bump the version number in chargehound/version.py

  3. Rebuild and deploy the package with: python setup.py sdist

  4. Upload the distributable to PyPi using: twine upload dist/{name_of_generated_package}

  5. Confirm the new package version is available at https://pypi.python.org/pypi/chargehound

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

chargehound-2.0.0.tar.gz (5.8 kB view hashes)

Uploaded Source

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