From 2052b74bffed8b6ee7e458f8dc50dc504fcf7f46 Mon Sep 17 00:00:00 2001 From: Andrej Shadura Date: Mon, 30 Apr 2018 11:06:34 +0200 Subject: Import Upstream version 0.3.1 --- PKG-INFO | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 PKG-INFO (limited to 'PKG-INFO') diff --git a/PKG-INFO b/PKG-INFO new file mode 100644 index 0000000..e9bca55 --- /dev/null +++ b/PKG-INFO @@ -0,0 +1,49 @@ +Metadata-Version: 1.0 +Name: ofxhome +Version: 0.3.1 +Summary: ofxhome.com financial institution lookup REST client +Home-page: https://github.com/captin411/ofxhome +Author: David Bartle +Author-email: captindave@gmail.com +License: MIT License +Description: ofxhome + ========= + + REST client for the web service provided by ofxhome.com + + ofxhome.com provides a way to discover the Open Financial Exchange (OFX) URL's and financial institution IDs for banks and other financial institutions. + + ofxhome is a sort of "DNS" for financial institution OFX URLs and IDs. + + This client by itself is not all that useful unless you are coupling it with software that needs this lookup capability. + + other modules + ============= + + ofxclient - a python API that downloads transactions from banks + + example + ======= + + from ofxhome import OFXHome + + s = OFXHome.search("USAA") + " 's' contains a list that has entries like so: + " { name: 'USAA Federal Savings Bank', id: '483' } + " { name: 'USAA Investment Mgmt Co', id: '665' } + for item in s: + print item['id'] _ item['name'] + bank = OFXHome.lookup(item.id) + print bank.name _ bank.fid _ bank.url _ bank.brokerid # OR + print bank['name'] _ bank['fid'] _ bank['url'] _ bank['brokerid'] + +Keywords: ofx,Open Financial Exchange,bank search,ofxhome,ofxhome.com +Platform: UNKNOWN +Classifier: Development Status :: 4 - Beta +Classifier: Intended Audience :: Developers +Classifier: Natural Language :: English +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Topic :: Utilities +Classifier: License :: OSI Approved :: MIT License -- cgit v1.2.3