summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README2
1 files changed, 2 insertions, 0 deletions
diff --git a/README b/README
index 417956d..8305a2b 100644
--- a/README
+++ b/README
@@ -17,6 +17,7 @@ ofxclient - a python API that downloads transactions from banks
example
=======
+```python
from ofxhome import OFXHome
s = OFXHome.search("USAA")
@@ -28,3 +29,4 @@ for item in s:
bank = OFXHome.lookup(item.id)
print bank.name _ bank.fid _ bank.url _ bank.brokerid # OR
print bank['name'] _ bank['fid'] _ bank['url'] _ bank['brokerid']
+```