Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/denvaar/ofxclient-python
Open Financial Data Exchange (OFX) client API and command-line interface
https://github.com/denvaar/ofxclient-python
Last synced: about 4 hours ago
JSON representation
Open Financial Data Exchange (OFX) client API and command-line interface
- Host: GitHub
- URL: https://github.com/denvaar/ofxclient-python
- Owner: denvaar
- Created: 2017-01-09T03:33:41.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-10-23T00:38:05.000Z (about 5 years ago)
- Last Synced: 2024-10-31T17:47:16.839Z (7 days ago)
- Language: Python
- Size: 15.6 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ofxclient-python
Open Financial Data Exchange (OFX) client API and command-line interface# Description
Open Financial Exchange (OFX) is the open standard for interacting with financial data from financial institutions. It's developed and maintained by a consortium of financial application developers, aggregation services, and financial services providers. More information can be found at [ofx.org](http://www.ofx.org/index.html).This is a Python API, and also a command-line interface for interacting with OFX (version 2.0+) servers. Check out the docs for more information:
- [API](docs/api.md)
- [Command-line interface tool](docs/ofxclient-cli.md)# Requisites
Python 3 with version >= 3.4
# Installation with pip
`pip install ofxclient-python==0.0.5`
# Installation with pyinstaller
`pip install pyinstaller`
Then from root repo go into ofxclient directory to create executable
`cd ofxclient`
`pyinstaller ofxclient-cli.py`This will create a dist directory that will contains everything needed to run the program.
To use the program run it from this directory
`cd dist/ofxclient-cli`
`ofxclient-cli`## Development
Just grab a copy the repository and pip install the requirements found in `requirements.txt`.# Usage
*TODO examples*
# Contributing
Please feel free.