{ "info": { "author": "Jerry Seutter", "author_email": "jseutter.ofxparse@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Utilities" ], "description": "ofxparse\n========\n\nofxparse is a parser for Open Financial Exchange (.ofx) format files. OFX\nfiles are available from almost any online banking site, so they work well\nif you want to pull together your finances from multiple sources. Online\ntrading accounts also provide account statements in OFX files.\n\nThere are three different types of OFX files, called BankAccount,\nCreditAccount and InvestmentAccount files. This library has been tested with\nreal-world samples of all three types. If you find a file that does not work\nwith this library, please consider contributing the file so ofxparse can be\nimproved. See the Help! section below for directions on how to do this.\n\nExample Usage\n=============\n\nHere's a sample program\n\n.. code:: python\n\n from ofxparse import OfxParser\n with codecs.open('file.ofx') as fileobj:\n ofx = OfxParser.parse(fileobj)\n \n # The OFX object\n \n ofx.account # An Account object\n\n # AccountType\n # (Unknown, Bank, CreditCard, Investment)\n\n # Account\n \n account = ofx.occount \n account.account_id # The account number\n account.number # The account number (deprecated -- returns account_id)\n account.routing_number # The bank routing number\n account.branch_id # Transit ID / branch number\n account.type # An AccountType object\n account.statement # A Statement object\n account.institution # An Institution object\n\n # InvestmentAccount(Account)\n\n account.brokerid # Investment broker ID\n account.statement # An InvestmentStatement object\n\n # Institution\n \n institution = account.institution\n institution.organization\n institution.fid\n \n # Statement\n \n statement = account.statement\n statement.start_date # The start date of the transactions\n statement.end_date # The end date of the transactions\n statement.balance # The money in the account as of the statement date\n statement.available_balance # The money available from the account as of the statement date\n statement.transactions # A list of Transaction objects\n\n # InvestmentStatement\n\n statement = account.statement \n statement.positions # A list of Position objects\n statement.transactions # A list of InvestmentTransaction objects\n\n # Transaction\n \n for transaction in statement.transactions:\n transaction.payee\n transaction.type\n transaction.date\n transaction.amount\n transaction.id\n transaction.memo\n transaction.sic\n transaction.mcc\n transaction.checknum\n\n # InvestmentTransaction\n \n for transaction in statement.transactions:\n transaction.type\n transaction.tradeDate\n transaction.settleDate\n transaction.memo\n transaction.security # A Security object\n transaction.income_type\n transaction.units\n transaction.unit_price\n transaction.comission\n transaction.fees\n transaction.total\n transaction.tferaction\n\n # Positions\n \n for position in statement.positions:\n position.security # A Security object\n position.units\n position.unit_price\n position.market_value\n\n # Security\n \n security = transaction.security\n # or\n security = position.security\n security.uniqueid\n security.name\n security.ticker\n security.memo\n \n\nHelp!\n=====\n\nSample ``.ofx`` and ``.qfx`` files are very useful. If you want to help us out,\nplease edit all identifying information from the file and then email it to\njseutter dot ofxparse at gmail dot com.\n\nDevelopment\n===========\n\nPrerequisites::\n # Ubuntu\n sudo apt-get install python-beautifulsoup python-nose python-coverage-test-runner\n # Python 3 (pip)\n pip install BeautifulSoup4 six lxml nose coverage\n # Python 2 (pip)\n pip install BeautifulSoup six nose coverage\n\nThe `six` package is required for python 2.X compatibility\n\nTests:\nSimply running the ``nosetests`` command should run the tests.\n\n.. code:: bash\n\n nosetests\n\nIf you don't have nose installed, the following might also work:\n\n.. code:: bash\n\n python -m unittest tests.test_parse\n\nTest Coverage Report:\n\n.. code:: bash\n\n coverage run -m unittest tests.test_parse\n \n # text report\n coverage report\n\n # html report\n coverage html\n firefox htmlcov/index.html\n\n\nHomepage\n========\n| Homepage: https://sites.google.com/site/ofxparse\n| Source: https://github.com/jseutter/ofxparse\n\nLicense\n=======\n\nofxparse is released under an MIT license. See the LICENSE file for the actual\nlicense text. The basic idea is that if you can use Python to do what you are\ndoing, you can also use this library.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://sites.google.com/site/ofxparse", "keywords": "ofx,Open Financial Exchange,file formats", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "ofxparse", "package_url": "https://pypi.org/project/ofxparse/", "platform": "", "project_url": "https://pypi.org/project/ofxparse/", "project_urls": { "Homepage": "http://sites.google.com/site/ofxparse" }, "release_url": "https://pypi.org/project/ofxparse/0.20/", "requires_dist": null, "requires_python": "", "summary": "Tools for working with the OFX (Open Financial Exchange) file format", "version": "0.20" }, "last_serial": 4549490, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "e59cc6536f545de0d344c83eb8d41f10", "sha256": "5c108bf16b9fb7bbffdf528de26bc97c3f033d0aa7fa6d27d392c6491e618822" }, "downloads": -1, "filename": "ofxparse-0.1-py2.4.egg", "has_sig": false, "md5_digest": "e59cc6536f545de0d344c83eb8d41f10", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 5055, "upload_time": "2010-03-10T10:31:40", "url": "https://files.pythonhosted.org/packages/04/ee/23ac992aaefe38bba31794f8ef3f7551435a750a23d0065eec2df7394cb7/ofxparse-0.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "091d223f64834b1fc41a955a5e361b19", "sha256": "2d75c89300e373f905dfaf003dd34175e5b7443ed7dbadc25af8dde8f1223bec" }, "downloads": -1, "filename": "ofxparse-0.1-py2.5.egg", "has_sig": false, "md5_digest": "091d223f64834b1fc41a955a5e361b19", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 4966, "upload_time": "2010-03-10T10:20:47", "url": "https://files.pythonhosted.org/packages/d4/85/bf39201c8fd0b275a7eaf630dfc24dc8d9ad4ae49a971f8ee020727a7f85/ofxparse-0.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "f6981fefaf92d583f6781d9f47e6c9bd", "sha256": "0ff060d78435bbd70a05cb748d440484495116405bbd6ebcd62cb9cbf7db2245" }, "downloads": -1, "filename": "ofxparse-0.1-py2.6.egg", "has_sig": false, "md5_digest": "f6981fefaf92d583f6781d9f47e6c9bd", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 4966, "upload_time": "2010-03-10T11:10:55", "url": "https://files.pythonhosted.org/packages/4d/b2/b6a85ab949431a609146fa854da7e65e43a3c25195805d92d95af5e700c3/ofxparse-0.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "0dfe9903653275bd858ea193e61bdee9", "sha256": "91bb4fd28ee5dfdc2ae911340a0d2cd9ef90025a0062a148e4d047c8b83abfc5" }, "downloads": -1, "filename": "ofxparse-0.1.tar.gz", "has_sig": false, "md5_digest": "0dfe9903653275bd858ea193e61bdee9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2819, "upload_time": "2010-03-10T10:20:45", "url": "https://files.pythonhosted.org/packages/3b/4d/18b7971aec828b86602a752ff2b495654f47c2d4b054a44349336d33d688/ofxparse-0.1.tar.gz" } ], "0.10": [ { "comment_text": "", "digests": { "md5": "7c8aae1961edf3136fc6ca5521f8cfec", "sha256": "47c99d34dca98830809e3e08993eb31ab46d350925d5fb0b03071f47b1258418" }, "downloads": -1, "filename": "ofxparse-0.10-py2.7.egg", "has_sig": false, "md5_digest": "7c8aae1961edf3136fc6ca5521f8cfec", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 55139, "upload_time": "2013-03-02T05:28:28", "url": "https://files.pythonhosted.org/packages/f9/8b/0aa51864391d21c93f94b4e457bc84917494c22b3bad1ea6138c50fa00d5/ofxparse-0.10-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a46afaf6af8b6a04d7ec0ad31e6d3224", "sha256": "0b632eccc903fc07d576733976633e9167da463513698f547c3f35e00b3537c8" }, "downloads": -1, "filename": "ofxparse-0.10.tar.gz", "has_sig": false, "md5_digest": "a46afaf6af8b6a04d7ec0ad31e6d3224", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25608, "upload_time": "2013-03-02T05:33:14", "url": "https://files.pythonhosted.org/packages/a9/1a/75761e6b4099d03cf0368a0f29f6005030a655ce4b5e23a44fa8da6883a6/ofxparse-0.10.tar.gz" } ], "0.11": [ { "comment_text": "", "digests": { "md5": "f1b135403c0eccdeee2f19631d86109c", "sha256": "9b078936704aaed5a3f1685a699e69347966a6fe635b36255cc90a597475d433" }, "downloads": -1, "filename": "ofxparse-0.11-py2.7.egg", "has_sig": false, "md5_digest": "f1b135403c0eccdeee2f19631d86109c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 57508, "upload_time": "2013-03-07T17:32:52", "url": "https://files.pythonhosted.org/packages/55/8e/c99e836df095ec5d3886985f2a7ca3a8dde8a18482c0784b15096da57595/ofxparse-0.11-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "00a609e2f5a6e154444f0e2f2f9a1645", "sha256": "c6349feaa3a498e786e60c3912440bacaf5706e41e0378b0835e550c116328c2" }, "downloads": -1, "filename": "ofxparse-0.11.tar.gz", "has_sig": false, "md5_digest": "00a609e2f5a6e154444f0e2f2f9a1645", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25639, "upload_time": "2013-03-07T17:33:16", "url": "https://files.pythonhosted.org/packages/62/a0/b1ac0d6b6ec2709cf686189f91d62cad7634553df4f6a04f572fd0be98fd/ofxparse-0.11.tar.gz" } ], "0.12": [ { "comment_text": "", "digests": { "md5": "2a0f1b984b737b2e68c5c48a36a5cf00", "sha256": "7e3184dc20cff7363389a377bf1e965ed9d5362c588243b4c7e0279c79924526" }, "downloads": -1, "filename": "ofxparse-0.12-py2.7.egg", "has_sig": false, "md5_digest": "2a0f1b984b737b2e68c5c48a36a5cf00", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 67676, "upload_time": "2013-08-13T07:50:23", "url": "https://files.pythonhosted.org/packages/29/32/678b18e026acada79da0370ae9990b472d199309229d4f818c4d491aae00/ofxparse-0.12-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1a54d3e093b3a434062abe7ea6c65fba", "sha256": "deed21281261bda74749efe6135fd085d4918caf9dd3e45d957366ddca2ac9e4" }, "downloads": -1, "filename": "ofxparse-0.12-py3.3.egg", "has_sig": false, "md5_digest": "1a54d3e093b3a434062abe7ea6c65fba", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 66294, "upload_time": "2013-08-13T07:52:36", "url": "https://files.pythonhosted.org/packages/f5/f6/14eeb0bbf9fd823aaf80a96f9d104a5b9d0b35a4a77cff267d92deb4bfb6/ofxparse-0.12-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "2d00dec8f2ccb2935f5f218553cbf483", "sha256": "37447eac85bb5b26746b845b67817bff76871101c551d88011b6aeb059dae1a6" }, "downloads": -1, "filename": "ofxparse-0.12.tar.gz", "has_sig": false, "md5_digest": "2d00dec8f2ccb2935f5f218553cbf483", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29732, "upload_time": "2013-08-13T07:50:35", "url": "https://files.pythonhosted.org/packages/bb/ea/cb0dfdda51de27bbb331aa12978ed0ce4f5189a4fc21b9cac64971140f25/ofxparse-0.12.tar.gz" } ], "0.13": [ { "comment_text": "", "digests": { "md5": "541b36efc39ec5b55ef89e3f0dbe6b63", "sha256": "647baf3ddd32821498aa6c6c264245ad18a58160289859d816d1f586a168d70e" }, "downloads": -1, "filename": "ofxparse-0.13-py2.7.egg", "has_sig": false, "md5_digest": "541b36efc39ec5b55ef89e3f0dbe6b63", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 65641, "upload_time": "2013-08-29T23:29:10", "url": "https://files.pythonhosted.org/packages/f0/ad/d295d7d58a7c8143d978b67235e726fcba21f9cbb4472801af6fe344e57e/ofxparse-0.13-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "3a6c25c7058afca9d78d4f425209b6d2", "sha256": "480da4684bfe735cc24e59f2470cab3b7576c7f29b635f7c23daa9fb46fb7b70" }, "downloads": -1, "filename": "ofxparse-0.13-py3.3.egg", "has_sig": false, "md5_digest": "3a6c25c7058afca9d78d4f425209b6d2", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 66554, "upload_time": "2013-08-29T23:29:33", "url": "https://files.pythonhosted.org/packages/7f/f8/4d03cd265c1958ab397f8db72ac5aecab24a12bd366a9b98e4341bcdbbdb/ofxparse-0.13-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "8df7d84914dc4f12d842975785b82e6f", "sha256": "847f0ff8841de114deb9990a3d9beccf81d1272143d15807d61064bcbb5aed10" }, "downloads": -1, "filename": "ofxparse-0.13.tar.gz", "has_sig": false, "md5_digest": "8df7d84914dc4f12d842975785b82e6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42360, "upload_time": "2013-08-29T23:29:22", "url": "https://files.pythonhosted.org/packages/b7/2c/f5a278109227c618205405b83ff2a53d669d56936c1f9ad30257eee011c6/ofxparse-0.13.tar.gz" } ], "0.14": [ { "comment_text": "", "digests": { "md5": "22ec809833fbfc7534e6ac7482e2a2e0", "sha256": "f1b2a3243b386ba7a196cf4353ac1c78604fd7ddfad11ed0bad4c0ab0ec8da51" }, "downloads": -1, "filename": "ofxparse-0.14-py2.7.egg", "has_sig": false, "md5_digest": "22ec809833fbfc7534e6ac7482e2a2e0", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 65733, "upload_time": "2013-08-31T14:07:57", "url": "https://files.pythonhosted.org/packages/7a/38/5f68734cfd62df9d22c3383240b48559caa7123262b5cfa39da838ca858f/ofxparse-0.14-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "08722ca1d4e7a92b559f9a29899fc934", "sha256": "4d2c425f9655e708207928427f67e12762be018fe13b6d0ec3ef543da289c864" }, "downloads": -1, "filename": "ofxparse-0.14-py3.3.egg", "has_sig": false, "md5_digest": "08722ca1d4e7a92b559f9a29899fc934", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 66647, "upload_time": "2013-08-31T14:08:13", "url": "https://files.pythonhosted.org/packages/7f/d0/4672cf8ebccdb63e5d5340c1b6c4eaab5aac26bbdd79486ae12237a509d2/ofxparse-0.14-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "4ad8a34e008d4893a61eadd593176f0f", "sha256": "d8c486126a94d912442d040121db44fbc4a646ea70fa935df33b5b4dbfbbe42a" }, "downloads": -1, "filename": "ofxparse-0.14.tar.gz", "has_sig": false, "md5_digest": "4ad8a34e008d4893a61eadd593176f0f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42638, "upload_time": "2013-08-31T14:08:06", "url": "https://files.pythonhosted.org/packages/2b/52/5cdc42194b9c3059e948bc9cd09408b69189325c4071f132a06438d555b0/ofxparse-0.14.tar.gz" } ], "0.15": [ { "comment_text": "", "digests": { "md5": "d363082d950abde4c1dabd874a119b27", "sha256": "453513f2f1b16941401903a9f42ad0735cc275875e721e28ae551f664dff71f8" }, "downloads": -1, "filename": "ofxparse-0.15-py2.7.egg", "has_sig": false, "md5_digest": "d363082d950abde4c1dabd874a119b27", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 72786, "upload_time": "2016-06-30T03:08:27", "url": "https://files.pythonhosted.org/packages/bf/be/e6a2034b61349a069d51b37b8b47493428b19a9b71965c8720385a9e42be/ofxparse-0.15-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a65b3e7192d812955c7f64bcdc6cf049", "sha256": "97d249a9b5a8c36e90829228da3026122f0ccc76157bdae231b68d175aeb4981" }, "downloads": -1, "filename": "ofxparse-0.15-py3.5.egg", "has_sig": false, "md5_digest": "a65b3e7192d812955c7f64bcdc6cf049", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 72387, "upload_time": "2016-06-30T03:11:56", "url": "https://files.pythonhosted.org/packages/a8/a4/0fb8b4dd60aab167dbe2dbeb41267c1d61ca00ae64c9e457bbea2ed10644/ofxparse-0.15-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "c53fb23cb72aeeb717ddb2ac653a8cf0", "sha256": "623d199ca11e2713d612fb730577bb8339861affd0c02b50865ebc58c4a0dc08" }, "downloads": -1, "filename": "ofxparse-0.15.tar.gz", "has_sig": false, "md5_digest": "c53fb23cb72aeeb717ddb2ac653a8cf0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46481, "upload_time": "2016-06-30T03:08:21", "url": "https://files.pythonhosted.org/packages/27/ee/d0c5fb9a7082b92afa8ac35d4ff513d7700b1257366d250aab938b1af3a6/ofxparse-0.15.tar.gz" } ], "0.16": [ { "comment_text": "", "digests": { "md5": "635bc986deb428f8c8016b60fcd3859d", "sha256": "cca83cd3d5578e7003b53457522c6dbb27832b734dbf869adf585f1547c3a91e" }, "downloads": -1, "filename": "ofxparse-0.16.tar.gz", "has_sig": false, "md5_digest": "635bc986deb428f8c8016b60fcd3859d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49470, "upload_time": "2016-12-27T14:50:30", "url": "https://files.pythonhosted.org/packages/7e/76/eb1a55f44d266cc87d094f2eee5349f412c2034f1c844722b2d2be3614c4/ofxparse-0.16.tar.gz" } ], "0.17": [ { "comment_text": "", "digests": { "md5": "3df4968023c4eda23a2e3cce0611e1d8", "sha256": "a9e330fed3b9fbf05e6d98eee28436c21b101370be99441ebd245042f8384a43" }, "downloads": -1, "filename": "ofxparse-0.17-py3.5.egg", "has_sig": false, "md5_digest": "3df4968023c4eda23a2e3cce0611e1d8", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 73431, "upload_time": "2017-11-15T02:52:02", "url": "https://files.pythonhosted.org/packages/78/62/e841d4384607b4b9e1521587f5aaa8f5d3ba18c5d6b3994e8cd33952b25c/ofxparse-0.17-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "7d0e0c0940438804662a7fa562b700b1", "sha256": "d655d6a7bbbbc50a84b143a119c461010b320f0120e4af73c577304875b508bd" }, "downloads": -1, "filename": "ofxparse-0.17.tar.gz", "has_sig": false, "md5_digest": "7d0e0c0940438804662a7fa562b700b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49428, "upload_time": "2017-11-15T02:52:00", "url": "https://files.pythonhosted.org/packages/39/64/158ae3d0df2012ecaf13392568cf13228f0912a229d2223d1fada7864d50/ofxparse-0.17.tar.gz" } ], "0.18": [ { "comment_text": "", "digests": { "md5": "17c6bc1bf4d9534354512c2d8a91e044", "sha256": "344ed5549a59ba545c05fe8adc926b46d81b3524271bdb0f5eef735dc7e5150a" }, "downloads": -1, "filename": "ofxparse-0.18-py2.7.egg", "has_sig": false, "md5_digest": "17c6bc1bf4d9534354512c2d8a91e044", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 74376, "upload_time": "2018-07-30T18:53:46", "url": "https://files.pythonhosted.org/packages/17/af/a325266a611c167e5d2a9a336235b41954a251f809c13542be784c78dfb8/ofxparse-0.18-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "8bf9228f29c3c91f7c8e6481beb8bba8", "sha256": "4e3c975b246999e25af2985fec61b8b6ef96c933726f3560f7b055b1b9491efb" }, "downloads": -1, "filename": "ofxparse-0.18-py3.6.egg", "has_sig": false, "md5_digest": "8bf9228f29c3c91f7c8e6481beb8bba8", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 70070, "upload_time": "2018-07-30T19:02:35", "url": "https://files.pythonhosted.org/packages/04/97/55a2d58c3f9926648ba86f6fe83432f99a1379d15fecf354e2aee31eab07/ofxparse-0.18-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "0d4c5d8689b5319c042e710e0d318291", "sha256": "8121e3072c0777adf18a79a3b2b244467a8c4a727cbd90cdb442c29b686e3dca" }, "downloads": -1, "filename": "ofxparse-0.18.tar.gz", "has_sig": false, "md5_digest": "0d4c5d8689b5319c042e710e0d318291", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53494, "upload_time": "2018-07-30T18:53:56", "url": "https://files.pythonhosted.org/packages/94/af/e000923a37a7309ec12f4f9c4a677f13a0b01e10a92affbf5f6f381dce2a/ofxparse-0.18.tar.gz" } ], "0.19": [ { "comment_text": "", "digests": { "md5": "6f94366e94443233c58642c0a8430655", "sha256": "dbfb406691116c28a7733280f66de86644230067fa6a874e90d5422b9a20a39d" }, "downloads": -1, "filename": "ofxparse-0.19-py2.7.egg", "has_sig": false, "md5_digest": "6f94366e94443233c58642c0a8430655", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 74416, "upload_time": "2018-08-08T12:58:48", "url": "https://files.pythonhosted.org/packages/b3/0a/4bd5eb788515491eb5d1d68e649afacb40a7139492faef5107f70199b441/ofxparse-0.19-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "ff5fbe778ab83bbb8d682bb3bff99a71", "sha256": "1ab2674d95c8860edb1494484fed96271d1e73d03ed729b3cad86669ba6fdbe4" }, "downloads": -1, "filename": "ofxparse-0.19-py3.6.egg", "has_sig": false, "md5_digest": "ff5fbe778ab83bbb8d682bb3bff99a71", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 70106, "upload_time": "2018-08-08T12:58:17", "url": "https://files.pythonhosted.org/packages/2b/18/3753c53463ec6cf908f94761f823dab4740e131f8a7f91d62c1e01c4071e/ofxparse-0.19-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "5466e247ec656b3446c464a5464b7ffd", "sha256": "d8c81fd5089332106da1a2e8919c412c7c677f08af04d557ca767701a04e0918" }, "downloads": -1, "filename": "ofxparse-0.19.tar.gz", "has_sig": false, "md5_digest": "5466e247ec656b3446c464a5464b7ffd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54140, "upload_time": "2018-08-08T12:59:07", "url": "https://files.pythonhosted.org/packages/3f/e3/d780743d5037b27276577cdf82a86fe0b5ab81567bcacec33bf92cdca478/ofxparse-0.19.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "a9f1992cc4b98db47d7bfc52030be66e", "sha256": "1ae2daa78c6b5c5fdaf4f9e04bebb9e5b1229fca69edc61ad7a4af7c387e4cd5" }, "downloads": -1, "filename": "ofxparse-0.2-py2.4.egg", "has_sig": false, "md5_digest": "a9f1992cc4b98db47d7bfc52030be66e", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 8556, "upload_time": "2010-03-10T12:07:32", "url": "https://files.pythonhosted.org/packages/e7/48/bb7d75ee3244015692d6668c4d92da493de587d8682471165f479bcc6b16/ofxparse-0.2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "1c5da0eb0d43897263c716c11d1a0c1f", "sha256": "e636c96d2ab17e7182928067f09f91ace24e9c79b94e593ebadea7f63b1d3eb7" }, "downloads": -1, "filename": "ofxparse-0.2-py2.5.egg", "has_sig": false, "md5_digest": "1c5da0eb0d43897263c716c11d1a0c1f", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 8383, "upload_time": "2010-03-10T12:07:44", "url": "https://files.pythonhosted.org/packages/aa/46/c9292925d7c0317fd680b6fdf3d1c3ac91a2628ab602bfa4152e1dbf0258/ofxparse-0.2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "097eaf03cb27827a3a9fb2ecafb07c6b", "sha256": "429aa662b7a18203f07584a5ce25035317c31c1c10bf47b287f07f6dafb41c68" }, "downloads": -1, "filename": "ofxparse-0.2-py2.6.egg", "has_sig": false, "md5_digest": "097eaf03cb27827a3a9fb2ecafb07c6b", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 8381, "upload_time": "2010-03-10T12:07:56", "url": "https://files.pythonhosted.org/packages/d3/45/9596d7ef25fc6464d7f702ff236376b37ebff6811412d0063f1e88506cd0/ofxparse-0.2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "8fbeb444f58af6c95572e4d59a7d1685", "sha256": "0df08aaea6ee115dee8fcb209e33cc72237dba324c707d60de775d8a26cfd902" }, "downloads": -1, "filename": "ofxparse-0.2.tar.gz", "has_sig": false, "md5_digest": "8fbeb444f58af6c95572e4d59a7d1685", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3219, "upload_time": "2010-03-10T12:07:31", "url": "https://files.pythonhosted.org/packages/42/86/d928b6e2934bc769fd0094250e577ff39fa13fd80c13a0fe1dbcd1140562/ofxparse-0.2.tar.gz" } ], "0.20": [ { "comment_text": "", "digests": { "md5": "3639bb868735c03a8e8c0c6f88531b88", "sha256": "12210ec47616b13aaf34de99ff52ff51637b1cb204fb30cd1235e7457ca9e692" }, "downloads": -1, "filename": "ofxparse-0.20-py2.7.egg", "has_sig": false, "md5_digest": "3639bb868735c03a8e8c0c6f88531b88", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 74497, "upload_time": "2018-12-01T04:35:24", "url": "https://files.pythonhosted.org/packages/0d/1a/fdf95328bae8e9e39f32e9f078241cb8831500f7ff22639bd7e17abcbee6/ofxparse-0.20-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "93ebc87678b20362d323ea908b13190b", "sha256": "2c0f8bed7eed5ac7b1a8168e3b848f59004db5e16fa89a5df0f3cd9ca9f6b613" }, "downloads": -1, "filename": "ofxparse-0.20-py3.6.egg", "has_sig": false, "md5_digest": "93ebc87678b20362d323ea908b13190b", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 70182, "upload_time": "2018-12-01T04:36:03", "url": "https://files.pythonhosted.org/packages/5d/3b/e877def34e581ddc5f1847cfc5cb424af67cfdffbf6c8c73bc3469f7d077/ofxparse-0.20-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "a3daf82edc5fd1ebee560264a7cdf5e7", "sha256": "eb45db5802938ac0ab3664418ca564619cc9e7ec6d301c1063ffc16e587ec37e" }, "downloads": -1, "filename": "ofxparse-0.20.tar.gz", "has_sig": false, "md5_digest": "a3daf82edc5fd1ebee560264a7cdf5e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53178, "upload_time": "2018-12-01T04:29:26", "url": "https://files.pythonhosted.org/packages/07/ab/22faf6348652e9ac662b594c35ee9de1dba76b5adcad94a143d317377138/ofxparse-0.20.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "43e6b1007de4da657937c01415977d5e", "sha256": "9c7df52381fcbe2633acf9a281b4c9afef13801031c729980b2950963a325275" }, "downloads": -1, "filename": "ofxparse-0.3-py2.4.egg", "has_sig": false, "md5_digest": "43e6b1007de4da657937c01415977d5e", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 8601, "upload_time": "2010-03-10T12:39:38", "url": "https://files.pythonhosted.org/packages/5c/33/3fbf00460c7b32a7bdb13a9c608b9269522c251eef3fc8254c91b1bb0500/ofxparse-0.3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "3af8315e7af7cb2ef286ec72f71a543d", "sha256": "d82115e7edb3029ba77d920389b2c49e236f6ae5677f12b034307a41e35da3a8" }, "downloads": -1, "filename": "ofxparse-0.3-py2.5.egg", "has_sig": false, "md5_digest": "3af8315e7af7cb2ef286ec72f71a543d", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 8425, "upload_time": "2010-03-10T12:39:28", "url": "https://files.pythonhosted.org/packages/83/c7/5587437913f7a83deb5dae57accb45d5daedaf76f380343085f798cb01b1/ofxparse-0.3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "366b62a135d0cfd479431d9f23f1a93d", "sha256": "443c47a62146a7545edbae4f810727181f0eb1270f5a7aa9cfd88850d2e51f7d" }, "downloads": -1, "filename": "ofxparse-0.3-py2.6.egg", "has_sig": false, "md5_digest": "366b62a135d0cfd479431d9f23f1a93d", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 8424, "upload_time": "2010-03-10T12:39:18", "url": "https://files.pythonhosted.org/packages/8a/fa/e113da904d24eaaadf7b5fa779d77fe1eb1c77f33d56bd7accf5246f0b8c/ofxparse-0.3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "61fa4209b25006334a7eabd242f6c3f9", "sha256": "a31d13df854f43ea7cd734ff908d8c44716a3530403e25c37f87febad7402019" }, "downloads": -1, "filename": "ofxparse-0.3.tar.gz", "has_sig": false, "md5_digest": "61fa4209b25006334a7eabd242f6c3f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3243, "upload_time": "2010-03-10T12:39:16", "url": "https://files.pythonhosted.org/packages/11/9e/562cdd1153804409a1dfa6a7b3c481521f3315dc0f17089c831469549b77/ofxparse-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "487dcc4942434f039f1d158f5e34c566", "sha256": "207070b02032e0260f6435d739062a9d1a805da6d120cb029828889a761b8f4c" }, "downloads": -1, "filename": "ofxparse-0.4-py2.4.egg", "has_sig": false, "md5_digest": "487dcc4942434f039f1d158f5e34c566", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 8786, "upload_time": "2011-06-07T18:20:42", "url": "https://files.pythonhosted.org/packages/72/af/24b7ea66f41f5233fbf2226071a1333fb263f584a2dcb1696a712d2a6a2f/ofxparse-0.4-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "ba67fbab3e7dba2aa3e099128fde455e", "sha256": "01da1ca9ecfb9104601da637fe64fe764064f424c28a3bb0410d4fe1c6bb3f53" }, "downloads": -1, "filename": "ofxparse-0.4-py2.5.egg", "has_sig": false, "md5_digest": "ba67fbab3e7dba2aa3e099128fde455e", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 8580, "upload_time": "2011-06-07T18:21:10", "url": "https://files.pythonhosted.org/packages/d4/5d/fb81f9f61d0e819afdc0eb8e1b2e956f75eb25479c9c8d9a5e2f4c6b800c/ofxparse-0.4-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "d2fa79bfcd06de348e84ce6e11c14ca6", "sha256": "24703ae6be627e840a0964d04b616a5959f0859ca1b188501372cba1ef05e1df" }, "downloads": -1, "filename": "ofxparse-0.4-py2.6.egg", "has_sig": false, "md5_digest": "d2fa79bfcd06de348e84ce6e11c14ca6", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 8575, "upload_time": "2011-06-07T18:09:19", "url": "https://files.pythonhosted.org/packages/d7/98/d81e71e9ec0881bc1acbb0dbd2bc0fac825a9b475d5999522f614b52b80e/ofxparse-0.4-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "6061b12f665e01aacbed4360cdf18b04", "sha256": "6241ad98dabb9470a2269096443ea65d1697940fc06a2481bd75b63a3fb5abd7" }, "downloads": -1, "filename": "ofxparse-0.4-py2.7.egg", "has_sig": false, "md5_digest": "6061b12f665e01aacbed4360cdf18b04", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 8573, "upload_time": "2011-06-07T18:08:56", "url": "https://files.pythonhosted.org/packages/75/82/d92fcdfa6477bb102a5a1cb35eee4d1486e4c2d8010137e5709fc85ff3fa/ofxparse-0.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "801f2ce3f7f5b8d1d259ec888e546cbc", "sha256": "1bf1b561e8d7ca42417d9e25c8a62a6a90a94482e2b54bd47e0cdb27d344fce3" }, "downloads": -1, "filename": "ofxparse-0.4.tar.gz", "has_sig": false, "md5_digest": "801f2ce3f7f5b8d1d259ec888e546cbc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4663, "upload_time": "2011-06-07T18:08:54", "url": "https://files.pythonhosted.org/packages/c9/0b/38b31a21b5fdbd17143825ff465db92f9dcac82d460edc991e05700a9d6d/ofxparse-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "a2a0eba198e43eb07fe812c19cdcbbea", "sha256": "d741b9971c669f8d5fdc18a038eb5c2b08b15503271c6da6cfa4a3545c0fa2f8" }, "downloads": -1, "filename": "ofxparse-0.5-py2.4.egg", "has_sig": false, "md5_digest": "a2a0eba198e43eb07fe812c19cdcbbea", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 8783, "upload_time": "2011-06-24T20:40:52", "url": "https://files.pythonhosted.org/packages/e2/55/fd5dce3ddd25d3584090f7dcb3d3789ae4fc583e97beee9a1942a67eb2df/ofxparse-0.5-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "ef7851a41f17e3245c11ab04b8fbe661", "sha256": "2187f76b6575abb09a5bb85d7c586494448b171ceb8e812d7db0cf4f20421b16" }, "downloads": -1, "filename": "ofxparse-0.5-py2.5.egg", "has_sig": false, "md5_digest": "ef7851a41f17e3245c11ab04b8fbe661", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 8577, "upload_time": "2011-06-24T20:40:34", "url": "https://files.pythonhosted.org/packages/e5/4f/74ddc55b4a8d446ecbe2506633e10a17bcf6c23d2a1797a3ae8ef47106ff/ofxparse-0.5-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "08f0d396cb1d1533fd2a3af4b583bff3", "sha256": "c9b94e92d77eeb6e625a2aaf2e8c3a1e142e50732b23fe02bbc4321cd01d6621" }, "downloads": -1, "filename": "ofxparse-0.5-py2.6.egg", "has_sig": false, "md5_digest": "08f0d396cb1d1533fd2a3af4b583bff3", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 8571, "upload_time": "2011-06-24T20:38:12", "url": "https://files.pythonhosted.org/packages/1a/c5/aac79c6a1ca29c323bf401429c2607a24f1b843a8178969fc37a6951b9bc/ofxparse-0.5-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "37e4b8d4bf003ad3a0fe7c3a92131343", "sha256": "67dcf688333d0d00def4118fa0acd39990cbe14913202bba52edf4c2592ef4ba" }, "downloads": -1, "filename": "ofxparse-0.5-py2.7.egg", "has_sig": false, "md5_digest": "37e4b8d4bf003ad3a0fe7c3a92131343", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 8569, "upload_time": "2011-06-24T20:37:06", "url": "https://files.pythonhosted.org/packages/d6/b2/2095613a214d0c8958a1f7743e88cf7fc6980a57af0d5f7f89bbf2facc29/ofxparse-0.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "8b9fe4550b39bbb4319ebd0df1179102", "sha256": "231e5b5fa55916f1775be86ca62d95c3773a38c98436a15c52c73aebe7547586" }, "downloads": -1, "filename": "ofxparse-0.5.tar.gz", "has_sig": false, "md5_digest": "8b9fe4550b39bbb4319ebd0df1179102", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4667, "upload_time": "2011-06-24T20:37:05", "url": "https://files.pythonhosted.org/packages/2b/44/da77a3628b7b72ea8cdce40cde9870e542ce7bd60558f35eedd1b16d3e05/ofxparse-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "7b30bee96c73f5a4ce73180a693c75ea", "sha256": "5a9de6a9f4e6079457e54a8d269ac33e933b5d4ba4e538b9cbc97043dad30ff7" }, "downloads": -1, "filename": "ofxparse-0.6-py2.4.egg", "has_sig": false, "md5_digest": "7b30bee96c73f5a4ce73180a693c75ea", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 12811, "upload_time": "2012-01-21T06:00:46", "url": "https://files.pythonhosted.org/packages/bd/db/e9b8a837c0363befb442281c7ea575f961c52e78e9508eec1d06975f00d4/ofxparse-0.6-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "d6424fb20ae64916f07f006bbe84af02", "sha256": "4da89b53804fae47951219b836d685fdc550d0a50d00bde54806d78571269d17" }, "downloads": -1, "filename": "ofxparse-0.6-py2.5.egg", "has_sig": false, "md5_digest": "d6424fb20ae64916f07f006bbe84af02", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 12590, "upload_time": "2012-01-21T06:00:08", "url": "https://files.pythonhosted.org/packages/68/1f/70ecda48fc194b74269aee5c2c0ca8460835f7be6cadabb35170999df019/ofxparse-0.6-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "d4b0dc04518732db0a7a95dafce1c8a6", "sha256": "8c63ad0656936e8472a32a25e7e7df13a427b4e73f431d027d6e18b7f255ee59" }, "downloads": -1, "filename": "ofxparse-0.6-py2.6.egg", "has_sig": false, "md5_digest": "d4b0dc04518732db0a7a95dafce1c8a6", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 12588, "upload_time": "2012-01-21T05:59:47", "url": "https://files.pythonhosted.org/packages/50/b2/33b6ea8023cd15373234b3728b355737782ae48cb1092409e9f1dd058e13/ofxparse-0.6-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "141e2b55f713f28dd6db10fb3242d86e", "sha256": "4a6cd210c41414b7c325054b0460a8634c68eab55984335256ca41a7dec30952" }, "downloads": -1, "filename": "ofxparse-0.6-py2.7.egg", "has_sig": false, "md5_digest": "141e2b55f713f28dd6db10fb3242d86e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 12615, "upload_time": "2012-01-21T05:59:31", "url": "https://files.pythonhosted.org/packages/c3/c2/d34c7b3a2f9a440658b97270fd361ce336bb76ba9346a01513b18f9d23c2/ofxparse-0.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "dc16a0a9e944c0020006914dd9521657", "sha256": "d5ecf5871cc0c27f3d5332bb36b174ac60f2a1261bd0c149044cf78b408f6f41" }, "downloads": -1, "filename": "ofxparse-0.6.tar.gz", "has_sig": false, "md5_digest": "dc16a0a9e944c0020006914dd9521657", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5212, "upload_time": "2012-01-21T06:01:35", "url": "https://files.pythonhosted.org/packages/c5/a0/16d3c3a18d38864e2439c99f62dd883ebc93b7af78f5b426fd1c701af95b/ofxparse-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "64c252cfa6a7ddbfe5bb2e03cca3fe3d", "sha256": "baa231dd34f1528e762e82cdfe2c5ff03ac8464372d63bdecdbba6c254aedaba" }, "downloads": -1, "filename": "ofxparse-0.7-py2.5.egg", "has_sig": false, "md5_digest": "64c252cfa6a7ddbfe5bb2e03cca3fe3d", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 9115, "upload_time": "2012-04-08T09:47:16", "url": "https://files.pythonhosted.org/packages/c8/c9/d9c2892f9719f7a85c81111fecdf2c072ded2f091bd6578bbde1f403e172/ofxparse-0.7-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "f24196bbcf32ff969713b5e73c81372a", "sha256": "7ca9684fdb723fe497b50ea71e38eeebb21cd71e27754c785cdd718f5acccbdc" }, "downloads": -1, "filename": "ofxparse-0.7-py2.6.egg", "has_sig": false, "md5_digest": "f24196bbcf32ff969713b5e73c81372a", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 15414, "upload_time": "2012-04-08T09:47:04", "url": "https://files.pythonhosted.org/packages/82/ec/8b757e26196abea60408903725292606d5990320d4f8ebeec92f22eb3314/ofxparse-0.7-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "7994d9c32fd27b30dcc5698e9519a30a", "sha256": "316847ee6cb441697182aec45b0473b2258038d099994013d9d3d6215cdbb72e" }, "downloads": -1, "filename": "ofxparse-0.7-py2.7.egg", "has_sig": false, "md5_digest": "7994d9c32fd27b30dcc5698e9519a30a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 15501, "upload_time": "2012-04-08T09:46:40", "url": "https://files.pythonhosted.org/packages/e6/69/ce77951582c644bcafcc084fc20938ae3d13a722eb9d185d6f6e7181e8d4/ofxparse-0.7-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "183a3fa25f48cf92302cbf79a42d2d17", "sha256": "7ed1b833102ddc92377ac3c7a08ab58ecec7339c85f38c2f6c28c789e9948765" }, "downloads": -1, "filename": "ofxparse-0.7.tar.gz", "has_sig": false, "md5_digest": "183a3fa25f48cf92302cbf79a42d2d17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6339, "upload_time": "2012-04-08T09:46:51", "url": "https://files.pythonhosted.org/packages/87/2e/733f51d90a30b3af5b030174900b99f30289310b071526ef408f84a40096/ofxparse-0.7.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "ead6b7c0f618bd673bd3d38c90cd2ddf", "sha256": "475ede2a849a1223b5fa7ef36194c8c85fc7850bfbd953e1c70a0bf8bc8de7ea" }, "downloads": -1, "filename": "ofxparse-0.8-py2.4.egg", "has_sig": false, "md5_digest": "ead6b7c0f618bd673bd3d38c90cd2ddf", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 15639, "upload_time": "2012-04-08T09:53:49", "url": "https://files.pythonhosted.org/packages/25/71/ad2a28aca71f72a68533c2b6cf3bd5fc1becf78ea7831adde6f26cd8b303/ofxparse-0.8-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "ac8d0a1f64740d1d3006fb588ae05a06", "sha256": "dd5eba3189773a1d082050d2681d0b6d2c3d766b0f33713f19e559da333c8c1b" }, "downloads": -1, "filename": "ofxparse-0.8-py2.5.egg", "has_sig": false, "md5_digest": "ac8d0a1f64740d1d3006fb588ae05a06", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 15416, "upload_time": "2012-04-08T09:53:42", "url": "https://files.pythonhosted.org/packages/54/7c/e5485b0f88ef3d77009272fa8d88090a5e561c9fc250351720a0c66c73e6/ofxparse-0.8-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "191180902597b78cd56105c2349ac045", "sha256": "c71b74c77770e518f64b1bd2d32621b7f23169fbedca065eb41fee721639046a" }, "downloads": -1, "filename": "ofxparse-0.8-py2.6.egg", "has_sig": false, "md5_digest": "191180902597b78cd56105c2349ac045", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 15410, "upload_time": "2012-04-08T09:53:34", "url": "https://files.pythonhosted.org/packages/35/34/48df721f2685f52a883e6d5c982f3164bca770004477e21506502cc5abe0/ofxparse-0.8-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "e26992ee89afa152e87b6aeb9f9cb85b", "sha256": "d1bdb8e1dab2ecb32c254417a0c890cf895deab5a9d14a0ffcea0685f2768964" }, "downloads": -1, "filename": "ofxparse-0.8-py2.7.egg", "has_sig": false, "md5_digest": "e26992ee89afa152e87b6aeb9f9cb85b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 15497, "upload_time": "2012-04-08T09:53:18", "url": "https://files.pythonhosted.org/packages/f3/16/f369c7f0dfaf201593cec20efd18c5a9cd70e51a51a35ea6bb354199b482/ofxparse-0.8-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "569459aaed349de4a3d5a0d3032ef5a4", "sha256": "197e8bf2bb0deda4640b9c4c7f67d55838ce9fd47750d7e4eecd3aff8981ed78" }, "downloads": -1, "filename": "ofxparse-0.8.tar.gz", "has_sig": false, "md5_digest": "569459aaed349de4a3d5a0d3032ef5a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6336, "upload_time": "2012-04-08T09:53:26", "url": "https://files.pythonhosted.org/packages/dc/b5/a587459594e8f7619414fa1e417a76a53cfa3b070701b482e6f125fdea08/ofxparse-0.8.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "cbcb1fe2175a8d6caa722d312f6dc58c", "sha256": "40c374b051d9dd9b0879399d5510bfb68979563a08d82c3bc1b0fa5eec62f904" }, "downloads": -1, "filename": "ofxparse-0.9-py2.7.egg", "has_sig": false, "md5_digest": "cbcb1fe2175a8d6caa722d312f6dc58c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 15988, "upload_time": "2012-10-27T21:17:24", "url": "https://files.pythonhosted.org/packages/4e/cd/f545a552c6b771fd366bec345fda333620911d91d61d248a7c7c80a44f34/ofxparse-0.9-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "255e60bba79d0dc7bf731dd578b8f588", "sha256": "6ac531181693c0e6ed8f696adf0aaa5241db5fe83cacd79c00e96ffa8af13d7d" }, "downloads": -1, "filename": "ofxparse-0.9.tar.gz", "has_sig": false, "md5_digest": "255e60bba79d0dc7bf731dd578b8f588", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7287, "upload_time": "2012-10-27T21:17:35", "url": "https://files.pythonhosted.org/packages/eb/ed/8eccea67f696576ef2461a1d7746b03ca38b537a5a9f10c9779abf3a9b84/ofxparse-0.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "3639bb868735c03a8e8c0c6f88531b88", "sha256": "12210ec47616b13aaf34de99ff52ff51637b1cb204fb30cd1235e7457ca9e692" }, "downloads": -1, "filename": "ofxparse-0.20-py2.7.egg", "has_sig": false, "md5_digest": "3639bb868735c03a8e8c0c6f88531b88", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 74497, "upload_time": "2018-12-01T04:35:24", "url": "https://files.pythonhosted.org/packages/0d/1a/fdf95328bae8e9e39f32e9f078241cb8831500f7ff22639bd7e17abcbee6/ofxparse-0.20-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "93ebc87678b20362d323ea908b13190b", "sha256": "2c0f8bed7eed5ac7b1a8168e3b848f59004db5e16fa89a5df0f3cd9ca9f6b613" }, "downloads": -1, "filename": "ofxparse-0.20-py3.6.egg", "has_sig": false, "md5_digest": "93ebc87678b20362d323ea908b13190b", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 70182, "upload_time": "2018-12-01T04:36:03", "url": "https://files.pythonhosted.org/packages/5d/3b/e877def34e581ddc5f1847cfc5cb424af67cfdffbf6c8c73bc3469f7d077/ofxparse-0.20-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "a3daf82edc5fd1ebee560264a7cdf5e7", "sha256": "eb45db5802938ac0ab3664418ca564619cc9e7ec6d301c1063ffc16e587ec37e" }, "downloads": -1, "filename": "ofxparse-0.20.tar.gz", "has_sig": false, "md5_digest": "a3daf82edc5fd1ebee560264a7cdf5e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53178, "upload_time": "2018-12-01T04:29:26", "url": "https://files.pythonhosted.org/packages/07/ab/22faf6348652e9ac662b594c35ee9de1dba76b5adcad94a143d317377138/ofxparse-0.20.tar.gz" } ] }