Metadata-Version: 1.1
Name: python-schwab
Version: 0.1.2
Summary: Obtain transaction data from Schwab accounts.
Home-page: http://github.com/joetric/python-schwab
Author: Joseph Tricarico
Author-email: jtricarico@gmail.com
License: MIT
Description: 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`.
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Office/Business :: Financial :: Accounting
Classifier: Programming Language :: Python :: 2.7
