Skip to content
/ pyamex Public
forked from nm523/pyamex

Python library for accessing American Express account data

License

Notifications You must be signed in to change notification settings

CoreTex/pyamex

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)

About

Python library for accessing American Express account data

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%