All Projects → nm523 → pyamex

nm523 / pyamex

Licence: MIT License
Python library for accessing American Express account data

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to pyamex

card-validator
Card validation helpers for payment forms.
Stars: ✭ 22 (+46.67%)
Mutual labels:  credit-card, amex
PaymentForm
A form that takes credit card and address information. Uses a ported version of jessie pollack's card component.
Stars: ✭ 40 (+166.67%)
Mutual labels:  credit-card
billing-form
Demo page for user-friendly billing form features
Stars: ✭ 23 (+53.33%)
Mutual labels:  credit-card
react-payment-request-api
High order component to drive Payment Request widget
Stars: ✭ 58 (+286.67%)
Mutual labels:  credit-card
creditcardnumber
Java library that can provide details of a bank issued credit card number
Stars: ✭ 43 (+186.67%)
Mutual labels:  credit-card
BlockEditText
Block EditText is a library provide an input view present in multiple block style that common use in TAC or credit card field.
Stars: ✭ 113 (+653.33%)
Mutual labels:  credit-card
PaymentCardView
Custom Credit/Debit card view
Stars: ✭ 62 (+313.33%)
Mutual labels:  credit-card
Credit
An example project that predicts risk of credit card default using a Logistic Regression classifier and a 30,000 sample dataset.
Stars: ✭ 18 (+20%)
Mutual labels:  credit-card
amex-api-java-client-core
Library for authenticating with APIs published to the Amex for Developers portal.
Stars: ✭ 21 (+40%)
Mutual labels:  amex
credit-card-view
A fully customizable Android view that can display credit card's informations
Stars: ✭ 25 (+66.67%)
Mutual labels:  credit-card
masked-input
Mask input with simple API and rich customization
Stars: ✭ 44 (+193.33%)
Mutual labels:  credit-card
python-emv
EMV Smartcard Protocol Tool and Library
Stars: ✭ 72 (+380%)
Mutual labels:  credit-card
frames-android
Checkout API Client, Payment Form UI and Utilities
Stars: ✭ 26 (+73.33%)
Mutual labels:  credit-card
checkdigit
🔒 An easy-to-use check digit library for data validation
Stars: ✭ 19 (+26.67%)
Mutual labels:  credit-card
svelte-stripe-js
Everything you need to add Stripe Elements to your Svelte project
Stars: ✭ 139 (+826.67%)
Mutual labels:  credit-card
tbc-credit-card-payment-gateway-php-lib
PHP library for the TBC credit card payment gateway API.
Stars: ✭ 80 (+433.33%)
Mutual labels:  credit-card
com.iatspayments.civicrm
CiviCRM Extension supporting iATS Payments services
Stars: ✭ 13 (-13.33%)
Mutual labels:  credit-card
ember-credit-card
"make your credit card form dreamy in one line of code"
Stars: ✭ 89 (+493.33%)
Mutual labels:  credit-card
credit card validator
A Dart package that validates credit card numbers, expiration dates, and security codes (CVV/CVC) based on the type of credit card
Stars: ✭ 19 (+26.67%)
Mutual labels:  credit-card
credit-card-example
An example of credit card made by using Rivets Js
Stars: ✭ 23 (+53.33%)
Mutual labels:  credit-card

pyamex : American Express account data from Python

Maintenance

Warning

It looks like Amex have updated their APIs and so this library (and the original ruby libraries) will no longer work. At present I'm not maintaining this library so unfortunately I won't be providing any updates here.

Background

Ported from the the ruby version by timrogers, and improvements by DanToml:

Requires Python 3.4 and above.

Installation

You can install using pip:

pip install pyamex

or manually:

python setup.py install

Usage

from pyamex import AmexClient
client = AmexClient(username='bill', password='gates', locale='en_GB')

accounts = client.accounts()

# Print all account balances
for account in accounts:
    print(account.card_product, account.total_balance)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].