Skip to main content

Satchmo Beanstream Payment Plugin

Project description

"""
SatchmoBeanstream module currently only support Purchase transactions.

We're not using LiveSettings for storing Credentials, because Livesettings should be disabled in production anyways, so store the Beanstream credentials in your SETTINGS.py file instead, with the following syntax:

BEANSTREAM_CREDENTIALS = {
'username' : 'MY_USER',
'password' : 'MY_PASS',
'merchant_id' : 'MY_MERCHANT_ID'
}

How to install:
pip install SatchmoBeanstream

Add it to installed apps in your settings file.:

"""
INSTALLED_APPS = (
#....
'payment',
'payment.modules.beanstream',
#....
)
"""

Add the settings to livesettings:
** Note, you can use the livesettings DB storage if you wish, but I recommend using 'DB': False and setting the livesettings manually in the settings.py file instead.
** NOTE2, important! 'LIVE' option does nothing right now (in the satchmobeanstream module anyways...), so if you specify production credentials in BEANSTREAM_CREDENTIALS, it will start charging real money, if you use test credentials, it will do test transactions.
"""

LIVESETTINGS_OPTIONS = {
1 : { # Your site ID
#....
'SETTINGS' : {
'PAYMENT_BEANSTREAM' : {
'CREDITCHOICES' : '[\"Visa\", \"Mastercard\"]',
'LIVE': 'True',
'ORDER_EMAIL_OWNER': 'True',
'ORDER_EMAIL_EXTRA': 'myemail@derp.com',
},
},
},
}

"""
Testing:

Create a test_settings.py and specify your test credentials from beanstream in there, then:

./manage.py test payment.modules.beanstream --settings=test_settings --nologcapture -s

Note: You may get an error from suds that look like this:

File "<some path>/site-packages/suds/sax/document.py", line 48, in str
s.append(self.root().str())
AttributeError: 'NoneType' object has no attribute 'str'
Logged from file core.py, line 73

Don't worry about it, i'm still not sure why, but the SOAP transaction DOES happen if the test passes.
"""

Project details


Release history Release notifications | RSS feed

This version

0.2

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

SatchmoBeanstream-0.2.tar.gz (6.9 kB view details)

Uploaded Source

File details

Details for the file SatchmoBeanstream-0.2.tar.gz.

File metadata

File hashes

Hashes for SatchmoBeanstream-0.2.tar.gz
Algorithm Hash digest
SHA256 82b5750509d10bb3c2f907f91fb385c0e5ebb8272f87275ca8c729e651abf813
MD5 8b8a10168d8beda028147ca54bfcebf6
BLAKE2b-256 95d34faad46efc01a0ebad8402d6f1d438bbff8446998e61ab2fca708cc8ad37

See more details on using hashes here.

Supported by

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