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
|
name: ofx
version: 0.4.0.2
synopsis: Parser for OFX data
description:
A parser for Open Financial Exchange (OFX) financial data. This
handles OFX version 1.03, which is documented at http://www.ofx.net
This also handles QFX, which is OFX plus some minor additions made
by Intuit, the publishers of Quicken.
.
The parser will place all the data into a tree, which you can query
for whatever data you may need, although you will need to be
familiar with the OFX spec to do this. There is also a Transaction
type which you can easily parse from the tree; this will contain
most, if not all, of the data you will be interested in if your OFX
file is from a bank or credit card account.
.
All the OFX and QFX files I have seen use the format from the 1.0
series of OFX, which is primarily SGML based. OFX version 2 is XML
based. If this parser works on those files, consider it a happy
accident.
.
The OFX spec is available at <http://www.ofx.net>
homepage: http://www.github.com/massysett/ofx
license: BSD3
license-file: LICENSE
author: Omari Norman
maintainer: omari@smileystation.com
category: Finance
build-type: Simple
cabal-version: >=1.8
extra-source-files:
minimum-versions.txt, current-versions.txt, sunlight-test.hs
tested-with: GHC==7.4.1, GHC==7.6.3
source-repository head
type: git
location: git://github.com/massysett/ofx.git
library
ghc-options: -Wall
exposed-modules:
Data.OFX
build-depends:
base >=4.5.0.0 && < 5
, parsec >=3.1.0
, pretty >=1.1.0.0
, time >=1.4
|