CardVision

0.2.0

Library for Reading Apple Card Transaction History Screenshots
BergQuester/CardVision

What's New

0.2.0 - CLI

2021-02-17T23:39:28Z
  • Added CardVisionCLI target for a command line tool.

CardVision

Purpose

While the Wallet app provides exports for Apple Cards at the end of each month, many of us like to handle our budgets on a more frequent basis. However, the Wallet app provides no mechanism for this. This package uses Apple's Vision framework to read Wallet screenshots and export transactions to CVS files.

Supported Plaforms

  • macOS 10.15+
  • iOS 13+

Requirements

  • Xcode 11+
  • No external dependancies!

Installation

Use Swift Package Manager.

Example

import CardVision

let filePath = "path_to_directory_of_images"

let csvData = FileManager()
    .images(inPath: filePath)
    .allTransactions()
    .filtered(isDeclined: false)
    .csvData

Limitations

  • Screenhots must be cropped such that only transaction information, without icon, is shown as in the following example:

Example Screenshot Cropping

  • The library does not attempt to deduplicate transactions that show up in multiple screenshots.

Contributions

Contributions are welcome. Some areas that need some help:

  • Real error handling
  • API documentation
  • Tests and test data
  • Address limitations

Liscense

MIT

Description

  • Swift Tools 5.3.0
View More Packages from this Author

Dependencies

  • None
Last updated: Thu Dec 07 2023 05:58:24 GMT-1000 (Hawaii-Aleutian Standard Time)