{"id":15494916,"url":"https://github.com/fracpete/quicken4j","last_synced_at":"2025-04-22T20:26:06.303Z","repository":{"id":52514982,"uuid":"67327784","full_name":"fracpete/quicken4j","owner":"fracpete","description":"Java library for reading Quicken Exchange Format (QIF) files.","archived":false,"fork":false,"pushed_at":"2024-10-03T19:09:23.000Z","size":40,"stargazers_count":6,"open_issues_count":0,"forks_count":7,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-10-19T12:15:51.447Z","etag":null,"topics":["java","quicken"],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fracpete.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-09-04T05:39:54.000Z","updated_at":"2024-10-03T19:09:21.000Z","dependencies_parsed_at":"2024-12-10T14:48:13.858Z","dependency_job_id":null,"html_url":"https://github.com/fracpete/quicken4j","commit_stats":{"total_commits":24,"total_committers":5,"mean_commits":4.8,"dds":0.375,"last_synced_commit":"abd4fc4cf58b87db9eefd5d58fa65f3bf859a9e9"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fracpete%2Fquicken4j","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fracpete%2Fquicken4j/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fracpete%2Fquicken4j/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fracpete%2Fquicken4j/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fracpete","download_url":"https://codeload.github.com/fracpete/quicken4j/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250317474,"owners_count":21410757,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","quicken"],"created_at":"2024-10-02T08:15:35.474Z","updated_at":"2025-04-22T20:26:06.276Z","avatar_url":"https://github.com/fracpete.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# quicken4j\nJava library for reading Quicken Exchange Format (QIF) files.\n\n## File format\nSee description of QIF file format on WikiPedia:\n\nhttps://en.wikipedia.org/wiki/Quicken_Interchange_Format\n\n## Maven\nUse the following dependency to include it in your Maven project:\n\n```xml\n    \u003cdependency\u003e\n      \u003cgroupId\u003ecom.github.fracpete\u003c/groupId\u003e\n      \u003cartifactId\u003equicken4j\u003c/artifactId\u003e\n      \u003cversion\u003e0.0.3\u003c/version\u003e\n    \u003c/dependency\u003e\n```\n\n## Example\nThe following example reads in the file `simple.qif` and prints out for \neach transaction the date, amount and payee.\n\n```java\nimport java.io.File;\nimport com.github.fracpete.quicken4j.QIFReader;\nimport com.github.fracpete.quicken4j.Transaction;\nimport com.github.fracpete.quicken4j.Transactions;\n...\nQIFReader reader = new QIFReader();\nTransactions trans = reader.read(new File(\"simple.qif\"));\nfor (Transaction t: trans)\n  System.out.println(t.getDate() + \"\\n  \" + t.getAmount() + \"\\n  \" + t.getPayee());\n```\n\nYou can also read them with a specific encoding, e.g., `Windows-1252`:\n\n```java\nimport java.io.File;\nimport java.nio.charset.Charset;\nimport com.github.fracpete.quicken4j.QIFReader;\nimport com.github.fracpete.quicken4j.Transaction;\nimport com.github.fracpete.quicken4j.Transactions;\n...\nQIFReader reader = new QIFReader();\nTransactions trans = reader.read(new File(\"simple.qif\", Charset.forName(\"Windows-1252\")));\nfor (Transaction t: trans)\n  System.out.println(t.getDate() + \"\\n  \" + t.getAmount() + \"\\n  \" + t.getPayee());\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffracpete%2Fquicken4j","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffracpete%2Fquicken4j","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffracpete%2Fquicken4j/lists"}