bpinkert / python-schwab

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

python-schwab

Python library to retrieve information from a Schwab bank account.

Command Line Usage

$python schwab getbalance -u YOUR_USER_ID -p YOUR_PASSWORD
Balance is {{amount}}.

Installation

./setup.py build
./setup.py install

Get Balance (Python Script)

import schwab
schwab_browser = schwab.SchwabBrowser(your_username, your_pw)
print schwab_browser.get_balance()

Test Setup

Copy test.dummy.sh and replace the default values with your user id and password:

cp test.dummy.sh test.sh
chmod +x test.sh
vim test.sh

You can now run tests using ./test.sh.

About

License:MIT License


Languages

Language:Python 97.1%Language:Shell 2.9%