/usr/lib/python3/dist-packages/ofxparse-0.14.egg-info/PKG-INFO is in python3-ofxparse 0.14-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | Metadata-Version: 1.1
Name: ofxparse
Version: 0.14
Summary: Tools for working with the OFX (Open Financial Exchange) file format
Home-page: http://sites.google.com/site/ofxparse
Author: Jerry Seutter
Author-email: jseutter.ofxparse@gmail.com
License: MIT License
Description: ofxparse
========
ofxparse is a parser for Open Financial Exchange (.ofx) format files. OFX
files are available from almost any online banking site, so they work well
if you want to pull together your finances from multiple sources. Online
trading accounts also provide account statements in OFX files.
There are three different types of OFX files, called BankAccount,
CreditAccount and InvestmentAccount files. This library has been tested with
real-world samples of all three types. If you find a file that does not work
with this library, please consider contributing the file so ofxparse can be
improved. See the Help! section below for directions on how to do this.
Example Usage
=============
Here's a sample program::
from ofxparse import OfxParser
ofx = OfxParser.parse(file('file.ofx'))
ofx.accounts # An account with information
ofx.account.number # The account number
ofx.account.routing_number # The transit id (sometimes called branch number)
ofx.account.statement # Account information for a period of time
ofx.account.statement.start_date # The start date of the transactions
ofx.account.statement.end_date # The end date of the transactions
ofx.account.statement.transactions # A list of account activities
ofx.account.statement.balance # The money in the account as of the statement date
ofx.account.statement.available_balance # The money available from the account as of the statement date
Help!
=====
Sample .ofx files are very useful. If you want to help us out, please edit
all identifying information from the file and then email it to jseutter dot
ofxparse at gmail dot com.
Development
===========
Prerequisites::
(Ubuntu) sudo apt-get install python-beautifulsoup python-nose python-coverage-test-runner
(pip) pip install BeautifulSoup nose coverage
Tests::
Simply running the "nose" command should run the tests. If you don't have nose
installed, the following might also work:
python -m unittest tests.test_parse
Test Coverage Report::
coverage run -m unittest tests.test_parse
coverage html
firefox htmlcov/index.html
Homepage
========
http://sites.google.com/site/ofxparse
License
=======
ofxparse is released under an MIT license. See the LICENSE file for the actual
license text. The basic idea is that if you can use Python to do what you are
doing, you can also use this library.
Keywords: ofx,Open Financial Exchange,file formats
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
|