summaryrefslogtreecommitdiff
path: root/ofxhome.egg-info/PKG-INFO
blob: 3651b8e35343d8fba49a37e8139770c6b9141f37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Metadata-Version: 1.1
Name: ofxhome
Version: 0.3.3
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
        =======
        
        ```python
        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