ofxhome


Nameofxhome JSON
Version 0.3.3 PyPI version JSON
download
home_pagehttps://github.com/captin411/ofxhome
Summaryofxhome.com financial institution lookup REST client
upload_time2016-02-10 21:01:48
maintainerNone
docs_urlNone
authorDavid Bartle
requires_pythonNone
licenseMIT License
keywords ofx open financial exchange bank search ofxhome ofxhome.com
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            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']
```
            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/captin411/ofxhome",
    "name": "ofxhome",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "ofx,Open Financial Exchange,bank search,ofxhome,ofxhome.com",
    "author": "David Bartle",
    "author_email": "captindave@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/33/64/93f1e81dca10676dfa571e1e154edbd59b5347d52a1002580eb7adf5b9fa/ofxhome-0.3.3.tar.gz",
    "platform": "UNKNOWN",
    "description": "ofxhome\n=========\n\nREST client for the web service provided by ofxhome.com\n\nofxhome.com provides a way to discover the Open Financial Exchange (OFX) URL's and financial institution IDs for banks and other financial institutions.\n\nofxhome is a sort of \"DNS\" for financial institution OFX URLs and IDs.\n\nThis client by itself is not all that useful unless you are coupling it with software that needs this lookup capability.\n\nother modules\n=============\n\nofxclient - a python API that downloads transactions from banks\n\nexample\n=======\n\n```python\nfrom ofxhome import OFXHome\n\ns = OFXHome.search(\"USAA\")\n\" 's' contains a list that has entries like so:\n\" { name: 'USAA Federal Savings Bank', id: '483' }\n\" { name: 'USAA Investment Mgmt Co', id: '665' }\nfor item in s:\n    print item['id'] _ item['name']\n    bank = OFXHome.lookup(item.id)\n    print bank.name _ bank.fid _ bank.url _ bank.brokerid # OR\n    print bank['name'] _ bank['fid'] _ bank['url'] _ bank['brokerid']\n```",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "ofxhome.com financial institution lookup REST client",
    "version": "0.3.3",
    "split_keywords": [
        "ofx",
        "open financial exchange",
        "bank search",
        "ofxhome",
        "ofxhome.com"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "d83594b7f1871509a8eba191fda0b35a",
                "sha256": "2e37483a5e16a588781e54fadd158f288d8e4be400f08480c793c0296b9dc2a0"
            },
            "downloads": -1,
            "filename": "ofxhome-0.3.3-py2.7.egg",
            "has_sig": false,
            "md5_digest": "d83594b7f1871509a8eba191fda0b35a",
            "packagetype": "bdist_egg",
            "python_version": "2.7",
            "requires_python": null,
            "size": 8804,
            "upload_time": "2016-02-10T21:02:00",
            "upload_time_iso_8601": "2016-02-10T21:02:00.143140Z",
            "url": "https://files.pythonhosted.org/packages/23/e0/0853191a6166c29e149e2a942c85c8ef2cc69fe3b6c2514e9754b3859e87/ofxhome-0.3.3-py2.7.egg",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "997405aad6e04d1364133bc9f848779d",
                "sha256": "8510451fd228c30627c3d18c2e530df35944afc2a4c97c888df6262c3276fee6"
            },
            "downloads": -1,
            "filename": "ofxhome-0.3.3.tar.gz",
            "has_sig": false,
            "md5_digest": "997405aad6e04d1364133bc9f848779d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 3850,
            "upload_time": "2016-02-10T21:01:48",
            "upload_time_iso_8601": "2016-02-10T21:01:48.606443Z",
            "url": "https://files.pythonhosted.org/packages/33/64/93f1e81dca10676dfa571e1e154edbd59b5347d52a1002580eb7adf5b9fa/ofxhome-0.3.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2016-02-10 21:01:48",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "captin411",
    "github_project": "ofxhome",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "lcname": "ofxhome"
}
        
Elapsed time: 0.02260s