Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
apikey = ""
apisecret = ""
token = ""
baseURL = ""
nonce = ""
timestamp = ""
tokenURL = "" # optional parameter for oken based transaction

# Resource
import payeezy.http_authorization
from payeezy.api_methods import Payeezy

transactions = Payeezy()

import sys as _sys
from inspect import isclass as _isclass, ismodule as _ismodule

_dogetattr = object.__getattribute__
_ALLOWED_ATTRIBUTES = (
'apikey',
'apisecret',
'token',
'baseURL',
'nonce',
'timestamp',
'tokenURL' # optional parameter for oken based transaction
)
_original_module = _sys.modules[__name__]
Loading