forked from fatzebra/fatzebra-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
104 lines (78 loc) · 3.99 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
========================
Fat Zebra Python Library
========================
This library provides *basic* functionality for the Fat Zebra Payment Gateway.
Currently the only features supported are:
* Creating Purchases
* Tokenizing Cards
* Purchasing with a tokenized card
* Creating Refunds
Further support for additional functionality will be added as time permits, however if you require this funcitonality and are not able to
add it yourself please contact [email protected] and request the changes.
Usage
=====
Purchases
---------
import fatzebra
gw = fatzebra.gateway.Gateway("your username", "your token", True) # The final param indicates whether or not to use the sandbox
try:
result = gw.purchase(100, "Jim Smith", "5123456789012346", "05/2014", "123", "122.99.99.111")
if result.successful:
print "Purchase approved - ID: " + result.id
else:
print "Purchase declined. Message: " + result.message
except fatzebra.errors.GatewayError, e:
print "Gateway error: " + str(e.errors) # <-- e.errors is an array.
except fatzebra.errors.AuthenticationError:
print "Authentication error - please check your username and token"
Tokenization
------------
import fatzebra
gw = fatzebra.gateway.Gateway("your username", "your token", True) # The final param indicates whether or not to use the sandbox
try:
card = gw.tokenize("Jim Smith", "5123456789012346", "05/2014", "123")
print "Card Tokenized - token: " + card.token
except fatzebra.errors.GatewayError, e:
print "Gateway error: " + str(e.errors) # <-- e.errors is an array.
except fatzebra.errors.AuthenticationError:
print "Authentication error - please check your username and token"
Purchase with Token
-------------------
import fatzebra
gw = fatzebra.gateway.Gateway("your username", "your token", True) # The final param indicates whether or not to use the sandbox
try:
token = "abc12345"
result = gw.purchase(100, token, "122.99.99.111")
if result.successful:
print "Purchase approved - ID: " + result.id
else:
print "Purchase declined. Message: " + result.message
except fatzebra.errors.GatewayError, e:
print "Gateway error: " + str(e.errors) # <-- e.errors is an array.
except fatzebra.errors.AuthenticationError:
print "Authentication error - please check your username and token"
Refund
------
import fatzebra
gw = fatzebra.gateway.Gateway("your username", "your token", True) # The final param indicates whether or not to use the sandbox
try:
original_transaction = "013-P-ABJU879H"
result = gw.refund(original_transaction, 100, "my refund reference")
if result.successful:
print "Refund approved - ID: " + result.id
else:
print "Refund declined. Message: " + result.message
except fatzebra.errors.GatewayError, e:
print "Gateway error: " + str(e.errors) # <-- e.errors is an array.
except fatzebra.errors.AuthenticationError:
print "Authentication error - please check your username and token"
Notes
=====
The gateway class utilizes 3 error classes:
* `fatzebra.errors.GatewayError` - this represents an unsuccessful response from the gateway (invalid card number, expiry etc). Check the `errors` attribute for messages (array)
* `fatzebra.errors.GatewayUnknownError` - this represents an unknown error. Check the `code` and `response` attributes for details
* `fatzebra.errors.AuthenticationError` - this indicates your username and token are incorrect. Confirm that you have the right details and you are using the right gateway. Sandbox credentials will begin with **TEST**
Credits
=======
This library was developed by Matthew Savage (Fat Zebra) with the assistance of Simon Meers (Digital Eskimo). It there are any questions or problems with this library
please contact Fat Zebra ([email protected]) or open an `issue <https://github.com/fatzebra/fatzebra-python/issues>`_.